Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -884,7 +884,56 @@ |
885 | 885 | a.sortheader { |
886 | 886 | margin: 0 0.3em; |
887 | 887 | } |
| 888 | + |
| 889 | +/* Localised ordered list numbering for some languages */ |
| 890 | +ol:lang(bcc) li, |
| 891 | +ol:lang(bqi) li, |
| 892 | +ol:lang(fa) li, |
| 893 | +ol:lang(glk) li, |
| 894 | +ol:lang(kk-arab) li, |
| 895 | +ol:lang(mzn) li { |
| 896 | + list-style-type: -moz-persian; |
| 897 | + list-style-type: persian; |
| 898 | +} |
| 899 | + |
| 900 | +ol:lang(ckb) li { |
| 901 | + list-style-type: -moz-arabic-indic; |
| 902 | + list-style-type: arabic-indic; |
| 903 | +} |
| 904 | + |
| 905 | +ol:lang(bn) li { |
| 906 | + list-style-type: -moz-bengali; |
| 907 | + list-style-type: bengali; |
| 908 | +} |
| 909 | + |
| 910 | +/* tooltip styles */ |
| 911 | +.mw-help-field-hint { |
| 912 | + display: none; |
| 913 | + padding: 0px; |
| 914 | + padding-left: 15px; |
| 915 | + margin-left: 2px; |
| 916 | + margin-bottom: -8px; |
| 917 | + background-image: url('images/help-question.gif'); |
| 918 | + background-position: left center; |
| 919 | + background-repeat: no-repeat; |
| 920 | + color: #0645ad; |
| 921 | + text-decoration: underline; |
| 922 | + cursor: pointer; |
| 923 | + font-size: .8em; |
| 924 | +} |
| 925 | +.mw-help-field-hint:hover { |
| 926 | + background-image: url('images/help-question-hover.gif'); |
| 927 | +} |
| 928 | +.mw-help-field-data { |
| 929 | + display: block; |
| 930 | + background-color: #d6f3ff; |
| 931 | + padding:5px 8px 4px 8px; |
| 932 | + border: 1px solid #5dc9f4; |
| 933 | + margin-left: 20px; |
| 934 | +} |
888 | 935 | .tipsy { padding: 5px 5px 10px; font-size: 12px; position: absolute; z-index: 100000; overflow: visible; } |
889 | 936 | .tipsy-inner { padding: 5px 8px 4px 8px; background-color: #d6f3ff; color: black; border: 1px solid #5dc9f4; max-width: 300px; text-align: left; } |
890 | 937 | .tipsy-arrow { position: absolute; background: url( 'images/tipsy-arrow.gif' ) no-repeat top left; width: 13px; height: 13px; } |
891 | 938 | .tipsy-se .tipsy-arrow { bottom: -2px; right: 10px; background-position: 0% 100%; } |
| 939 | + |
| 940 | + |