r52375 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r52374‎ | r52375 | r52376 >
Date:21:43, 24 June 2009
Author:tparscal
Status:ok
Tags:
Comment:
RTL fixes. RTL in IE6 is still a disaster.
Modified paths:
  • /trunk/phase3/skins/vector/main.css (modified) (history)

Diff [purge]

Index: trunk/phase3/skins/vector/main.css
@@ -14,7 +14,6 @@
1515 body {
1616 background-image: url(images/page-base.png);
1717 }
18 -
1918 /* Content */
2019 div#content {
2120 margin-left: 12em;
@@ -24,6 +23,11 @@
2524 background-repeat: repeat-y;
2625 background-color: white;
2726 }
 27+body.rtl div#content {
 28+ margin-left: 0;
 29+ margin-right: 12em;
 30+ background-position: top right;
 31+}
2832 /* Head */
2933 div#page-base {
3034 height: 6em;
@@ -32,6 +36,9 @@
3337 background-position: bottom left;
3438 background-repeat: repeat-x;
3539 }
 40+body.rtl div#page-base {
 41+ background-position: bottom left;
 42+}
3643 div#head-base {
3744 margin-top: -6em;
3845 margin-left: 12em;
@@ -40,6 +47,11 @@
4148 background-position: bottom left;
4249 background-repeat: repeat-x;
4350 }
 51+body.rtl div#head-base {
 52+ margin-left: 0;
 53+ margin-right: 12em;
 54+ background-position: bottom right;
 55+}
4456 div#head {
4557 position: absolute;
4658 top: 0;
@@ -47,6 +59,12 @@
4860 width: 100%;
4961 margin-right: 0.75em;
5062 }
 63+body.rtl div#head {
 64+ right: auto;
 65+ left: 0;
 66+ margin-right: 0;
 67+ margin-left: 0.75em;
 68+}
5169 div#head ul,
5270 div#head li {
5371 list-style: none;
@@ -63,6 +81,10 @@
6482 top: 0;
6583 right: 0;
6684 }
 85+ body.rtl div#personal {
 86+ left: 0;
 87+ right: auto;
 88+ }
6789 div#personal h5 {
6890 display: none;
6991 }
@@ -70,16 +92,28 @@
7193 float: left;
7294 margin-left: 0.75em;
7395 margin-top: 0.5em;
74 - /*font-size: 0.9em;*/
 96+ font-size: 0.9em;
7597 }
 98+ body.rtl div#personal li {
 99+ float: right;
 100+ margin-left: 0;
 101+ margin-right: 0.75em;
 102+ }
76103 /* Navigation */
77104 div#left-navigation {
78105 margin-top: 3em;
79106 margin-left: 12.75em;
80107 }
 108+ body.rtl div#left-navigation {
 109+ margin-left: 0;
 110+ margin-right: 12.75em;
 111+ }
81112 div#right-navigation {
82113 float: right;
83114 }
 115+ body.rtl div#right-navigation {
 116+ float: left;
 117+ }
84118 /* Navigation Labels */
85119 div#namespaces h5,
86120 div#variants h5,
@@ -97,10 +131,21 @@
98132 background-repeat: no-repeat;
99133 padding-left: 1px;
100134 }
 135+ body.rtl div#namespaces,
 136+ body.rtl div#views {
 137+ float: right;
 138+ background-position: bottom right;
 139+ padding-left: 0;
 140+ padding-right: 1px;
 141+ }
101142 div#namespaces ul,
102143 div#views ul {
103144 float: left;
104145 }
 146+ body.rtl div#namespaces ul,
 147+ body.rtl div#views ul {
 148+ float: right;
 149+ }
105150 div#namespaces li,
106151 div#views li {
107152 float: left;
@@ -109,6 +154,11 @@
110155 background-position: bottom left;
111156 background-repeat: repeat-x;
112157 }
 158+ body.rtl div#namespaces li,
 159+ body.rtl div#views li {
 160+ float: right;
 161+ background-position: bottom right;
 162+ }
113163 div#namespaces li.selected,
114164 div#views li.selected {
115165 background-image: url(images/tab-current-fade.png);
@@ -124,6 +174,10 @@
125175 background-repeat: no-repeat;
126176 color: #0645ad;
127177 }
 178+ body.rtl div#namespaces a,
 179+ body.rtl div#views a {
 180+ background-position: bottom left;
 181+ }
128182 div#namespaces li.selected a,
129183 div#views li.selected a:visited {
130184 color: #333333;
@@ -142,10 +196,18 @@
143197 background-position: center center;
144198 background-repeat: no-repeat;
145199 }
 200+ body.rtl div#variants,
 201+ body.rtl div#actions {
 202+ float: right;
 203+ }
146204 div#variants h5,
147205 div#actions h5 {
148206 float: left;
149207 }
 208+ body.rtl div#variants h5,
 209+ body.rtl div#actions h5 {
 210+ float: right;
 211+ }
150212 div#variants h5 a,
151213 div#actions h5 a {
152214 display: inline-block;
@@ -156,6 +218,11 @@
157219 background-position: bottom right;
158220 background-repeat: no-repeat;
159221 }
 222+ body.rtl div#variants h5 a,
 223+ body.rtl div#actions h5 a {
 224+ display: inline-block;
 225+ background-position: bottom left;
 226+ }
160227 div#variants div.menu,
161228 div#actions div.menu {
162229 display: none;
@@ -175,6 +242,11 @@
176243 margin: 0;
177244 margin-left: -1px;
178245 }
 246+ body.rtl div#variants ul,
 247+ body.rtl div#actions ul {
 248+ margin-left: 0;
 249+ margin-right: -1px;
 250+ }
179251 div#variants:hover li a,
180252 div#actions li a {
181253 display: inline-block;
@@ -184,12 +256,21 @@
185257 div#search {
186258 float: left;
187259 }
 260+ body.rtl div#search {
 261+ float: right;
 262+ }
188263 div#search form,
189264 div#search input {
190265 float: left;
191266 margin-top: 0.4em;
192267 margin-left: 0.25em;
193268 }
 269+ body.rtl div#search form,
 270+ body.rtl div#search input {
 271+ float: right;
 272+ margin-left: 0;
 273+ margin-right: 0.25em;
 274+ }
194275 /* Panel */
195276 div#panel {
196277 position: absolute;
@@ -197,6 +278,10 @@
198279 width: 12em;
199280 left: 0;
200281 }
 282+body.rtl div#panel {
 283+ left: auto;
 284+ right: 0;
 285+}
201286 div#panel div.portal {
202287 padding-top: 1.5em;
203288 }
@@ -253,6 +338,11 @@
254339 background-position: top left;
255340 background-repeat: repeat-x;
256341 }
 342+body.rtl div#foot {
 343+ margin-left: 0;
 344+ margin-right: 12em;
 345+ background-position: top right;
 346+}
257347 div#foot ul {
258348 list-style: none;
259349 margin: 0;
@@ -269,19 +359,35 @@
270360 div#foot ul#foot-icons {
271361 float: right;
272362 }
 363+body.rtl div#foot ul#foot-icons {
 364+ float: left;
 365+}
273366 div#foot ul#foot-places {
274367 float: left;
275368 }
 369+body.rtl div#foot ul#foot-places {
 370+ float: right;
 371+}
276372 div#foot ul#foot-icons li {
277373 float: left;
278374 margin-left: 0.5em;
279375 line-height: 2em;
280376 }
 377+body.rtl div#foot ul#foot-icons li {
 378+ float: right;
 379+ margin-left: 0;
 380+ margin-right: 0.5em;
 381+}
281382 div#foot ul#foot-places li {
282383 float: left;
283384 margin-right: 0.5em;
284385 line-height: 2em;
285386 }
 387+body.rtl div#foot ul#foot-places li {
 388+ float: right;
 389+ margin-left: 0.5em;
 390+ margin-right: 0;
 391+}
286392
287393 /* Logo */
288394 div#logo {

Status & tagging log