Index: trunk/phase3/skins/monobook/rtl.css |
— | — | @@ -237,3 +237,15 @@ |
238 | 238 | text-align: left; |
239 | 239 | } |
240 | 240 | |
| 241 | +/** |
| 242 | + * Lists: |
| 243 | + * The following lines don't have a visible effect on non-Gecko browsers |
| 244 | + * They fix a problem ith Gecko browsers rendering lists to the right of |
| 245 | + * left-floated objects in an RTL layout. |
| 246 | + */ |
| 247 | +html > body div#article ul { |
| 248 | + display: table; |
| 249 | +} |
| 250 | +html > body div#bodyContent ul#filetoc { |
| 251 | + display: block; |
| 252 | +} |
Index: trunk/phase3/skins/common/common_rtl.css |
— | — | @@ -1,6 +1,7 @@ |
2 | 2 | /* |
3 | 3 | * This file contains CSS settings common to RTL wikis use the old |
4 | 4 | * pre-Monobook skins Wikistandard, Nostalgia and CologneBlue |
| 5 | + * NOTE: This file is not used in Monobook! |
5 | 6 | */ |
6 | 7 | |
7 | 8 | /* js pref toc */ |
— | — | @@ -47,19 +48,12 @@ |
48 | 49 | html > body div#article ul { |
49 | 50 | display: table; |
50 | 51 | } |
| 52 | +html > body div#bodyContent ul#filetoc { |
| 53 | + display: block; |
| 54 | +} |
51 | 55 | |
52 | 56 | /* feed links */ |
53 | 57 | a.feedlink { |
54 | 58 | background: none !important; |
55 | 59 | padding-left: 0 !important; |
56 | 60 | } |
57 | | - |
58 | | -/** |
59 | | - * Lists: |
60 | | - * The following lines don't have a visible effect on non-Gecko browsers |
61 | | - * They fix a problem ith Gecko browsers rendering lists to the right of |
62 | | - * left-floated objects in an RTL layout. |
63 | | - */ |
64 | | -html > body div#bodyContent ul#filetoc { |
65 | | - display: block; |
66 | | -} |