diff options
Diffstat (limited to 'skins/simple')
-rw-r--r-- | skins/simple/main.css | 45 | ||||
-rw-r--r-- | skins/simple/rtl.css | 26 |
2 files changed, 17 insertions, 54 deletions
diff --git a/skins/simple/main.css b/skins/simple/main.css index b2c477b8..cc76f522 100644 --- a/skins/simple/main.css +++ b/skins/simple/main.css @@ -117,26 +117,6 @@ table.rimage { text-align:center; } -div.townBox { - position:relative; - float:right; - margin-left:1em; - padding:0.3em; - width: 200px; - overflow: hidden; - clear: right; -} -div.townBox dl { - padding: 0; - margin: 0 0 0.3em 0; -} -div.townBox dl dt { - background: none; - margin: 0.4em 0 0 0; -} -div.townBox dl dd { - margin: 0.1em 0 0 1.1em; -} .portlet { border: none; float: none; @@ -237,6 +217,7 @@ h1.firstHeading, h2 { padding-right: 18px; } #bodyContent a[href ^="irc://"], +#bodyContent a.extiw[href ^="irc://"], .link-irc { background: url("discussionitem_icon.gif") center right no-repeat; padding-right: 18px; @@ -258,16 +239,8 @@ td.diff-deletedline { } .diffchange { background-color: #FFCDF3; text-decoration: none; } -.autocomment { color: grey; } -#pagehistory span.user { - margin-left: 1.4em; - margin-right: 0.4em; -} -#pagehistory span.minor { font-weight: bold; } -#pagehistory li.selected { - background-color:#f9f9f9; - border:1px dashed #aaaaaa; -} +#pagehistory li { border: none; } + span.urlexpansion { display: none; } @@ -347,7 +320,7 @@ a.new, li.new { text-decoration: line-through; } -p.catlinks { +.catlinks { text-align: center; width: 80%; margin-left: auto; @@ -365,16 +338,6 @@ div.printfooter { display: none; } - -#ca-addsection a:before { - content: "Add section"; - font-size: 10pt; -} - -#ca-addsection a { - font-size: 0px; -} - #n-portal, #n-currentevents, #n-help, diff --git a/skins/simple/rtl.css b/skins/simple/rtl.css index 002aa72e..c560caba 100644 --- a/skins/simple/rtl.css +++ b/skins/simple/rtl.css @@ -1,5 +1,5 @@ /* -Right-to-left fixes for MonoBook. +Right-to-left fixes for Simple. Places sidebar on right, tweaks various alignment issues. Works mostly ok nicely on Safari 1.2.1; fine in Mozilla. @@ -24,7 +24,6 @@ To test: */ body { direction: rtl; -/* unicode-bidi: bidi-override;*/ unicode-bidi: embed; } #column-content { @@ -67,7 +66,6 @@ div div.thumbcaption { } div.magnify, -#div.townBox, #p-logo { left: auto; right: 0; @@ -94,14 +92,6 @@ div.tright, div.floatright, table.floatright { div.tleft, div.floatleft, table.floatleft { clear: left; } -div.townBox { - margin-left: 0; - margin-right: 1em; -} -div.townBox dl dd { - margin-left: 0; - margin-right: 1.1em; -} /* Fix link icons */ .external { @@ -161,8 +151,8 @@ input#wpSave, input#wpDiff { float: right; margin: 0 0 1em 3em; } -/* Unblock and Ipblocklist links of Special:Blockip */ -p.mw-ipb-conveniencelinks { +/* Convenience links to edit block and delete reasons */ +p.mw-ipb-conveniencelinks, p.mw-filedelete-editreasons, p.mw-delete-editreasons { float: left; } @@ -173,3 +163,13 @@ p.mw-ipb-conveniencelinks { table.filehistory th { text-align: right; } + +/** + * Lists: + * The following lines don't have a visible effect on non-Gecko browsers + * They fix a problem ith Gecko browsers rendering lists to the right of + * left-floated objects in an RTL layout. + */ +html > body div#bodyContent ul { + display: table; +} |