2 * CSS in this file is used by *all* skins (that have any CSS at all). Be
3 * careful what you put in here, since what looks good in one skin may not in
4 * another, but don't ignore the poor pre-Monobook users either.
7 /* GENERAL CLASSES FOR DIRECTIONALITY SUPPORT */
10 * These classes should be used for text depending on the content direction.
11 * Content stuff like editsection, ul/ol and TOC depend on this.
23 /* Most input fields should be in site direction */
24 .sitedir-ltr textarea
,
30 .sitedir-rtl textarea
,
36 /* User-Agent styles for new HTML5 elements */
38 background-color: yellow
;
42 /* Helper for wbr element on IE 8+; in HTML5, but not supported by default as of IE 11. */
43 /* Note canonical HTML5 styles recommend "content: \u200B", but this doesn't work as of IE 11. */
45 display: inline-block
;
48 /* Input types that should follow user direction, like buttons */
49 /* TODO: What about buttons in wikipage content ? */
57 /* Override default values */
70 /* Default style for semantic tags */
73 border-bottom: 1px dotted
;
77 /* Colored watchlist and recent changes numbers */
79 color: #006400; /* dark green */
83 color: #8b0000; /* dark red */
87 color: #aaa; /* gray */
91 * Links to redirects appear italicized on [[Special:AllPages]], [[Special:PrefixIndex]],
92 * [[Special:Watchlist/edit]] and in category listings.
95 .redirect-in-category
,
100 /* Comment and username portions of RC entries */
116 vertical-align: middle
;
124 * Add a bit of margin space between the preview and the toolbar.
125 * This replaces the ugly <p><br /></p> we used to insert into the page source
131 /* Stop floats from intruding into edit area in previews */
143 * File description page
146 div
.mw-filepage-resolutioninfo
{
157 table
.filehistory th
,
158 table
.filehistory td
{
162 table
.filehistory th
{
166 table
.filehistory td
.mw-imagepage-filesize
,
167 table
.filehistory th
.mw-imagepage-filesize
{
171 table
.filehistory td
.filehistory-selected
{
176 * Add a checkered background image on hover for file
177 * description pages. (bug 26470)
182 background: white url
(images
/Checker-16x16
.png
) repeat
;
189 span
.history-deleted
{
190 text-decoration: line-through
;
199 background-color: #ffa;
231 .prefsection td.mw-label {
239 .prefsection table.mw-htmlform-matrix {
244 /* SVG support using a transparent gradient to guarantee cross-browser
245 * compatibility (browsers able to understand gradient syntax support also SVG).
246 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
247 background-image: url
(images
/question-small
.png
);
249 background-image: -webkit-linear-gradient
(transparent
, transparent
), url
(images/question.svg);
251 background-image: linear-gradient
(transparent
, transparent
), url
(images/question.svg);
252 background-repeat: no-repeat
;
253 background-size: 13px 13px;
254 display: inline-block
;
260 .mw-icon-question:lang
(ar
),
261 .mw-icon-question:lang
(fa
),
262 .mw-icon-question:lang(ur) {
263 -webkit-transform: scaleX
(-1);
264 -ms-transform: scaleX
(-1);
265 transform: scaleX
(-1);
272 table
.mw-htmlform-nolabel td
.mw-label
{
276 tr
.mw-htmlform-vertical-label td
.mw-label
{
277 text-align: left
!important
;
280 .mw-htmlform-invalid-input td.mw-input input {
284 .mw-htmlform-flatlist div.mw-htmlform-flatlist-item {
290 .mw-htmlform-matrix td {
292 padding-right: 0.5em;
304 .mw-content-ltr .thumbcaption {
309 .mw-content-rtl .thumbcaption {
314 .mw-content-ltr .magnify {
319 .mw-content-rtl .magnify {
328 * Overrides text justification (user preference)
339 list-style-type: none
;
340 list-style-image: none
;
341 vertical-align: middle
!ie
;
345 display: inline-block
;
347 border-left: 1px solid
#AAA;
354 .catlinks li:first-child {
355 padding-left: 0.25em;
359 /* (bug 5346) make category redirects italic */
360 .catlinks li a.mw-redirect {
367 .mw-hidden-cats-hidden {
371 .catlinks-allhidden {
375 /* Convenience links to edit block, delete and protect reasons */
376 p
.mw-ipb-conveniencelinks
,
377 p
.mw-protect-editreasons
,
378 p
.mw-filedelete-editreasons
,
379 p
.mw-delete-editreasons
,
380 p
.mw-revdel-editreasons
{
386 * OpenSearch ajax suggestions
395 background-color: white
;
397 border-color: #AAAAAA;
403 table
.os-suggest-results
{
407 border-collapse: collapse
;
412 .os-suggest-result-hl {
414 background-color: white
;
419 .os-suggest-result-hl
,
420 .os-suggest-result-hl-webkit {
421 background-color: #4C59A6;
431 .os-suggest-toggle-def {
439 /* Page history styling */
441 /* The auto-generated edit comments */
446 #pagehistory .history-user
{
451 #pagehistory span
.minor
{
456 border: 1px solid white
;
459 #pagehistory li
.selected
{
460 background-color: #f9f9f9;
461 border: 1px dashed
#aaa;
464 .mw-history-revisiondelete-button, #mw-fileduplicatesearch-icon {
468 /** Generic minor/bot/newpage styling (recent changes) */
476 #shared-image-conflict {
481 * Recreating deleted page warning
482 * Reupload file warning
483 * Page protection warning
484 * incl. log entries for these warnings
486 div
.mw-warning-with-logexcerpt
{
489 border: 2px solid
#2F6FAB;
493 div
.mw-warning-with-logexcerpt ul li
{
497 /* (show/hide) revision deletion links */
498 span
.mw-revdelundel-link
,
499 strong
.mw-revdelundel-link
{
503 span
.mw-revdelundel-hidden
,
504 input
.mw-revdelundel-hidden
{
508 td
.mw-revdel-checkbox
,
509 th
.mw-revdel-checkbox
{
514 /* red links; see bug 36276 */
521 /* SVG support using a transparent gradient to guarantee cross-browser
522 * compatibility (browsers able to understand gradient syntax support also SVG).
523 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
524 background-image: url
(images
/feed-icon
.png
);
526 background-image: -webkit-linear-gradient
(transparent
, transparent
), url
(images
/feed-icon
.svg
);
528 background-image: linear-gradient
(transparent
, transparent
), url
(images
/feed-icon
.svg
);
529 background-position: center left
;
530 background-repeat: no-repeat
;
531 background-size: 12px 12px;
535 /* Plainlinks - this can be used to switch
536 * off special external link styling */
538 background: none
!important
;
539 padding: 0 !important
;
542 /* External URLs should always be treated as LTR (bug 4330) */
543 /* @noflip */ .rtl a
.external
.free
,
544 .rtl a.external.autonumber {
550 * wikitable class for skinning normal tables
551 * keep in sync with commonPrint.css
555 background-color: #f9f9f9;
556 border: 1px #aaa solid
;
557 border-collapse: collapse
;
561 table
.wikitable
> tr
> th
,
562 table
.wikitable
> tr
> td
,
563 table
.wikitable
> * > tr
> th
,
564 table
.wikitable
> * > tr
> td
{
565 border: 1px #aaa solid
;
569 table
.wikitable
> tr
> th
,
570 table
.wikitable
> * > tr
> th
{
571 background-color: #f2f2f2;
575 table
.wikitable
> caption
{
580 * Hide collapsable rows in a collapsed table.
582 * Used by ImagePage and the mediawiki.action.view.metadata module.
584 table
.collapsed tr
.collapsable
{
588 /* success and error messages */
613 display: -moz-inline-block
;
614 display: inline-block
;
632 border-color: #fac5c5;
633 background-color: #fae3e3;
638 border-color: #fde29b;
639 background-color: #fdf1d1;
644 border-color: #b7fdb5;
645 background-color: #e1fddf;
648 /* general info/warning box for SP */
650 border: 2px solid
#ff7f00;
663 margin: 0.5em 0.5em 0.5em 49px;
666 /* Note on preview page */
684 * Transparent table with suddle borders
685 * and blue row-highlighting.
688 border-collapse: collapse
;
694 border: 1px solid
#aaaaaa;
695 padding: 0 0.15em 0 0.15em;
699 background-color: #ddddff;
703 background-color: #ffffff;
706 .mw-datatable tr:hover td {
707 background-color: #eeeeff;
711 * TablePager tables generated by the TablePager PHP class
712 * in MediaWiki (e.g. Special:ListFiles).
728 text-decoration: none
;
736 .imagelist .TablePager_col_links {
737 background-color: #eeeeff;
740 .imagelist .TablePager_col_img_description {
744 .imagelist th.TablePager_sort {
745 background-color: #ccccff;
751 border: 1px solid
#aaaaaa;
752 background-color: #f9f9f9;
755 margin-bottom: 0.5em;
762 list-style-type: none
;
766 /* Classes for Exif data display */
770 margin-bottom: 0.5em;
774 table
.mw_metadata caption
{
778 table
.mw_metadata th
{
782 table
.mw_metadata td
{
788 border-collapse: collapse
;
791 table
.mw_metadata td
,
792 table
.mw_metadata th
{
794 border: 1px solid
#aaaaaa;
799 table
.mw_metadata th
{
800 background-color: #f9f9f9;
803 table
.mw_metadata td
{
804 background-color: #fcfcfc;
807 table
.mw_metadata ul
.metadata-langlist
{
808 list-style-type: none
;
809 list-style-image: none
;
815 /* Correct directionality when page dir is different from site/user dir */
817 .mw-content-rtl .mw-content-ltr ul {
819 margin: 0.3em 0 0 1.6em;
824 .mw-content-ltr .mw-content-rtl ul {
826 margin: 0.3em 1.6em 0 0;
831 .mw-content-rtl .mw-content-ltr ol {
833 margin: 0.3em 0 0 3.2em;
838 .mw-content-ltr .mw-content-rtl ol {
840 margin: 0.3em 3.2em 0 0;
846 .mw-content-rtl .mw-content-ltr dd {
853 .mw-content-ltr .mw-content-rtl dd {
859 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
860 /* Don't forget to update commonPrint.css */
863 display: -moz-inline-box
;
864 display: inline-block
;
883 word-wrap: break-word
;
886 li
.gallerybox div
.thumb
{
888 border: 1px solid
#ccc;
889 background-color: #f9f9f9;
893 li
.gallerybox div
.thumb img
{
902 word-wrap: break-word
;
905 /* new gallery stuff */
906 ul
.mw-gallery-nolines li
.gallerybox div
.thumb
{
907 background-color: transparent
;
911 ul
.mw-gallery-nolines li
.gallerybox div
.gallerytext
{
915 /* height constrained gallery */
917 ul
.mw-gallery-packed li
.gallerybox div
.thumb
,
918 ul
.mw-gallery-packed-overlay li
.gallerybox div
.thumb
,
919 ul
.mw-gallery-packed-hover li
.gallerybox div
.thumb
{
920 background-color: transparent
;
924 ul
.mw-gallery-packed li
.gallerybox div
.thumb img
,
925 ul
.mw-gallery-packed-overlay li
.gallerybox div
.thumb img
,
926 ul
.mw-gallery-packed-hover li
.gallerybox div
.thumb img
{
930 ul
.mw-gallery-packed-hover li
.gallerybox
,
931 ul
.mw-gallery-packed-overlay li
.gallerybox
{
935 ul
.mw-gallery-packed-hover div
.gallerytextwrapper
{
940 ul
.mw-gallery-packed-hover li
.gallerybox:hover div
.gallerytextwrapper
,
941 ul
.mw-gallery-packed-overlay li
.gallerybox div
.gallerytextwrapper
,
942 ul
.mw-gallery-packed-hover li
.gallerybox
.mw-gallery-focused div
.gallerytextwrapper
{
945 background: rgba
(255, 255, 255, 0.8);
948 left: 0; /* Needed for IE */
951 margin: 2px; /* correspond to style on div.thumb */
954 ul
.mw-gallery-packed-hover
,
955 ul
.mw-gallery-packed-overlay
,
956 ul
.mw-gallery-packed
{
962 background-image: url
(images
/ajax-loader
.gif
);
963 background-position: center center
;
964 background-repeat: no-repeat
;
971 padding: 10px !important
;
974 background-image: url
(images/spinner.gif);
975 background-position: center center
;
976 background-repeat: no-repeat
;
979 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
980 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
983 h1:lang
(bh
), /* Macrolanguage, used on bh.wikipedia.org, should be removed one day */
1002 line-height: 1.6em !important
;
1005 h2:lang
(anp
), h3:lang
(anp
), h4:lang
(anp
), h5:lang
(anp
), h6:lang
(anp
),
1006 h2:lang
(as
), h3:lang
(as
), h4:lang
(as
), h5:lang
(as
), h6:lang
(as
),
1007 h2:lang
(bho
), h3:lang
(bho
), h4:lang
(bho
), h5:lang
(bho
), h6:lang
(bho
),
1008 h2:lang
(bh
), h3:lang
(bh
), h4:lang
(bh
), h5:lang
(bh
), h6:lang
(bh
),
1009 h2:lang
(bn
), h3:lang
(bn
), h4:lang
(bn
), h5:lang
(bn
), h6:lang
(bn
),
1010 h2:lang
(gu
), h3:lang
(gu
), h4:lang
(gu
), h5:lang
(gu
), h6:lang
(gu
),
1011 h2:lang
(hi
), h3:lang
(hi
), h4:lang
(hi
), h5:lang
(hi
), h6:lang
(hi
),
1012 h2:lang
(kn
), h3:lang
(kn
), h4:lang
(kn
), h5:lang
(kn
), h6:lang
(kn
),
1013 h2:lang
(ks
), h3:lang
(ks
), h4:lang
(ks
), h5:lang
(ks
), h6:lang
(ks
),
1014 h2:lang
(ml
), h3:lang
(ml
), h4:lang
(ml
), h5:lang
(ml
), h6:lang
(ml
),
1015 h2:lang
(mr
), h3:lang
(mr
), h4:lang
(mr
), h5:lang
(mr
), h6:lang
(mr
),
1016 h2:lang
(my
), h3:lang
(my
), h4:lang
(my
), h5:lang
(my
), h6:lang
(my
),
1017 h2:lang
(mai
), h3:lang
(mai
), h4:lang
(mai
), h5:lang
(mai
), h6:lang
(mai
),
1018 h2:lang
(ne
), h3:lang
(ne
), h4:lang
(ne
), h5:lang
(ne
), h6:lang
(ne
),
1019 h2:lang
(new
), h3:lang
(new
), h4:lang
(new
), h5:lang
(new
), h6:lang
(new
),
1020 h2:lang
(or
), h3:lang
(or
), h4:lang
(or
), h5:lang
(or
), h6:lang
(or
),
1021 h2:lang
(pa
), h3:lang
(pa
), h4:lang
(pa
), h5:lang
(pa
), h6:lang
(pa
),
1022 h2:lang
(pi
), h3:lang
(pi
), h4:lang
(pi
), h5:lang
(pi
), h6:lang
(pi
),
1023 h2:lang
(sa
), h3:lang
(sa
), h4:lang
(sa
), h5:lang
(sa
), h6:lang
(sa
),
1024 h2:lang
(ta
), h3:lang
(ta
), h4:lang
(ta
), h5:lang
(ta
), h6:lang
(ta
),
1025 h2:lang
(te
), h3:lang
(te
), h4:lang
(te
), h5:lang
(te
), h6:lang
(te
) {
1029 /* Localised ordered list numbering for some languages */
1034 ol:lang
(kk-arab
) li
,
1036 list-style-type: -moz-persian
;
1037 list-style-type: persian
;
1041 list-style-type: -moz-arabic-indic
;
1042 list-style-type: arabic-indic
;
1047 list-style-type: -moz-devanagari
;
1048 list-style-type: devanagari
;
1053 list-style-type: -moz-bengali
;
1054 list-style-type: bengali
;
1058 list-style-type: -moz-oriya
;
1059 list-style-type: oriya
;
1066 /* Correct directionality when page dir is different from site/user dir */
1067 /* @noflip */ .mw-content-ltr
.toc ul
,
1068 .mw-content-ltr #toc ul
,
1069 .mw-content-rtl
.mw-content-ltr
.toc ul
,
1070 .mw-content-rtl .mw-content-ltr #toc ul {
1074 /* @noflip */ .mw-content-rtl
.toc ul
,
1075 .mw-content-rtl #toc ul
,
1076 .mw-content-ltr
.mw-content-rtl
.toc ul
,
1077 .mw-content-ltr .mw-content-rtl #toc ul {
1081 /* @noflip */ .mw-content-ltr
.toc ul ul
,
1082 .mw-content-ltr #toc ul ul
,
1083 .mw-content-rtl
.mw-content-ltr
.toc ul ul
,
1084 .mw-content-rtl .mw-content-ltr #toc ul ul {
1088 /* @noflip */ .mw-content-rtl
.toc ul ul
,
1089 .mw-content-rtl #toc ul ul
,
1090 .mw-content-ltr
.mw-content-rtl
.toc ul ul
,
1091 .mw-content-ltr .mw-content-rtl #toc ul ul {
1102 /* tooltip styles */
1103 .mw-help-field-hint {
1106 margin-bottom: -8px;
1107 padding: 0 0 0 15px;
1109 background-image: url
(images
/help-question
.gif
);
1110 background-position: left center
;
1111 background-repeat: no-repeat
;
1114 text-decoration: underline
;
1118 .mw-help-field-hint:hover {
1120 background-image: url
(images
/help-question-hover
.gif
);
1123 .mw-help-field-data {
1125 background-color: #d6f3ff;
1126 padding: 5px 8px 4px 8px;
1127 border: 1px solid
#5dc9f4;
1132 padding: 5px 5px 10px;
1140 padding: 5px 8px 4px 8px;
1141 background-color: #d6f3ff;
1143 border: 1px solid
#5dc9f4;
1151 background: url
(images
/tipsy-arrow
.gif
) no-repeat top left
;
1156 .tipsy-se .tipsy-arrow {
1159 background-position: 0% 100%;
1168 unicode-bidi: embed
;
1171 /* Correct user & content directionality when viewing a diff */
1172 .diff-currentversion-title
,
1175 unicode-bidi: embed
;
1178 /* @noflip */ .diff-contentalign-right td
{
1180 unicode-bidi: embed
;
1183 /* @noflip */ .diff-contentalign-left td
{
1185 unicode-bidi: embed
;
1192 direction: ltr
!important
;
1193 unicode-bidi: embed
;
1197 #mw-revision-info-current,
1205 /* @noflip */ div
.tright
,
1212 /* @noflip */ div
.tleft
,
1228 unicode-bidi: embed
;
1236 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1239 /* Print footer should be hidden by default in screen. */
1244 /* For developers */
1253 -moz-user-select: none
;
1254 -webkit-user-select: none
;
1255 -ms-user-select: none
;
1259 /* Display editsection links smaller and next to headings */
1261 .mw-editsection-like {
1263 font-weight: normal
;
1265 vertical-align: baseline
;
1266 /* Reset line-height; headings tend to have it set to larger values */
1268 /* As .mw-editsection is a <span> (inline element), it is treated as part */
1269 /* of the heading content when selecting text by multiple clicks and thus */
1270 /* selected together with heading content, despite the user-select: none; */
1271 /* rule set above. This enforces non-selection without changing the look. */
1272 display: inline-block
;
1275 /* Correct directionality when page dir is different from site/user dir */
1277 .mw-content-ltr
.mw-editsection
,
1278 .mw-content-rtl .mw-content-ltr .mw-editsection {
1283 .mw-content-rtl
.mw-editsection
,
1284 .mw-content-ltr .mw-content-rtl .mw-editsection {
1288 /* Prevent citations and subscripts from interfering with the line-height */