From d1149f9da6403a4a35282d8584f4649e30738b5c Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Mon, 13 Dec 2010 12:40:08 +0000 Subject: [PATCH] Fix r78196: readd accidentally removed lines in shared.css --- skins/common/shared.css | 49 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/skins/common/shared.css b/skins/common/shared.css index a4b5b77475..d990b3891e 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -884,7 +884,56 @@ td.mw-enhanced-rc { a.sortheader { margin: 0 0.3em; } + +/* Localised ordered list numbering for some languages */ +ol:lang(bcc) li, +ol:lang(bqi) li, +ol:lang(fa) li, +ol:lang(glk) li, +ol:lang(kk-arab) li, +ol:lang(mzn) li { + list-style-type: -moz-persian; + list-style-type: persian; +} + +ol:lang(ckb) li { + list-style-type: -moz-arabic-indic; + list-style-type: arabic-indic; +} + +ol:lang(bn) li { + list-style-type: -moz-bengali; + list-style-type: bengali; +} + +/* tooltip styles */ +.mw-help-field-hint { + display: none; + padding: 0px; + padding-left: 15px; + margin-left: 2px; + margin-bottom: -8px; + background-image: url('images/help-question.gif'); + background-position: left center; + background-repeat: no-repeat; + color: #0645ad; + text-decoration: underline; + cursor: pointer; + font-size: .8em; +} +.mw-help-field-hint:hover { + background-image: url('images/help-question-hover.gif'); +} +.mw-help-field-data { + display: block; + background-color: #d6f3ff; + padding:5px 8px 4px 8px; + border: 1px solid #5dc9f4; + margin-left: 20px; +} .tipsy { padding: 5px 5px 10px; font-size: 12px; position: absolute; z-index: 100000; overflow: visible; } .tipsy-inner { padding: 5px 8px 4px 8px; background-color: #d6f3ff; color: black; border: 1px solid #5dc9f4; max-width: 300px; text-align: left; } .tipsy-arrow { position: absolute; background: url( 'images/tipsy-arrow.gif' ) no-repeat top left; width: 13px; height: 13px; } .tipsy-se .tipsy-arrow { bottom: -2px; right: 10px; background-position: 0% 100%; } + + -- 2.20.1