Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -137,9 +137,9 @@ |
138 | 138 | padding-left: 0.25em; |
139 | 139 | } |
140 | 140 | .mw-search-formheader div.search-types > ul { |
141 | | - margin: 0; |
142 | | - padding: 0; |
143 | | - list-style: none; |
| 141 | + margin: 0 !important; |
| 142 | + padding: 0 !important; |
| 143 | + list-style: none !important; |
144 | 144 | } |
145 | 145 | .mw-search-formheader div.search-types > ul > li { |
146 | 146 | float: left; |
— | — | @@ -174,15 +174,14 @@ |
175 | 175 | } |
176 | 176 | fieldset#mw-searchoptions { |
177 | 177 | margin: 0; |
178 | | - padding: 0; |
179 | | - padding-left: 1em; |
180 | | - padding-right: 1em; |
181 | | - padding-bottom: 0.5em; |
182 | | - padding-top: 0.5em; |
| 178 | + padding-left: 0.75em !important; |
| 179 | + padding-right: 0.75em !important; |
| 180 | + padding-bottom: 0.5em !important; |
| 181 | + padding-top: 0.5em !important; |
183 | 182 | border: none; |
184 | 183 | background-color: #f9f9f9; |
185 | | - border: 1px solid silver; |
186 | | - border-top: none; |
| 184 | + border: 1px solid silver !important; |
| 185 | + border-top: none !important; |
187 | 186 | } |
188 | 187 | fieldset#mw-searchoptions > legend { |
189 | 188 | display: none; |
Index: trunk/phase3/skins/Vector.php |
— | — | @@ -35,10 +35,10 @@ |
36 | 36 | * @param object $out Output page to add styles to |
37 | 37 | */ |
38 | 38 | public function setupSkinUserCss( OutputPage $out ) { |
39 | | - parent::setupSkinUserCss( $out ); |
40 | | - |
41 | 39 | // Append to the default screen common & print styles... |
42 | 40 | $out->addStyle( 'vector/main.css', 'screen' ); |
| 41 | + // Add common styles |
| 42 | + parent::setupSkinUserCss( $out ); |
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |