Update code_sniffer build.xml file to be executable on our system
[phpbb.git] / phpBB / styles / prosilver / theme / tweaks.css
blob6d169f58e0eeaac1d123951fa18c40e09df2f926
1 /* proSilver Style Sheet Tweaks
3 These style definitions are mainly IE specific
4 tweaks required due to its poor CSS support.
5 -------------------------------------------------*/
7 * html table, * html select, * html input { font-size: 100%; }
8 * html hr { margin: 0; }
9 * html span.corners-top, * html span.corners-bottom { background-image: url("{T_THEME_PATH}/images/corners_left.gif"); }
10 * html span.corners-top span, * html span.corners-bottom span { background-image: url("{T_THEME_PATH}/images/corners_right.gif"); }
12 table.table1 {
13 width: 99%; /* IE < 6 browsers */
14 /* Tantek hack */
15 voice-family: "\"}\"";
16 voice-family: inherit;
17 width: 100%;
19 html>body table.table1 { width: 100%; } /* Reset 100% for opera */
21 * html ul.topiclist li { position: relative; }
22 * html .postbody h3 img { vertical-align: middle; }
24 /* Form styles */
25 html>body dd label input { vertical-align: text-bottom; } /* Align checkboxes/radio buttons nicely */
27 * html input.button1, * html input.button2 {
28 padding-bottom: 0;
29 margin-bottom: 1px;
32 /* Misc layout styles */
33 * html .column1, * html .column2 { width: 45%; }
35 /* Nice method for clearing floated blocks without having to insert any extra markup (like spacer above)
36 From http://www.positioniseverything.net/easyclearing.html
37 #tabs:after, #minitabs:after, .post:after, .navbar:after, fieldset dl:after, ul.topiclist dl:after, ul.linklist:after, dl.polls:after {
38 content: ".";
39 display: block;
40 height: 0;
41 clear: both;
42 visibility: hidden;
43 }*/
45 .clearfix, #tabs, #minitabs, fieldset dl, ul.topiclist dl, dl.polls {
46 height: 1%;
47 overflow: hidden;
50 /* viewtopic fix */
51 * html .post {
52 height: 25%;
53 overflow: hidden;
56 /* navbar fix */
57 * html .clearfix, * html .navbar, ul.linklist {
58 height: 4%;
59 overflow: hidden;
62 /* Simple fix so forum and topic lists always have a min-height set, even in IE6
63 From http://www.dustindiaz.com/min-height-fast-hack */
64 dl.icon {
65 min-height: 35px;
66 height: auto !important;
67 height: 35px;
70 * html #search-box {
71 width: 25%;
74 /* Correctly clear floating for details on profile view */
75 *:first-child+html dl.details dd {
76 margin-left: 30%;
77 float: none;
80 * html dl.details dd {
81 margin-left: 30%;
82 float: none;