|
|
| 1. satır: |
1. satır: |
| /* Reset italic styling set by user agent */ | | /* CSS placed here will be applied to all skins*/ |
|
| |
|
| cite,
| | body.page-Special_ExpandTemplates textarea { |
| dfn {
| | width: 100%; |
| font-style: inherit;
| | padding-top: 0.1em; |
| | padding-right: 0.1em; |
| | padding-bottom: 0.1em; |
| | padding-left: 0.1em; |
| } | | } |
|
| |
|
| | | #contentSub { |
| /* Straight quote marks for <q> */
| | font-size:84%; |
| | | margin: 0.4em 0; |
| q {
| |
| quotes: '"' '"' "'" "'";
| |
| }
| |
| | |
| | |
| /* Avoid collision of blockquote with floating elements by swapping margin and padding */
| |
| | |
| blockquote {
| |
| overflow: hidden;
| |
| margin: 1em 0;
| |
| padding: 0 40px;
| |
| }
| |
| | |
| | |
| /* Consistent size for <small>, <sub> and <sup> */
| |
| | |
| small {
| |
| font-size: 85%; | |
| }
| |
| | |
| .mw-body-content sub,
| |
| .mw-body-content sup {
| |
| font-size: 80%; | |
| } | | } |
| | | img.thumbborder { |
| | | background:#fff; |
| /* Same spacing for indented and unindented paragraphs on talk pages */
| | border:1px solid #eee; |
| | | padding:5px; |
| .ns-talk .mw-body-content dd { | |
| margin-top: 0.4em; | |
| margin-bottom: 0.4em; | |
| } | | } |
|
| |
|
| | | #content pre { |
| /* Main page fixes */
| | overflow:auto; |
| | |
| #interwiki-completelist { | |
| font-weight: bold; | |
| } | | } |
|
| |
|
| | | /* make the list of references look smaller */ |
| /* Reduce page jumps by hiding collapsed/dismissed content */ | |
| | |
| .client-js .mw-special-Watchlist #watchlist-message,
| |
| .client-js .NavFrame.collapsed .NavContent,
| |
| .client-js .collapsible:not( .mw-made-collapsible).collapsed>tbody>tr:not(:first-child) {
| |
| display: none;
| |
| }
| |
| | |
| | |
| /* Adds padding above Watchlist announcements where new recentchanges/watchlist filters are enabled */
| |
| | |
| .mw-rcfilters-enabled .mw-specialpage-summary {
| |
| margin-top: 1em;
| |
| }
| |
| | |
| | |
| /* Hide charinsert base for those not using the gadget */
| |
| | |
| #editpage-specialchars {
| |
| display: none;
| |
| }
| |
| | |
| | |
| /* Highlight linked elements (such as clicked references) in blue */
| |
| | |
| body.action-info .mw-body-content :target,
| |
| .citation:target {
| |
| background-color: rgba(0, 127, 255, 0.133);
| |
| }
| |
| | |
| | |
| /* Styling for citations. Breaks long urls, etc., rather than overflowing box */
| |
| | |
| .citation {
| |
| word-wrap: break-word;
| |
| }
| |
| | |
| | |
| /* Make the list of references smaller
| |
| * Keep in sync with Template:Refbegin/styles.css
| |
| * And Template:Reflist/styles.css
| |
| */
| |
| | |
| ol.references { | | ol.references { |
| font-size: 90%;
| | font-size: 100%; |
| margin-bottom: 0.5em;
| |
| } | | } |
|
| |
|
| /* T156351: Support for Parsoid's Cite implementation */
| | .references-small { font-size: 90%;} |
| span[rel="mw:referencedBy"]::before {
| |
| font-weight: bold;
| |
| content: "^ ";
| |
| }
| |
| span[rel="mw:referencedBy"] {
| |
| counter-reset: mw-ref-linkback 0;
| |
| }
| |
| span[rel="mw:referencedBy"] > a::before {
| |
| font-weight: bold;
| |
| font-style: italic;
| |
| content: counter( mw-ref-linkback, lower-alpha );
| |
| }
| |
| a[rel="mw:referencedBy"]::before {
| |
| font-weight: bold;
| |
| content: "^";
| |
| }
| |
| | |
| /* Style for horizontal lists (separator following item).
| |
| @source mediawiki.org/wiki/Snippets/Horizontal_lists
| |
| @revision 8 (2016-05-21)
| |
| @author [[User:Edokter]]
| |
| */
| |
| | |
| .hlist dl,
| |
| .hlist ol,
| |
| .hlist ul {
| |
| margin: 0;
| |
| padding: 0;
| |
| }
| |
| | |
| | |
| /* Display list items inline */
| |
| | |
| .hlist dd,
| |
| .hlist dt,
| |
| .hlist li {
| |
| margin: 0;
| |
| /* don't trust the note that says margin doesn't work with inline
| |
| * removing margin: 0 makes dds have margins again */
| |
| display: inline;
| |
| }
| |
| | |
| | |
| /* Display nested lists inline */
| |
| | |
| .hlist.inline,
| |
| .hlist.inline dl,
| |
| .hlist.inline ol,
| |
| .hlist.inline ul,
| |
| .hlist dl dl,
| |
| .hlist dl ol,
| |
| .hlist dl ul,
| |
| .hlist ol dl,
| |
| .hlist ol ol,
| |
| .hlist ol ul,
| |
| .hlist ul dl,
| |
| .hlist ul ol,
| |
| .hlist ul ul {
| |
| display: inline;
| |
| }
| |
| | |
| | |
| /* Hide empty list items */
| |
| | |
| .hlist .mw-empty-li {
| |
| display: none;
| |
| } | |
| | |
| | |
| /* Generate interpuncts */
| |
|
| |
|
| .hlist dt:after { | | .references-2column { |
| content: ": ";
| | font-size: 90%; |
| | -moz-column-count:2; |
| | column-count:2; |
| } | | } |
|
| |
|
| | .same-bg { background: none } |
|
| |
|
| /** | | /* wikitable/prettytable class for skinning normal tables */ |
| * Note hlist style usage differs in Minerva and is defined in core as well!
| |
| * Please check Minerva desktop (and Minerva.css) when changing
| |
| * See https://phabricator.wikimedia.org/T213239
| |
| */
| |
| | |
| .hlist dd:after,
| |
| .hlist li:after {
| |
| content: " · ";
| |
| font-weight: bold;
| |
| }
| |
|
| |
|
| .hlist dd:last-child:after, | | table.wikitable, |
| .hlist dt:last-child:after, | | table.prettytable { |
| .hlist li:last-child:after {
| | margin: 1em 1em 1em 0; |
| content: none;
| | background: #f9f9f9; |
| | border: 1px #aaa solid; |
| | border-collapse: collapse; |
| } | | } |
|
| |
|
| | | table.wikitable th, table.wikitable td, |
| /* Add parentheses around nested lists */
| | table.prettytable th, table.prettytable td { |
| | | border: 1px #aaa solid; |
| .hlist dd dd:first-child:before,
| | padding: 0.4em; |
| .hlist dd dt:first-child:before, | |
| .hlist dd li:first-child:before, | |
| .hlist dt dd:first-child:before, | |
| .hlist dt dt:first-child:before, | |
| .hlist dt li:first-child:before,
| |
| .hlist li dd:first-child:before,
| |
| .hlist li dt:first-child:before,
| |
| .hlist li li:first-child:before {
| |
| content: " (";
| |
| font-weight: normal;
| |
| } | | } |
|
| |
|
| .hlist dd dd:last-child:after, | | table.wikitable th, |
| .hlist dd dt:last-child:after,
| | table.prettytable th { |
| .hlist dd li:last-child:after,
| | background: #f2f2f2; |
| .hlist dt dd:last-child:after,
| | text-align: center; |
| .hlist dt dt:last-child:after,
| |
| .hlist dt li:last-child:after,
| |
| .hlist li dd:last-child:after,
| |
| .hlist li dt:last-child:after,
| |
| .hlist li li:last-child:after { | |
| content: ")";
| |
| font-weight: normal;
| |
| } | | } |
|
| |
|
| | | table.wikitable caption, |
| /* Put ordinals in front of ordered list items */
| | table.prettytable caption { |
| | | margin-left: inherit; |
| .hlist ol {
| | margin-right: inherit; |
| counter-reset: listitem;
| | font-weight: bold; |
| } | | } |
|
| |
|
| .hlist ol>li {
| | /* default skin for navigation boxes */ |
| counter-increment: listitem;
| | /* Are these used on CZ? */ |
| }
| | table.navbox { |
| | | background-color: #f9f9f9; |
| .hlist ol>li:before {
| | border: 1px solid #aaa; |
| content: " " counter(listitem) "\a0";
| |
| }
| |
| | |
| .hlist dd ol>li:first-child:before,
| |
| .hlist dt ol>li:first-child:before,
| |
| .hlist li ol>li:first-child:before {
| |
| content: " (" counter(listitem) "\a0";
| |
| }
| |
| | |
| | |
| /* Unbulleted lists */ | |
| | |
| .plainlist ol,
| |
| .plainlist ul {
| |
| line-height: inherit;
| |
| list-style: none none;
| |
| margin: 0;
| |
| }
| |
| | |
| .plainlist ol li,
| |
| .plainlist ul li {
| |
| margin-bottom: 0;
| |
| }
| |
| | |
| | |
| /* Default style for navigation boxes */ | |
| | |
| .navbox { | |
| /* Navbox container style */ | |
| box-sizing: border-box;
| |
| border: 1px solid #a2a9b1; | |
| width: 100%;
| |
| clear: both; | | clear: both; |
| font-size: 88%; | | font-size: 90%; |
| | margin: 1em 0em 0em; |
| | padding: 5px; |
| text-align: center; | | text-align: center; |
| padding: 1px;
| |
| margin: 1em auto 0;
| |
| /* Prevent preceding content from clinging to navboxes */
| |
| }
| |
|
| |
| .navbox .navbox {
| |
| margin-top: 0;
| |
| /* No top margin for nested navboxes */
| |
| }
| |
|
| |
| .navbox+.navbox {
| |
| margin-top: -1px;
| |
| /* Single pixel border between adjacent navboxes */
| |
| }
| |
|
| |
| .navbox-inner,
| |
| .navbox-subgroup {
| |
| width: 100%; | | width: 100%; |
| } | | } |
|
| |
|
| .navbox-group, | | table.navbox th { |
| .navbox-title,
| | background-color: #ccf; |
| .navbox-abovebelow {
| | padding-left: 1em; |
| padding: 0.25em 1em; | | padding-right: 1em; |
| /* Title, group and above/below styles */ | |
| line-height: 1.5em;
| |
| text-align: center; | |
| } | | } |
|
| |
|
| th.navbox-group {
| | table.navbox tr:not(:first-child) th { |
| /* Group style */ | | background-color: #ddf; |
| white-space: nowrap;
| |
| /* @noflip */
| |
| text-align: right;
| |
| } | | } |
|
| |
|
| .navbox,
| | @media print { |
| .navbox-subgroup {
| | .navbox { |
| background-color: #fdfdfd; | | display: none; |
| /* Background color */
| | } |
| }
| |
| | |
| .navbox-list { | |
| line-height: 1.5em;
| |
| border-color: #fdfdfd;
| |
| /* Must match background color */ | |
| } | | } |
|
| |
|
| |
| /* cell spacing for navbox cells */
| |
|
| |
| tr+tr>.navbox-abovebelow,
| |
| tr+tr>.navbox-group,
| |
| tr+tr>.navbox-image,
| |
| tr+tr>.navbox-list {
| |
| /* Borders above 2nd, 3rd, etc. rows */
| |
| border-top: 2px solid #fdfdfd;
| |
| /* Must match background color */
| |
| }
| |
|
| |
| .navbox th,
| |
| .navbox-title {
| |
| background-color: #ccccff;
| |
| /* Level 1 color */
| |
| }
| |
|
| |
| .navbox-abovebelow,
| |
| th.navbox-group,
| |
| .navbox-subgroup .navbox-title {
| |
| background-color: #ddddff;
| |
| /* Level 2 color */
| |
| }
| |
|
| |
| .navbox-subgroup .navbox-group,
| |
| .navbox-subgroup .navbox-abovebelow {
| |
| background-color: #e6e6ff;
| |
| /* Level 3 color */
| |
| }
| |
|
| |
| .navbox-even {
| |
| background-color: #f7f7f7;
| |
| /* Even row striping */
| |
| }
| |
|
| |
| .navbox-odd {
| |
| background-color: transparent;
| |
| /* Odd row striping */
| |
| }
| |
|
| |
| .navbox .hlist td dl,
| |
| .navbox .hlist td ol,
| |
| .navbox .hlist td ul,
| |
| .navbox td.hlist dl,
| |
| .navbox td.hlist ol,
| |
| .navbox td.hlist ul {
| |
| padding: 0.125em 0;
| |
| /* Adjust hlist padding in navboxes */
| |
| }
| |
|
| |
|
| |
| /* Styling for JQuery makeCollapsible, matching that of collapseButton */
| |
|
| |
| .mw-parser-output .mw-collapsible-toggle {
| |
| font-weight: normal;
| |
| /* @noflip */
| |
| text-align: right;
| |
| padding-right: 0.2em;
| |
| padding-left: 0.2em;
| |
| }
| |
|
| |
| .mw-collapsible-leftside-toggle .mw-collapsible-toggle {
| |
| /* @noflip */
| |
| float: left;
| |
| /* @noflip */
| |
| text-align: left;
| |
| }
| |
|
| |
|
| |
|
| /* Infobox template style */ | | /* Infobox template style */ |
|
| |
|
| .infobox { | | .infobox { |
| border: 1px solid #a2a9b1;
| | border: 1px solid #aaa; |
| border-spacing: 3px;
| | background-color: #f9f9f9; |
| background-color: #f8f9fa;
| | color: black; |
| color: black;
| | margin: 0 0 0.5em 1em; |
| /* @noflip */
| | padding: 0; |
| margin: 0.5em 0 0.5em 1em;
| | border-spacing: 1px; |
| padding: 0.2em;
| | float: right; |
| /* @noflip */
| | clear: right; |
| float: right;
| | width: 25em; |
| /* @noflip */
| | font-size: 85%; |
| clear: right;
| |
| font-size: 88%;
| |
| line-height: 1.5em;
| |
| width: 22em;
| |
| } | | } |
| | | .infobox td, |
| | | .infobox th { |
| /* not strictly certain these styles are necessary
| | vertical-align:top; |
| * just replicating the module faithfully
| | padding: 0.25em 0.5em; |
| */
| |
| | |
| .infobox-subbox { | |
| padding: 0;
| |
| border: none;
| |
| margin: -3px;
| |
| width: auto;
| |
| min-width: 100%;
| |
| font-size: 100%;
| |
| clear: none;
| |
| float: none;
| |
| background-color: transparent;
| |
| } | | } |
|
| |
| .infobox-header,
| |
| .infobox-label,
| |
| .infobox-above,
| |
| .infobox-full-data,
| |
| .infobox-data,
| |
| .infobox-below,
| |
| .infobox-subheader,
| |
| .infobox-image,
| |
| .infobox-navbar,
| |
|
| |
| /* Remove element declaration when both a) infobox3cols is migrated and
| |
| * b) when every .infobox thing is using the standard module/templates */
| |
|
| |
| .infobox th,
| |
| .infobox td { | | .infobox td { |
| vertical-align: top;
| | text-align: left; |
| } | | } |
| | | .infobox th { |
| .infobox-label,
| | text-align: right; |
| .infobox-data,
| | width: 8.75em; |
| | |
| /* Remove element declaration when both a) infobox3cols is migrated and
| |
| * b) when every .infobox thing is using the standard module/templates */
| |
| | |
| .infobox th, | |
| .infobox td {
| |
| /* @noflip */
| |
| text-align: left;
| |
| } | | } |
| | | .infobox th.caption, |
| | |
| /* remove .infobox when th, td above are removed */
| |
| | |
| .infobox .infobox-above,
| |
| .infobox .infobox-title,
| |
| | |
| /* Remove element declaration when both a) infobox3cols is migrated and
| |
| * b) when every .infobox thing is using the standard module/templates */
| |
| | |
| .infobox caption { | | .infobox caption { |
| font-size: 125%;
| | font-size: 150%; |
| font-weight: bold;
| | text-align: center; |
| text-align: center;
| | margin-left: inherit; |
| } | | } |
|
| |
|
| .infobox-title,
| |
|
| |
|
| /* Remove element declaration when both a) infobox3cols is migrated and
| |
| * b) when every .infobox thing is using the standard module/templates */
| |
|
| |
|
| .infobox caption { | | /* Style for "notices" */ |
| | /* Is this used on CZ? */ |
| | .notice { |
| | margin: 1em; |
| padding: 0.2em; | | padding: 0.2em; |
| } | | } |
|
| |
|
|
| |
|
| /* remove .infobox when th, td above are removed */ | | /* Makes redirects appear in italics on [[Special:Allpages]] */ |
| | | .allpagesredirect { |
| .infobox .infobox-header,
| | font-style: italic; |
| .infobox .infobox-subheader,
| |
| .infobox .infobox-image,
| |
| .infobox .infobox-full-data, | |
| .infobox .infobox-below {
| |
| text-align: center; | |
| } | | } |
|
| |
|
|
| |
|
| /* remove .infobox when th, td above are removed */ | | /* Class for links with loudspeaker icon next to them */ |
| | | .audiolink a{ |
| .infobox .infobox-navbar {
| | background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/Loudspeaker.svg/11px-Loudspeaker.svg.png") center left no-repeat !important; |
| /* @noflip */ | | padding-left: 16px !important; |
| text-align: right; | | padding-right: 0 !important; |
| } | | } |
|
| |
|
| .infobox.bordered { | | /* Icons for medialist templates [[Template:Listen]], [[Template:Multi-listen_start]], [[Template:Video]], [[Template:Multi-video_start]] */ |
| border-collapse: collapse; | | /* Are these used on CZ? */ |
| | div.listenlist { |
| | background: url("http://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png"); |
| | padding-left: 40px; |
| } | | } |
| | | div.videolist, div.multivideolist { |
| | | background: url("http://upload.wikimedia.org/wikipedia/en/thumb/2/20/Tango-video-x-generic.png/40px-Tango-video-x-generic.png"); |
| /* TODO split definitions to appropriate class names when live from HTML element */ | | padding-left: 50px; |
| | |
| .infobox.bordered td, | |
| .infobox.bordered th { | |
| border: 1px solid #a2a9b1; | |
| } | | } |
|
| |
|
| | | /* Style rules for media list templates */ |
| /* TODO split definitions to appropriate class names when live from HTML element */ | | /* Are these used on CZ? */ |
| | | div.medialist { |
| .infobox.bordered .borderless td,
| | min-height: 50px; |
| .infobox.bordered .borderless th {
| | margin: 1em; |
| border: 0; | | background-position: top left; |
| | background-repeat: no-repeat; |
| } | | } |
| | | div.medialist ul { |
| .infobox.sisterproject { | | list-style-type: none; |
| width: 20em; | | list-style-image: none; |
| font-size: 90%; | | margin: 0; |
| } | | } |
| | | div.medialist ul li { |
| | | padding-bottom: 0.5em; |
| /* styles for bordered infobox with merged rows */
| |
| | |
| | |
| /* TODO split definitions to appropriate class names when live from HTML element */
| |
| | |
| .infobox.bordered .mergedtoprow td, | |
| .infobox.bordered .mergedtoprow th {
| |
| border: 0; | |
| border-top: 1px solid #a2a9b1;
| |
| /* @noflip */
| |
| border-right: 1px solid #a2a9b1;
| |
| } | | } |
| | | div.medialist ul li li { |
| | | font-size: 91%; |
| /* TODO split definitions to appropriate class names when live from HTML element */
| | padding-bottom: 0; |
| | |
| .infobox.bordered .mergedrow td,
| |
| .infobox.bordered .mergedrow th { | |
| border: 0; | |
| /* @noflip */ | |
| border-right: 1px solid #a2a9b1;
| |
| } | | } |
|
| |
|
|
| |
|
| /* Styles for geography infoboxes, eg countries, | | /* Don't show external link icon for plainlinks */ |
| country subdivisions, cities, etc. */
| | a.plainlink, .plainlinks a, .plainlinksneverexpand a { |
| | | background: none !important; |
| .infobox.geography { | | padding: 0 !important; |
| border-collapse: collapse;
| |
| line-height: 1.2em;
| |
| font-size: 90%;
| |
| } | | } |
| | | .plainlinksneverexpand .urlexpansion { |
| | | display: none ! important; |
| /* TODO split definitions to appropriate class names when live from HTML element */
| |
| | |
| .infobox.geography td, | |
| .infobox.geography th {
| |
| border-top: 1px solid #a2a9b1;
| |
| padding: 0.4em 0.6em 0.4em 0.6em;
| |
| } | | } |
|
| |
|
| | | /*Add formatting to make sure that "external references" from [[Template:Ref]] do |
| /* TODO split definitions to appropriate class names when live from HTML element */ | | not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was |
| | | that the HTML code contained a SPAN following the anchor A; this SPAN had the class |
| .infobox.geography .mergedtoprow td, | | "urlexpansion", which was not displayed on screen, but was shown when the medium was |
| .infobox.geography .mergedtoprow th { | | "print". The rules below ensure (a) that there is no extra padding to the right of |
| border-top: 1px solid #a2a9b1;
| | the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for |
| padding: 0.4em 0.6em 0.2em 0.6em;
| | the link, and (c) that this SPAN of class "urlexpansion" is never shown. |
| | */ |
| | .plainlinksneverexpand .urlexpansion { |
| | display: none ! important; |
| } | | } |
| | | /* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion" |
| | | following the anchor A, the anchor itself now has class "external autonumber" and the |
| /* TODO split definitions to appropriate class names when live from HTML element */ | | expansion is inserted when printing (see the common printing style sheet at |
| | | http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the ":after" pseudo- |
| .infobox.geography .mergedrow td, | | element of CSS. We have to switch this off for links due to Template:Ref! |
| .infobox.geography .mergedrow th { | | */ |
| border: 0;
| | .plainlinksneverexpand a.external.text:after { |
| padding: 0 0.6em 0.2em 0.6em;
| | display: none !important; |
| } | | } |
| | | .plainlinksneverexpand a.external.autonumber:after { |
| | | display: none !important; |
| /* TODO split definitions to appropriate class names when live from HTML element */
| |
| | |
| .infobox.geography .mergedbottomrow td, | |
| .infobox.geography .mergedbottomrow th {
| |
| border-top: 0;
| |
| border-bottom: 1px solid #a2a9b1;
| |
| padding: 0 0.6em 0.4em 0.6em;
| |
| } | | } |
|
| |
|
| | | /* Put error and success messages in a colored box with large font (from MW 1.16a). |
| /* TODO split definitions to appropriate class names when live from HTML element */ | | The errors often show when forms cannot be submitted (e.g. RequestAccount). |
| | | */ |
| .infobox.geography .maptable td, | | .errorbox, .successbox { |
| .infobox.geography .maptable th { | | font-size: larger; |
| border: 0;
| | border: 2px solid; |
| padding: 0;
| | padding: .5em 1em; |
| }
| | float: left; |
| | | margin-bottom: 2em; |
| | | color: #000; |
| /* Normal font styling for wikitable row headers with scope="row" tag */
| |
| | |
| .wikitable.plainrowheaders th[scope=row] {
| |
| font-weight: normal;
| |
| /* @noflip */
| |
| text-align: left;
| |
| } | | } |
| | | .errorbox { |
| | | border-color: red; |
| /* Lists in wikitable data cells are always left-aligned */
| | background-color: #fff2f2; |
| | |
| .wikitable td ul, | |
| .wikitable td ol,
| |
| .wikitable td dl {
| |
| /* @noflip */
| |
| text-align: left;
| |
| } | | } |
| | | .successbox { |
| | | border-color: green; |
| /* ...unless they also use the hlist class */
| | background-color: #dfd; |
| | |
| .toc.hlist ul,
| |
| #toc.hlist ul,
| |
| .wikitable.hlist td ul,
| |
| .wikitable.hlist td ol,
| |
| .wikitable.hlist td dl {
| |
| text-align: inherit;
| |
| } | | } |
| | | .errorbox h2, .successbox h2 { |
| | | font-size: 1em; |
| /* Fix for hieroglyphs specificity issue in infoboxes ([[phab:T43869]]) */
| | font-weight: bold; |
| | | display: inline; |
| table.mw-hiero-table td {
| | margin: 0 .5em 0 0; |
| vertical-align: middle;
| | border: none; |
| } | | } |
|
| |
|
| |
| /* Change the external link icon to an Adobe icon for all PDF files */
| |
|
| |
| .mw-parser-output a[href$=".pdf"].external,
| |
| .mw-parser-output a[href*=".pdf?"].external,
| |
| .mw-parser-output a[href*=".pdf#"].external,
| |
| .mw-parser-output a[href$=".PDF"].external,
| |
| .mw-parser-output a[href*=".PDF?"].external,
| |
| .mw-parser-output a[href*=".PDF#"].external {
| |
| background: url("//upload.wikimedia.org/wikipedia/commons/6/6c/PDF_icon.svg") no-repeat right;
| |
| /* @noflip */
| |
| padding-right: 18px;
| |
| }
| |
|
| |
|
| |
|
| /* Messagebox templates */ | | /* Messagebox templates */ |
| | | /* Are these used on CZ? */ |
| .messagebox { | | .messagebox { |
| border: 1px solid #a2a9b1;
| | border: 1px solid #aaa; |
| background-color: var(--background-color-neutral-subtle, #f8f9fa);
| | background-color: #f9f9f9; |
| width: 80%;
| | width: 80%; |
| margin: 0 auto 1em auto;
| | margin: 0 auto 1em auto; |
| padding: .2em;
| | padding: .2em; |
| } | | } |
|
| |
| .messagebox.merge { | | .messagebox.merge { |
| border: 1px solid #c0b8cc;
| | border: 1px solid #c0b8cc; |
| background-color: #f0e5ff;
| | background-color: #f0e5ff; |
| text-align: center;
| | text-align: center; |
| } | | } |
|
| |
| .messagebox.cleanup { | | .messagebox.cleanup { |
| border: 1px solid #9f9fff;
| | border: 1px solid #9f9fff; |
| background-color: #efefff;
| | background-color: #efefff; |
| text-align: center;
| | text-align: center; |
| } | | } |
|
| |
| .messagebox.standard-talk { | | .messagebox.standard-talk { |
| border: 1px solid #c0c090;
| | border: 1px solid #c0c090; |
| background-color: #f8eaba;
| | background-color: #f8eaba; |
| margin: 4px auto;
| |
| } | | } |
|
| |
|
| | /* Put a checker background at the image description page only visible if the image has transparent background */ |
| | #file img {background: url("http://upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;} |
|
| |
|
| /* For old WikiProject banners inside banner shells. */ | | /* Support for Template:IPA, Template:Unicode and Template:Polytonic. The inherit declaration resets the font for all browsers except MSIE6. The empty comment must remain. Please copy any changes to [[Template:IPA fonts]] and [[Template:Unicode fonts]]. */ |
| | | .IPA { |
| .mbox-inside .standard-talk, | | font-family: "Chrysanthi Unicode", "Doulos SIL", Gentium, GentiumAlt, Code2000, "TITUS Cyberbit Basic", "DejaVu Sans", "Bitstream Cyberbit", "Arial Unicode MS", "Lucida Sans Unicode", "Hiragino Kaku Gothic Pro", "Matrix Unicode"; |
| .messagebox.nested-talk {
| | font-family /**/:inherit; |
| border: 1px solid #c0c090;
| |
| background-color: #f8eaba;
| |
| width: 100%;
| |
| margin: 2px 0;
| |
| padding: 2px;
| |
| } | | } |
| | | .Unicode { |
| .messagebox.small { | | font-family: Code2000, "TITUS Cyberbit Basic", "Doulos SIL", "Chrysanthi Unicode", "Bitstream Cyberbit", "Bitstream CyberBase", Thryomanes, Gentium, GentiumAlt, "Lucida Grande", "Arial Unicode MS", "Microsoft Sans Serif", "Lucida Sans Unicode"; |
| width: 238px;
| | font-family /**/:inherit; |
| font-size: 85%;
| |
| /* @noflip */
| |
| float: right;
| |
| clear: both;
| |
| /* @noflip */
| |
| margin: 0 0 1em 1em;
| |
| line-height: 1.25em;
| |
| } | | } |
| | | .latinx { |
| .messagebox.small-talk {
| | font-family: Code2000, "TITUS Cyberbit Basic", "Microsoft Sans Serif"; |
| width: 238px;
| | font-family /**/:inherit; |
| font-size: 85%;
| |
| /* @noflip */
| |
| float: right;
| |
| clear: both;
| |
| /* @noflip */
| |
| margin: 0 0 1em 1em;
| |
| line-height: 1.25em;
| |
| background-color: #f8eaba;
| |
| } | | } |
| | | .polytonic { |
| | | font-family: Athena, Gentium, "Palatino Linotype", "Arial Unicode MS", "Lucida Sans Unicode", "Lucida Grande", Code2000; |
| /* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
| | font-family /**/:inherit; |
| | |
| th.mbox-text,
| |
| td.mbox-text {
| |
| /* The message body cell(s) */
| |
| border: none;
| |
| /* @noflip */
| |
| padding: 0.25em 0.9em;
| |
| /* 0.9em left/right */
| |
| width: 100%;
| |
| /* Make all mboxes the same width regardless of text length */
| |
| } | | } |
| | | .mufi { |
| td.mbox-image {
| | font-family: Alphabetum, Cardo, LeedsUni, Junicode, "TITUS Cyberbit Basic", ALPHA-Demo; |
| /* The left image cell */
| |
| border: none;
| |
| /* @noflip */
| |
| padding: 2px 0 2px 0.9em;
| |
| /* 0.9em left, 0px right */
| |
| text-align: center;
| |
| } | | } |
|
| |
|
| td.mbox-imageright {
| | /* Remove underline from IPA links */ |
| /* The right image cell */
| | .IPA a:link, .IPA a:visited { |
| border: none;
| | text-decoration: none; |
| /* @noflip */
| |
| padding: 2px 0.9em 2px 0;
| |
| /* 0px left, 0.9em right */
| |
| text-align: center;
| |
| } | | } |
|
| |
|
| td.mbox-empty-cell {
| | /* Removes underlines from links */ |
| /* An empty narrow cell */
| | .nounderlines a { |
| border: none;
| | text-decoration: none; |
| padding: 0;
| |
| width: 1px;
| |
| } | | } |
|
| |
|
| | | /* Removes useless links from printout */ |
| /* Article message box styles */ | | @media print { |
| | | #privacy, #about, #disclaimer {display:none;} |
| table.ambox {
| |
| margin: 0 10%; | |
| /* 10% = Will not overlap with other elements */
| |
| border: 1px solid #a2a9b1;
| |
| /* @noflip */
| |
| border-left: 10px solid #36c;
| |
| /* Default "notice" blue */
| |
| background-color: #fbfbfb;
| |
| box-sizing: border-box;
| |
| } | | } |
|
| |
|
| table.ambox+table.ambox {
| | /* Is this used on CZ? */ |
| /* Single border between stacked boxes. */
| | .messagebox.small-talk { |
| margin-top: -1px;
| | width: 238px; |
| | font-size: 85%; |
| | float: right; |
| | clear: both; |
| | margin: 0 0 1em 1em; |
| | line-height: 1.25em; |
| | background: #F8EABA; |
| } | | } |
|
| |
|
| .ambox th.mbox-text,
| |
| .ambox td.mbox-text {
| |
| /* The message body cell(s) */
| |
| padding: 0.25em 0.5em;
| |
| /* 0.5em left/right */
| |
| }
| |
|
| |
|
| .ambox td.mbox-image {
| | /* Coloured watchlist numbers */ |
| /* The left image cell */
| | .mw-plusminus-pos { |
| /* @noflip */
| | color:darkgreen; |
| padding: 2px 0 2px 0.5em;
| |
| /* 0.5em left, 0px right */
| |
| } | | } |
| | | .mw-plusminus-neg { |
| .ambox td.mbox-imageright { | | color:darkred; |
| /* The right image cell */
| |
| /* @noflip */
| |
| padding: 2px 0.5em 2px 0;
| |
| /* 0px left, 0.5em right */
| |
| } | | } |
|
| |
|
| table.ambox-notice {
| | /* Is this used on CZ? */ |
| /* @noflip */
| | .dablink { |
| border-left: 10px solid #36c;
| | font-style:italic; |
| /* Blue */
| | padding-left:2em; |
| } | | } |
|
| |
|
| table.ambox-speedy {
| | /* allows us to show or hide text */ |
| /* @noflip */
| | /* Are these used on CZ? */ |
| border-left: 10px solid #b32424;
| | div.Boxmerge, |
| /* Red */
| | div.NavFrame { |
| background-color: #fee7e6;
| | margin: 0px; |
| /* Pink */
| | padding: 4px; |
| }
| | border: 1px solid #aaa; |
| | | text-align: center; |
| table.ambox-delete {
| | border-collapse: collapse; |
| /* @noflip */
| | font-size: 95%; |
| border-left: 10px solid #b32424;
| |
| /* Red */
| |
| }
| |
| | |
| table.ambox-content {
| |
| /* @noflip */
| |
| border-left: 10px solid #f28500;
| |
| /* Orange */
| |
| }
| |
| | |
| table.ambox-style {
| |
| /* @noflip */
| |
| border-left: 10px solid #fc3;
| |
| /* Yellow */
| |
| }
| |
| | |
| table.ambox-move {
| |
| /* @noflip */
| |
| border-left: 10px solid #9932cc;
| |
| /* Purple */
| |
| }
| |
| | |
| table.ambox-protection {
| |
| /* @noflip */
| |
| border-left: 10px solid #a2a9b1;
| |
| /* Gray-gold */
| |
| }
| |
| | |
| | |
| /* Image message box styles */ | |
| | |
| table.imbox {
| |
| margin: 4px 10%;
| |
| border-collapse: collapse;
| |
| border: 3px solid #36c;
| |
| /* Default "notice" blue */
| |
| background-color: var(--background-color-interactive-subtle, #fbfbfb);
| |
| box-sizing: border-box;
| |
| }
| |
| | |
| .imbox .mbox-text .imbox { | |
| /* For imboxes inside imbox-text cells. */
| |
| margin: 0 -0.5em;
| |
| /* 0.9 - 0.5 = 0.4em left/right. */
| |
| display: block;
| |
| /* Fix for webkit to force 100% width. */
| |
| }
| |
| | |
| .mbox-inside .imbox {
| |
| /* For imboxes inside other templates. */
| |
| margin: 4px;
| |
| }
| |
| | |
| table.imbox-notice {
| |
| border: 3px solid #36c;
| |
| /* Blue */
| |
| }
| |
| | |
| table.imbox-speedy {
| |
| border: 3px solid #b32424;
| |
| /* Red */
| |
| background-color: #fee7e6;
| |
| /* Pink */
| |
| }
| |
| | |
| table.imbox-delete {
| |
| border: 3px solid #b32424;
| |
| /* Red */
| |
| }
| |
| | |
| table.imbox-content {
| |
| border: 3px solid #f28500;
| |
| /* Orange */
| |
| }
| |
| | |
| table.imbox-style {
| |
| border: 3px solid #fc3;
| |
| /* Yellow */
| |
| }
| |
| | |
| table.imbox-move {
| |
| border: 3px solid #9932cc;
| |
| /* Purple */
| |
| }
| |
| | |
| table.imbox-protection {
| |
| border: 3px solid #a2a9b1;
| |
| /* Gray-gold */
| |
| }
| |
| | |
| table.imbox-license {
| |
| border: 3px solid #88a;
| |
| /* Dark gray */
| |
| background-color: var(--background-color-interactive-subtle, #f7f8ff);
| |
| /* Light gray */
| |
| }
| |
| | |
| table.imbox-featured {
| |
| border: 3px solid #cba135;
| |
| /* Brown-gold */
| |
| }
| |
| | |
| | |
| /* Category message box styles */
| |
| | |
| table.cmbox {
| |
| margin: 3px 10%;
| |
| border-collapse: collapse;
| |
| border: 1px solid #a2a9b1;
| |
| background-color: var(--background-color-progressive-subtle--hover, #dfe8ff);
| |
| /* Default "notice" blue */
| |
| box-sizing: border-box;
| |
| }
| |
| | |
| table.cmbox-notice {
| |
| background-color: var(--background-color-progressive-subtle--hover, #dfe8ff);
| |
| /* Blue */
| |
| }
| |
| | |
| table.cmbox-speedy {
| |
| margin-top: 4px;
| |
| margin-bottom: 4px;
| |
| border: 4px solid #b32424;
| |
| /* Red */
| |
| background-color: var(--background-color-error-subtle--hover, #ffdbdb);
| |
| /* Pink */
| |
| }
| |
| | |
| table.cmbox-delete {
| |
| background-color: var(--background-color-error-subtle--hover, #ffdbdb);
| |
| /* Pink */
| |
| } | | } |
| | | div.Boxmerge div.NavFrame { |
| table.cmbox-content {
| | border-style: none; |
| background-color: #ffe7ce;
| | border-style: hidden; |
| /* Orange */
| |
| } | | } |
| | | div.NavFrame + div.NavFrame { |
| table.cmbox-style {
| | border-top-style: none; |
| background-color: #fff9db;
| | border-top-style: hidden; |
| /* Yellow */
| |
| } | | } |
| | | div.NavPic { |
| table.cmbox-move {
| | background-color: #fff; |
| background-color: #e4d8ff;
| | margin: 0px; |
| /* Purple */
| | padding: 2px; |
| | float: left; |
| } | | } |
|
| |
| table.cmbox-protection {
| |
| background-color: #efefe1;
| |
| /* Gray-gold */
| |
| }
| |
|
| |
|
| |
| /* Other pages message box styles */
| |
|
| |
| table.ombox {
| |
| margin: 4px 10%;
| |
| border-collapse: collapse;
| |
| border: 1px solid #a2a9b1;
| |
| /* Default "notice" gray */
| |
| background-color: var(--background-color-neutral-subtle, #f8f9fa);
| |
| box-sizing: border-box;
| |
| }
| |
|
| |
| table.ombox-notice {
| |
| border: 1px solid #a2a9b1;
| |
| /* Gray */
| |
| }
| |
|
| |
| table.ombox-speedy {
| |
| border: 2px solid #b32424;
| |
| /* Red */
| |
| background-color: #fee7e6;
| |
| /* Pink */
| |
| }
| |
|
| |
| table.ombox-delete {
| |
| border: 2px solid #b32424;
| |
| /* Red */
| |
| }
| |
|
| |
| table.ombox-content {
| |
| border: 1px solid #f28500;
| |
| /* Orange */
| |
| }
| |
|
| |
| table.ombox-style {
| |
| border: 1px solid #fc3;
| |
| /* Yellow */
| |
| }
| |
|
| |
| table.ombox-move {
| |
| border: 1px solid #9932cc;
| |
| /* Purple */
| |
| }
| |
|
| |
| table.ombox-protection {
| |
| border: 2px solid #a2a9b1;
| |
| /* Gray-gold */
| |
| }
| |
|
| |
|
| |
| /* Talk page message box styles */
| |
|
| |
| table.tmbox {
| |
| margin: 4px 10%;
| |
| border-collapse: collapse;
| |
| border: 1px solid #c0c090;
| |
| /* Default "notice" gray-brown */
| |
| background-color: #f8eaba;
| |
| min-width: 80%;
| |
| box-sizing: border-box;
| |
| }
| |
|
| |
| .tmbox.mbox-small {
| |
| min-width: 0;
| |
| /* reset the min-width of tmbox above */
| |
| }
| |
|
| |
| .mediawiki .mbox-inside .tmbox {
| |
| /* For tmboxes inside other templates. The "mediawiki" class ensures that */
| |
| margin: 2px 0;
| |
| /* this declaration overrides other styles (including mbox-small above) */
| |
| width: 100%;
| |
| /* For Safari and Opera */
| |
| }
| |
|
| |
| .mbox-inside .tmbox.mbox-small {
| |
| /* "small" tmboxes should not be small when */
| |
| line-height: 1.5em;
| |
| /* also "nested", so reset styles that are */
| |
| font-size: 100%;
| |
| /* set in "mbox-small" above. */
| |
| }
| |
|
| |
| table.tmbox-speedy {
| |
| border: 2px solid #b32424;
| |
| /* Red */
| |
| background-color: #fee7e6;
| |
| /* Pink */
| |
| }
| |
|
| |
| table.tmbox-delete {
| |
| border: 2px solid #b32424;
| |
| /* Red */
| |
| }
| |
|
| |
| table.tmbox-content {
| |
| border: 2px solid #f28500;
| |
| /* Orange */
| |
| }
| |
|
| |
| table.tmbox-style {
| |
| border: 2px solid #fc3;
| |
| /* Yellow */
| |
| }
| |
|
| |
| table.tmbox-move {
| |
| border: 2px solid #9932cc;
| |
| /* Purple */
| |
| }
| |
|
| |
| table.tmbox-protection,
| |
| table.tmbox-notice {
| |
| border: 1px solid #c0c090;
| |
| /* Gray-brown */
| |
| }
| |
|
| |
|
| |
| /* Footer and header message box styles */
| |
|
| |
| table.fmbox {
| |
| clear: both;
| |
| margin: 0.2em 0;
| |
| width: 100%;
| |
| border: 1px solid #a2a9b1;
| |
| background-color: var(--background-color-neutral-subtle, #f8f9fa);
| |
| /* Default "system" gray */
| |
| box-sizing: border-box;
| |
| }
| |
|
| |
| table.fmbox-system {
| |
| background-color: var(--background-color-neutral-subtle, #f8f9fa);
| |
| }
| |
|
| |
| table.fmbox-warning {
| |
| border: 1px solid #bb7070;
| |
| /* Dark pink */
| |
| background-color: var(--background-color-destructive-subtle--hover, #ffdbdb);
| |
| /* Pink */
| |
| }
| |
|
| |
| table.fmbox-editnotice {
| |
| background-color: transparent;
| |
| }
| |
|
| |
|
| |
| /* Div based "warning" style fmbox messages. */
| |
|
| |
| .mw-warning-with-logexcerpt,
| |
| .mw-lag-warn-high,
| |
| .mw-cascadeprotectedwarning,
| |
| .div.titleblacklist-warning,
| |
| .locked-warning,
| |
| #mw-protect-cascadeon
| |
| {
| |
| clear: both;
| |
| margin: 0.2em 0;
| |
| border: 1px solid #bb7070;
| |
| background-color: var(--background-color-error-subtle, #ffdbdb);
| |
| padding: 0.25em 0.9em;
| |
| box-sizing: border-box;
| |
| }
| |
|
| |
|
| |
| /* These mbox-small classes must be placed after all other
| |
| ambox/tmbox/ombox etc classes. "html body.mediawiki" is so
| |
| they override "table.ambox + table.ambox" above. */
| |
|
| |
| html body.mediawiki .mbox-small {
| |
| /* For the "small=yes" option. */
| |
| /* @noflip */
| |
| clear: right;
| |
| /* @noflip */
| |
| float: right;
| |
| /* @noflip */
| |
| margin: 4px 0 4px 1em;
| |
| box-sizing: border-box;
| |
| width: 238px;
| |
| font-size: 88%;
| |
| line-height: 1.25em;
| |
| }
| |
|
| |
| html body.mediawiki .mbox-small-left {
| |
| /* For the "small=left" option. */
| |
| /* @noflip */
| |
| margin: 4px 1em 4px 0;
| |
| box-sizing: border-box;
| |
| overflow: hidden;
| |
| width: 238px;
| |
| border-collapse: collapse;
| |
| font-size: 88%;
| |
| line-height: 1.25em;
| |
| }
| |
|
| |
|
| |
| /* Style for compact ambox */
| |
|
| |
|
| |
| /* Hide the images */
| |
|
| |
| .compact-ambox table .mbox-image,
| |
| .compact-ambox table .mbox-imageright,
| |
| .compact-ambox table .mbox-empty-cell {
| |
| display: none;
| |
| }
| |
|
| |
|
| |
| /* Remove borders, backgrounds, padding, etc. */
| |
|
| |
| .compact-ambox table.ambox {
| |
| border: none;
| |
| border-collapse: collapse;
| |
| background-color: transparent;
| |
| margin: 0 0 0 1.6em !important;
| |
| padding: 0 !important;
| |
| width: auto;
| |
| display: block;
| |
| }
| |
|
| |
| body.mediawiki .compact-ambox table.mbox-small-left {
| |
| font-size: 100%;
| |
| width: auto;
| |
| margin: 0;
| |
| }
| |
|
| |
|
| |
| /* Style the text cell as a list item and remove its padding */
| |
|
| |
| .compact-ambox table .mbox-text {
| |
| padding: 0 !important;
| |
| margin: 0 !important;
| |
| }
| |
|
| |
| .compact-ambox table .mbox-text-span {
| |
| display: list-item;
| |
| line-height: 1.5em;
| |
| list-style-type: square;
| |
| list-style-image: url(/w/skins/MonoBook/resources/images/bullet.svg);
| |
| }
| |
|
| |
|
| |
| /* Allow for hiding text in compact form */
| |
|
| |
| .compact-ambox .hide-when-compact {
| |
| display: none;
| |
| }
| |
|
| |
|
| |
| /* Remove underlines from certain links */
| |
|
| |
| .nounderlines a,
| |
| .IPA a:link,
| |
| .IPA a:visited {
| |
| text-decoration: none !important;
| |
| }
| |
|
| |
|
| |
| /* [[Wikipedia:NavFrame]].
| |
| Entirely deprecated. Slated for removal.
| |
| Use mw-collapsible. */
| |
|
| |
| div.NavFrame {
| |
| padding: 4px;
| |
| border: 1px solid #a2a9b1;
| |
| text-align: center;
| |
| font-size: 95%;
| |
| }
| |
|
| |
| div.NavFrame+div.NavFrame {
| |
| border-top-style: none;
| |
| border-top-style: hidden;
| |
| }
| |
|
| |
| div.NavFrame div.NavHead { | | div.NavFrame div.NavHead { |
| line-height: 1.6em;
| | height: 1.6em; |
| font-weight: bold;
| | font-weight: bold; |
| background-color: #ccf;
| | background-color: #ccf; |
| position: relative;
| | position:relative; |
| } | | } |
| | | div.NavFrame p { font-size: 100%; } |
| div.NavFrame p, | | div.NavFrame div.NavContent { font-size: 100%; } |
| div.NavFrame div.NavContent, | | div.NavFrame div.NavContent p { font-size: 100%; } |
| div.NavFrame div.NavContent p { | | div.NavEnd { |
| font-size: 100%;
| | margin: 0px; |
| | padding: 0px; |
| | line-height: 1px; |
| | clear: both; |
| } | | } |
|
| |
| a.NavToggle { | | a.NavToggle { |
| position: absolute;
| | position:absolute; |
| top: 0;
| | top: 0px; |
| /* @noflip */
| | right: 3px; |
| right: 3px;
| | font-weight:normal; |
| font-weight: normal;
| | font-size:smaller; |
| font-size: 90%;
| |
| }
| |
| | |
| | |
| /* Hatnotes and disambiguation notices */
| |
| | |
| .hatnote {
| |
| font-style: italic;
| |
| }
| |
| | |
| .hatnote i {
| |
| font-style: normal;
| |
| }
| |
| | |
| div.hatnote {
| |
| /* @noflip */
| |
| padding-left: 1.6em;
| |
| margin-bottom: 0.5em;
| |
| }
| |
| | |
| div.hatnote+div.hatnote {
| |
| margin-top: -0.5em;
| |
| }
| |
| | |
| | |
| /* Prevent line breaks in silly places where desired (nowrap)
| |
| and links when we don't want them to (nowraplinks a) */
| |
| | |
| .nowrap,
| |
| .nowraplinks a {
| |
| white-space: nowrap;
| |
| }
| |
| | |
| | |
| /* But allow wrapping where desired: */
| |
| | |
| .wrap,
| |
| .wraplinks a {
| |
| white-space: normal;
| |
| }
| |
| | |
| | |
| /* Increase the height of the image upload box */
| |
| | |
| #wpUploadDescription {
| |
| height: 13em;
| |
| }
| |
| | |
| | |
| /* Minimum thumb width */
| |
| | |
| figure[typeof~='mw:File/Thumb'],
| |
| figure[typeof~='mw:File/Frame'],
| |
| | |
| .thumbinner {
| |
| min-width: 100px;
| |
| }
| |
| | |
| | |
| /* Prevent floating boxes from overlapping any category listings,
| |
| file histories, edit previews, and edit [Show changes] views. */
| |
| | |
| #mw-subcategories,
| |
| #mw-pages,
| |
| #mw-category-media,
| |
| #filehistory,
| |
| #wikiPreview,
| |
| #wikiDiff {
| |
| clear: both;
| |
| }
| |
| | |
| | |
| /* Selectively hide headers in WikiProject banners */
| |
| | |
| | |
| /* TemplateStyles */
| |
| | |
| .wpb .wpb-header {
| |
| display: none;
| |
| }
| |
| | |
| .wpbs-inner .wpb .wpb-header {
| |
| display: table-row;
| |
| }
| |
| | |
| .wpbs-inner .wpb-outside {
| |
| display: none;
| |
| /* hide things that should only display outside shells */
| |
| }
| |
| | |
| | |
| /* Styling for Abuse Filter tags */
| |
| | |
| .mw-tag-markers {
| |
| font-style: italic;
| |
| font-size: 90%;
| |
| } | | } |
|
| |
|
| | | /* Used on {{tl|userplan-all}} and perhaps other user pages (Larry Sanger added these) */ |
| /* Hide stuff meant for accounts with special permissions. Made visible again in | | table.UserComponent { |
| [[MediaWiki:Group-checkuser.css]], [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-patroller.css]], | | width:100%; |
| [[MediaWiki:Group-templateeditor.css]], [[MediaWiki:Group-extendedmover.css]], | | cellpadding:0px; |
| [[MediaWiki:Group-extendedconfirmed.css]], and [[Mediawiki:Group-autoconfirmed.css]]. */ | | cellspacing:0px; |
| | |
| .checkuser-show,
| |
| .sysop-show,
| |
| .patroller-show,
| |
| .templateeditor-show,
| |
| .extendedmover-show,
| |
| .extendedconfirmed-show,
| |
| .autoconfirmed-show,
| |
| .user-show {
| |
| display: none;
| |
| } | | } |
| | | tr.UserTableHeader { |
| | | color:darkblue; |
| /* Hide the redlink generated by {{Editnotice}},
| | background:beige; |
| this overrides the ".sysop-show { display: none; }" above that applies | |
| to the same link as well. See [[phab:T45013]]
| |
| | |
| Hide the images in editnotices to keep them readable in VE view. | |
| Long term, editnotices should become a core feature so that they can be designed responsive. */
| |
| | |
| .ve-ui-mwNoticesPopupTool-item .editnotice-redlink,
| |
| .ve-ui-mwNoticesPopupTool-item .mbox-image,
| |
| .ve-ui-mwNoticesPopupTool-item .mbox-imageright {
| |
| display: none !important;
| |
| } | | } |
|
| |
|
| | a:link.white {color:white} |
| | a:visited.white {color:white} |
| | a:hover.white {color:white} |
| | a:active.white {color:white} |
|
| |
|
| /* Remove bullets when there are multiple edit page warnings */
| |
|
| |
|
| ul.permissions-errors>li {
| |
| list-style: none none;
| |
| }
| |
|
| |
|
| ul.permissions-errors {
| |
| margin: 0;
| |
| }
| |
|
| |
|
|
| |
|
| /* texhtml class for inline math (based on generic times-serif class) */ | | /* Upload Wizard */ |
|
| |
|
| span.texhtml {
| | table.wizard { |
| font-family: "Nimbus Roman No9 L", "Times New Roman", Times, serif;
| | width: 100%; |
| font-size: 118%;
| | margin: 0; |
| line-height: 1;
| | padding: 0; |
| white-space: nowrap;
| | border-spacing: 0; |
| /* Force tabular and lining display for texhtml */
| | text-align: center; |
| -moz-font-feature-settings: "lnum", "tnum", "kern" 0;
| | vertical-align: middle; |
| -webkit-font-feature-settings: "lnum", "tnum", "kern" 0;
| | -moz-border-radius: 10px; |
| font-feature-settings: "lnum", "tnum", "kern" 0;
| | -webkit-border-radius: 10px; |
| font-variant-numeric: lining-nums tabular-nums;
| | -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 3px; |
| font-kerning: none;
| | -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 1px 3px; |
| } | | } |
|
| |
|
| span.texhtml span.texhtml {
| | td.wizard-tab { |
| font-size: 100%;
| | background: #e5e5e5; |
| | background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd)); |
| | padding: 0; |
| | border: 1px solid #ccc; |
| | border-left-width: 0; |
| | border-bottom-color: #aaa; |
| } | | } |
| | | td.wizard-tab p { |
| span.mwe-math-mathml-inline {
| | margin: 0 !important; |
| font-size: 118%;
| | padding: 0; |
| } | | } |
| | | td.wizard-tab a, #bodyContent td.wizard-tab .plainlinks a { |
| | | display: block; |
| /* Make <math display="block"> be left aligned with one space indent for
| | padding: 0.5em !important; |
| * compatibility with style conventions
| | border:solid #ccc; |
| */
| | border-width:0 0 1px; |
| | | color: #444 !important; |
| .mwe-math-fallback-image-display, | | text-decoration: none; |
| .mwe-math-mathml-display { | |
| margin-left: 1.6em !important;
| |
| margin-top: 0.6em;
| |
| margin-bottom: 0.6em;
| |
| } | | } |
|
| |
|
| .mwe-math-mathml-display math { | | td.wizard-tab:hover { |
| display: inline;
| | background: #e9e9e9; |
| | background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#e3e3e3)); |
| } | | } |
| | | td.wizard-tab:hover a { |
| | | color: #000 !important; |
| /* Force imgs in galleries to have borders by wrapping them in class=bordered-images */
| | border-color: #d7d7d7; |
| | |
| .bordered-images img { | |
| border: solid #ddd 1px;
| |
| } | | } |
|
| |
|
| @media screen {
| | td.wizard-tab.first { |
| /* Put a chequered background behind images, only visible if they have transparency.
| | border-left-width: 1px !important; |
| '.filehistory a img' and '#file img:hover' are handled by MediaWiki core (as of 1.19) */
| | -moz-border-radius-topleft: 8px; |
| .gallerybox .thumb img {
| | -webkit-border-top-left-radius: 8px; |
| background: #fff url(//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png) repeat;
| |
| }
| |
| /* But not on articles, user pages, portals or with opt-out. */
| |
| .ns-0 .gallerybox .thumb img,
| |
| .ns-2 .gallerybox .thumb img,
| |
| .ns-100 .gallerybox .thumb img,
| |
| .nochecker .gallerybox .thumb img {
| |
| background-image: none;
| |
| }
| |
| /* Display "From Wikipedia, the free encyclopedia" in skins that support it,
| |
| do not apply to print mode */
| |
| #siteSub {
| |
| display: block;
| |
| }
| |
| } | | } |
| | | td.wizard-tab.last { |
| | | border-right-width: 1px !important; |
| /* Hide FlaggedRevs notice UI when there are no pending changes */
| | -moz-border-radius-topright: 8px; |
| | | -webkit-border-top-right-radius: 8px; |
| .flaggedrevs_draft_synced, | |
| .flaggedrevs_stable_synced, | |
| | |
| /* "Temporary" to remove links in sidebar T255381 */
| |
| | |
| #t-upload {
| |
| display: none;
| |
| } | | } |
|
| |
|
| | | td.wizard-tab.selected { |
| /* Extension:DismissableSiteNotice eklentisinin site notunu ikiye bölmesi ve sağda büyük alan kaplaması nedeniyle dismissable etiketleri düzenlenmiştir */
| | background: #eee; |
| | | background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#eee)); |
| .mw-dismissable-notice-body {
| | border-width: 1px 0; |
| margin: 0px 0px 0px 0px !important;
| | border-color: #aaa #aaa #ddd; |
| | border-bottom-style: dotted; |
| } | | } |
| | | td.wizard-tab.selected a { |
| .mw-dismissable-notice-close { | | border: 0px none; |
| position: absolute !important;
| | color: #000; |
| right: 10px !important;
| |
| margin-top: 10px !important;
| |
| z-index: 1;
| |
| } | | } |
|
| |
|
| | | td.wizard-tab.unselected a { |
| /* Televizyon Portali görünümü için ayarlar -> [[Özel:KalıcıBağ/18295490#Css_kodlar.C4.B1]] */
| | color: #777; |
| | |
| .round_page {
| |
| border-style: solid;
| |
| border-width: 1px;
| |
| border-right-width: 0;
| |
| font-size: 15px;
| |
| display: inline-block;
| |
| padding: 10px;
| |
| } | | } |
|
| |
|
| .round_page:first-child { | | td.wizard-tab.unselected:hover a { |
| border-top-left-radius: 10px;
| | color: #555; |
| border-bottom-left-radius: 10px;
| |
| } | | } |
|
| |
|
| .round_page:last-child { | | td.wizard-tab.unselected.before { |
| border-top-right-radius: 10px;
| | border-color: #ccc #aaa #aaa #ccc; |
| border-bottom-right-radius: 10px;
| | -moz-border-radius-bottomright: 4px; |
| border-right-width: 1px;
| | -webkit-border-bottom-right-radius: 4px; |
| } | | } |
| | | td.wizard-tab.unselected.before a { |
| @media screen and (max-width: 800px) {
| | border-width:0 1px 1px 0; |
| .round_page {
| | -moz-border-radius-bottomright: 3px; |
| display: block;
| | -webkit-border-bottom-right-radius:3px; |
| border-width: 1px;
| |
| border-bottom-width: 0;
| |
| }
| |
| .round_page:first-child {
| |
| border-bottom-left-radius: 0;
| |
| border-top-left-radius: 10px;
| |
| border-top-right-radius: 10px;
| |
| }
| |
| .round_page:last-child {
| |
| border-top-right-radius: 0;
| |
| border-bottom-left-radius: 10px;
| |
| border-bottom-right-radius: 10px;
| |
| border-bottom-width: 1px;
| |
| }
| |
| } | | } |
|
| |
|
| .two-column { | | td.wizard-tab.unselected.after { |
| width: 50%;
| | border-color: #ccc #ccc #aaa #aaa; |
| display: table-cell;
| | border-left-width: 1px; |
| | -moz-border-radius-bottomleft: 4px; |
| | -webkit-border-bottom-left-radius: 4px; |
| } | | } |
| | | td.wizard-tab.unselected.after a { |
| .contin { | | border-width:0 0 1px 1px; |
| display: none;
| | -moz-border-radius-bottomleft: 3px; |
| | -webkit-border-bottom-left-radius:3px; |
| } | | } |
|
| |
|
| .mobile_margin {
| |
| display: table;
| |
| }
| |
|
| |
|
| @media screen and (max-width: 1000px) {
| | td.wizard-opt { |
| .two-column {
| | width: 100%; |
| display: block;
| | padding: 0; |
| width: 100%;
| | background: #e5e5e5; |
| }
| | background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd)); |
| .contin {
| | border: 1px solid #ccc; |
| display: block;
| | -moz-border-radius: 4px; |
| }
| | -webkit-border-radius: 4px; |
| .mobile_margin {
| | -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px; |
| padding: 0 15px;
| | -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px; |
| display: block;
| |
| }
| |
| } | | } |
| | | td.wizard-opt:hover { |
| #mw-subcategories, | | background: #e9e9e9; |
| #mw-pages, | | background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#e3e3e3)); |
| #mw-category-media, | | border-color: #d5d5d5; |
| #filehistory,
| | -moz-box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px; |
| #wikiPreview,
| | -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px; |
| #wikiDiff {
| |
| clear: both;
| |
| } | | } |
| | | td.wizard-opt p { |
| .fbadge { | | padding: 0; |
| list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAANCAIAAAD0YtNRAAAABnRSTlMA/AD+APzoM1ogAAAAWklEQVR4AWP48+8PLkR7uUdzcMvtU8EhdykHKAciEXL3pvw5FQIURaBDJkARoDhY3zEXiCgCHbNBmAlUiyaBkENoxZSDWnOtBmoAQu7TnT+3WuDOA7KBIkAGAGwiNeqjusp/AAAAAElFTkSuQmCC);
| | margin: 0 !important; |
| } | | } |
| | | td.wizard-opt a { |
| .gbadge {
| | color: #333 !important; |
| list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAANCAIAAAD0YtNRAAAABnRSTlMAAAAAAABupgeRAAAAVklEQVR4AWIYSFBfX49TDtDWNBgAEMPAgZ+1B8jWtd0kp/u+z4AQImDh7SPnHCHkHtb7vmES5hFGCN3zQgh1deAegVW6YjlGa50NOgAAxpjWhjpMQuEBjxA1QR08A1oAAAAASUVORK5CYII=);
| | text-decoration: none; |
| }
| |
| | |
| | |
| /* Ana sayfa altındaki kutu için */
| |
| | |
| | |
| /* Nou esquema de colors per a la Plantilla:Metacaixa usada a la portada */
| |
| | |
| | |
| /* Configuració per defecte en lila
| |
| Tons usats; 1; 7050a0 2; 9070c0 3; b090e0 4; d0b0ff 5; f0d0ff */
| |
| | |
| .mcBoto {
| |
| background-color: #d0b0ff;
| |
| /* 4 */
| |
| border: 0.15em solid #000000;
| |
| border-color: #f0d0ff #b090e0 #9070c0 #f0d0ff;
| |
| /* 5 3 3 5 */
| |
| border-radius-topleft: .5em;
| |
| border-radius-topright: .5em;
| |
| -moz-border-radius: .5em .5em 0em 0em;
| |
| cursor: pointer;
| |
| display: inline;
| |
| margin-right: 0.1em;
| |
| padding: 0.2em 0.3em 0.2em 0.3em;
| |
| position: relative;
| |
| }
| |
| | |
| .mcBoto a, | |
| .mcBoto strong {
| |
| background: none !important;
| |
| color: #7050a0 !important;
| |
| /* 1 */
| |
| font-size: 90%;
| |
| font-weight: bold;
| |
| padding: 0 !important;
| |
| text-decoration: none !important;
| |
| }
| |
| | |
| .mcBoto a:hover,
| |
| .mcBoto strong:hover {
| |
| color: black !important;
| |
| text-decoration: underline !important;
| |
| }
| |
| | |
| .mcBotoSel {
| |
| background-color: #9070c0;
| |
| /* 2 */
| |
| border: 0.15em solid #000000;
| |
| border-color: #b090e0 #7050a0 #9070c0 #b090e0;
| |
| /* 3 1 2 3 */
| |
| border-radius-topleft: .5em;
| |
| border-radius-topright: .5em;
| |
| -moz-border-radius: .5em .5em 0em 0em;
| |
| cursor: default;
| |
| display: inline;
| |
| margin-right: 0.1em;
| |
| padding: 0.2em 0.3em 0.2em 0.3em;
| |
| position: relative;
| |
| color: white;
| |
| }
| |
| | |
| .mcBotoSel a {
| |
| background: none !important;
| |
| color: white !important;
| |
| cursor: default;
| |
| font-size: 90%;
| |
| font-weight: bold;
| |
| padding: 0 !important;
| |
| text-decoration: none !important;
| |
| }
| |
| | |
| .mcContingut {
| |
| background-color: #f8f8ff;
| |
| border: 0.2em solid #9070c0;
| |
| /* 2 */
| |
| border-color: #9070c0 #7050a0 #7050a0 #9070c0;
| |
| /* 2 1 1 2 */
| |
| -moz-border-radius: 0em .5em .5em 0em;
| |
| border-radius-topright: .5em;
| |
| border-radius-bottomright: .5em;
| |
| padding: 1em;
| |
| position: static;
| |
| /* Si hi posem relative falla amb MSIE */
| |
| } | | } |
| | | td.wizard-opt a span { |
| .mcPestanya { | | display: block; |
| background-color: #f8f8ff;
| | padding: 0.5em 0.75em !important; |
| border-color: #7050a0 #b090e0 #b090e0 #7050a0;
| |
| /* 1 3 3 1 */
| |
| width: 100%;
| |
| } | | } |
| | | td.wizard-opt:hover a { |
| | | color: #000 !important; |
| /* Configuració del Verd 1;60b030 2;75c045 3;90d060 4;a5e085 5;c0f090 */
| |
| | |
| .mcVerd .mcBoto { | |
| background-color: #a5e085;
| |
| /* 4 */
| |
| border-color: #c0f090 #90d060 #75c045 #c0f090;
| |
| /* 5 3 2 5 */
| |
| } | | } |
|
| |
|
| .mcVerd .mcBoto a,
| | /* END Upload Wizard */ |
| .mcVerd .mcBoto strong {
| |
| color: #60b030 !important;
| |
| /* 1 */
| |
| font-size: 90%
| |
| }
| |
| | |
| .mcVerd .mcBoto a:hover,
| |
| .mcVerd .mcBoto strong:hover {
| |
| color: black !important;
| |
| text-decoration: underline;
| |
| }
| |
| | |
| .mcVerd .mcBotoSel {
| |
| background-color: #75c045;
| |
| /* 2 */
| |
| border-color: #90d060 #60b030 #75c045 #90d060;
| |
| /* 3 1 2 3 */
| |
| }
| |
| | |
| .mcVerd .mcContingut {
| |
| background-color: #f5fffa;
| |
| border-color: #75c045 #60b030 #60b030 #75c045;
| |
| /* 2 1 1 2 */
| |
| }
| |
| | |
| .mcVerd .mcPestanya {
| |
| background-color: #f5fffa;
| |
| border-color: #60b030 #90d060 #90d060 #60b030;
| |
| /* 1 3 3 1 */
| |
| }
| |
| | |
| | |
| /* Configuració del Vermell 1;CC0000 2;FF0000 3;FF8888 4;FFAAAA 5;FFCCCC */
| |
| | |
| .mcVermell .mcBoto {
| |
| background-color: #FFAAAA;
| |
| /* 4 */
| |
| border-color: #FFCCCC #FF8888 #FF0000 #FFCCCC;
| |
| /* 5 3 2 5 */
| |
| }
| |
| | |
| .mcVermell .mcBoto a,
| |
| .mcVermell .mcBoto strong {
| |
| color: #CC0000 !important;
| |
| /* 1 */
| |
| font-size: 90%
| |
| }
| |
| | |
| .mcVermell .mcBoto a:hover .mcVermell .mcBoto strong:hover {
| |
| color: black !important;
| |
| text-decoration: underline;
| |
| }
| |
| | |
| .mcVermell .mcBotoSel {
| |
| background-color: #FF0000;
| |
| /* 2 */
| |
| border-color: #FF8888 #CC0000 #FF0000 #FF8888;
| |
| /* 3 1 2 3 */
| |
| }
| |
| | |
| .mcVermell .mcContingut {
| |
| background-color: #fffafa;
| |
| border-color: #FF0000 #CC0000 #CC0000 #FF0000;
| |
| /* 2 1 1 2 */
| |
| }
| |
| | |
| .mcVermell .mcPestanya {
| |
| background-color: #fffafa;
| |
| border-color: #CC0000 #FF0000 #FF0000 #CC0000;
| |
| /* 1 3 3 1 */
| |
| }
| |
| | |
| | |
| /* Configuració del Blau 1;3379de 2;5b8dd6 3;88abde 4;a7c1e6 5;c8d6e9 */
| |
| | |
| .mcBlau .mcBoto {
| |
| background-color: #a7c1e6;
| |
| /* 4 */
| |
| border-color: #c8d6e9 #88abde #5b8dd6 #c8d6e9;
| |
| /* 5 3 2 5 */
| |
| }
| |
| | |
| .mcBlau .mcBoto a,
| |
| .mcBlau .mcBoto strong {
| |
| color: #3379de !important;
| |
| /* 1 */
| |
| font-size: 90%
| |
| }
| |
| | |
| .mcBlau .mcBoto a:hover .mcBlau .mcBoto strong:hover {
| |
| color: black !important;
| |
| text-decoration: underline;
| |
| }
| |
| | |
| .mcBlau .mcBotoSel {
| |
| background-color: #5b8dd6;
| |
| /* 2 */
| |
| border-color: #88abde #3379de #5b8dd6 #88abde;
| |
| /* 3 1 2 3 */
| |
| }
| |
| | |
| .mcBlau .mcContingut {
| |
| background-color: #f0f8ff;
| |
| border-color: #5b8dd6 #3379de #3379de #5b8dd6;
| |
| /* 2 1 1 2 */
| |
| }
| |
| | |
| .mcBlau .mcPestanya {
| |
| background-color: #f0f8ff;
| |
| border-color: #3379de #88abde #88abde #3379de;
| |
| /* 1 3 3 1 */
| |
| }
| |
| | |
| | |
| /* Configuració del Groc 1;ffd813 2;ffe147 3;ffe977 4;fff1a4 5;fef4bc */
| |
| | |
| .mcGroc .mcBoto {
| |
| background-color: #fff1a4;
| |
| /* 4 */
| |
| border-color: #fef4bc #ffe977 #ffe147 #fef4bc;
| |
| /* 5 3 2 5 */
| |
| }
| |
| | |
| .mcGroc .mcBoto a,
| |
| .mcGroc .mcBoto strong {
| |
| color: #ffd813 !important;
| |
| /* 1 */
| |
| font-size: 90%
| |
| }
| |
| | |
| .mcGroc .mcBoto a:hover .mcGroc .mcBoto strong:hover {
| |
| color: black !important;
| |
| text-decoration: underline;
| |
| }
| |
| | |
| .mcGroc .mcBotoSel {
| |
| background-color: #ffe147;
| |
| /* 2 */
| |
| border-color: #ffe977 #ffd813 #ffe147 #ffe977;
| |
| /* 3 1 2 3 */
| |
| }
| |
| | |
| .mcGroc .mcContingut {
| |
| background-color: #fffce8;
| |
| border-color: #ffe147 #ffd813 #ffd813 #ffe147;
| |
| /* 2 1 1 2 */
| |
| }
| |
| | |
| .mcGroc .mcPestanya {
| |
| background-color: #fffce8;
| |
| border-color: #ffd813 #88abde #88abde #ffd813;
| |
| /* 1 3 3 1 */
| |
| }
| |
| | |
| | |
| /* Configuració del Taronja 1;ff820e 2;ff9d42 3;ffac5d 4;ffbd7f 5;ffd0a4 6;ffeedd */
| |
| | |
| .mcTaronja .mcBoto {
| |
| background-color: #ffbd7f;
| |
| /* 4 */
| |
| border-color: #ffd0a4 #ffac5d #ff9d42 #ffd0a4;
| |
| /* 5 3 2 5 */
| |
| }
| |
| | |
| .mcTaronja .mcBoto a,
| |
| .mcTaronja .mcBoto strong {
| |
| color: #ff820e !important;
| |
| /* 1 */
| |
| font-size: 90%
| |
| }
| |
| | |
| .mcTaronja .mcBoto a:hover .mcTaronja .mcBoto strong:hover {
| |
| color: black !important;
| |
| text-decoration: underline;
| |
| }
| |
| | |
| .mcTaronja .mcBotoSel {
| |
| background-color: #ff9d42;
| |
| /* 2 */
| |
| border-color: #ffac5d #ff820e #ff9d42 #ffac5d;
| |
| /* 3 1 2 3 */
| |
| }
| |
| | |
| .mcTaronja .mcContingut {
| |
| background-color: #ffeedd;
| |
| /* 6 */
| |
| border-color: #ff9d42 #ff820e #ff820e #ff9d42;
| |
| /* 2 1 1 2 */
| |
| }
| |
| | |
| .mcTaronja .mcPestanya {
| |
| background-color: #ffeedd;
| |
| /* 6 */
| |
| border-color: #ff820e #ffac5d #ffac5d #ff820e;
| |
| /* 1 3 3 1 */
| |
| }
| |
| | |
| | |
| /* Final d'estils de la Metacaixa */
| |
| | |
| .globegris {
| |
| background-image: url("//upload.wikimedia.org/wikipedia/commons/1/10/Wikipedia-logo-v2-200px-transparent.png")
| |
| }
| |
| | |
| #p-logo {
| |
| width: 155px;
| |
| }
| |
| | |
| | |
| /* Don't over-ride the proper logo; use the more efficient one which is faster and better for readers
| |
| #p-logo a, #p-logo a:hover {
| |
| background-image: url("//upload.wikimedia.org/wikipedia/tr/b/bc/Wiki.png") !important;
| |
| display: block;
| |
| height: 145px;
| |
| width: 155px;
| |
| background-repeat: no-repeat;
| |
| background-position: 35% 50% !important;
| |
| text-decoration: none;
| |
| }
| |
| */
| |
| | |
| | |
| /* Ana sayfadaki bazı detayların gözükmesini önler */
| |
| | |
| body.page-Main_Page #ca-delete,
| |
| body.page-Anasayfa #contentSub,
| |
| body.page-Main_Page #deleteconfirm,
| |
| body.page-Anasayfa #t-cite,
| |
| body.page-Anasayfa #lastmod,
| |
| body.page-Anasayfa #siteSub,
| |
| body.page-Anasayfa h1.firstHeading {
| |
| display: none !important;
| |
| }
| |
| | |
| | |
| /* Yeni oluşturulan sayfalarda görüldü olarak işaretle yazısını ve son değişikliklerdeki kırmızı ünlemi kaldırır */
| |
| | |
| | |
| /*abbr.unpatrolled {*/
| |
| | |
| | |
| /* display: none;*/
| |
| | |
| | |
| /*}*/
| |
| | |
| | |
| /*.patrollink {*/
| |
| | |
| | |
| /* display: none;*/
| |
| | |
| | |
| /*}*/
| |
| | |
| | |
| /* Anasayfada kategori kutusunu gizler */
| |
| | |
| .action-view.page-Anasayfa #catlinks {
| |
| display: none;
| |
| }
| |
| | |
| | |
| /* Kullanıcı engel mesajları */
| |
| | |
| .user-block {
| |
| padding: 5px;
| |
| margin-bottom: 0.5em;
| |
| border: 1px solid #a9a9a9;
| |
| background-color: #ffefd5;
| |
| }
| |
| | |
| | |
| /* Bkz. https://w.wiki/3yCT */
| |
| | |
| .reflist ol.references {
| |
| list-style-type: inherit;
| |
| /* Enable custom list style types */
| |
| }
| |
| | |
| /* SilLAD Şablonları */
| |
| | |
| .xfd-closed-delete {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid red;
| |
| background: white;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/f/f6/OOjs_UI_icon_alert-destructive.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #eeeeee;
| |
| border-right: 1px solid #eeeeee;
| |
| border-bottom: 1px solid #c8ccd1;
| |
| border-left: 1px solid red;
| |
| border-right: 1px solid red;
| |
| margin-top: 25px;
| |
| }
| |
| | |
| .xfd-closed-speed-delete {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid red;
| |
| background: white;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/f/f6/OOjs_UI_icon_alert-destructive.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #eeeeee;
| |
| border-right: 1px solid #eeeeee;
| |
| border-bottom: 1px solid #c8ccd1;
| |
| border-left: 1px solid red;
| |
| border-right: 1px solid red;
| |
| margin-top: 25px;
| |
| }
| |
| | |
| .xfd-closed-keep {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid #04b189;
| |
| background: white;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/a/a9/OOjs_UI_icon_alert-constructive.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #04af89;
| |
| border-right: 1px solid #04af89;
| |
| margin-top: 25px;
| |
| }
| |
| | |
| .xfd-closed-speed-keep {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid #3366cb;
| |
| background: white;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/c/c9/OOjs_UI_icon_alert-progressive.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #3366cb;
| |
| border-right: 1px solid #3366cb;
| |
| margin-top: 25px;
| |
| }
| |
| | |
| .xfd-closed-no-consensus {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid #fc3;
| |
| background: white;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/9/99/OOjs_UI_icon_alert-yellow.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #fc3;
| |
| border-right: 1px solid #fc3;
| |
| margin-top: 25px;
| |
| }
| |
| | |
| .xfd-closed-redirect {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid #ca82ca;
| |
| background: #ca82ca;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/d/d4/OOjs_UI_icon_alert-invert.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #ca82ca;
| |
| border-right: 1px solid #ca82ca;
| |
| margin-top: 25px;
| |
| color: white;
| |
| }
| |
| | |
| .xfd-closed-merge {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid #ca82ca;
| |
| background: #ca82ca;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/d/d4/OOjs_UI_icon_alert-invert.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #ca82ca;
| |
| border-right: 1px solid #ca82ca;
| |
| margin-top: 25px;
| |
| color: white;
| |
| }
| |
| | |
| .xfd-closed-special {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| border-top: 5px solid #000000;
| |
| background: white;
| |
| padding-left: 20px;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/8/80/OOjs_UI_icon_alert.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| border-left: 1px solid #000000;
| |
| border-right: 1px solid #000000;
| |
| margin-top: 25px;
| |
| }
| |
| | |
| .xfd-closed-bottom-warn {
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/c/ca/OOjs_UI_icon_info.svg);
| |
| background-repeat: no-repeat;
| |
| background-position: left center;
| |
| background-size: 25px;
| |
| margin-top: 10px;
| |
| padding-left: 30px;
| |
| font-size: 12px;
| |
| display: grid;
| |
| }
| |
| | |
| .xfd-closed-not-deleted {
| |
| padding: 18px;
| |
| background: #de3333;
| |
| color: white !important;
| |
| }
| |
| | |
| .xfd-closed-not-deleted a {
| |
| color: #de3333 !important;
| |
| background-color: #ffffff;
| |
| border-color: #ffffff;
| |
| padding: 8px;
| |
| width: 70px;
| |
| line-height: 1;
| |
| border-style: solid;
| |
| text-align: center;
| |
| cursor: pointer;
| |
| border-radius: 3px;
| |
| float: right;
| |
| margin-top: -5px;
| |
| background-image: none !important;
| |
| text-decoration: none;
| |
| }
| |
| | |
| .xfd-closed-not-deleted a:hover {
| |
| color: #ffffff !important;
| |
| background-color: #f55e5e;
| |
| border-color: #f55e5e;
| |
| }
| |
| | |
| /* toolbar'daki dosya yükleme bağlantısı Mediawiki:Sidebar'a taşındığı için varsayılandan kaldırılıyor */
| |
| #t-upload {
| |
| display: none;
| |
| }
| |
| | |
| /* Add these codes to MediaWiki:Common.css page. */
| |
| /* The following lines are used by Adiutor */
| |
| | |
| /* General styles */
| |
| .ADT-WT-H {
| |
| padding-top: 15px;
| |
| padding-bottom: 15px;
| |
| background: white;
| |
| padding-left: 20px;
| |
| background-repeat: no-repeat;
| |
| background-position: 98% 50%;
| |
| background-size: 32px;
| |
| }
| |
| | |
| .ADT-WT-B {
| |
| padding: 18px;
| |
| }
| |
| | |
| .ADT-WT-F {
| |
| padding: 18px;
| |
| border-top: none;
| |
| padding-top: 20px;
| |
| margin-top: -10px;
| |
| padding-bottom: 10px;
| |
| }
| |
| | |
| /* Header styles */
| |
| .ADT-H-L1 {
| |
| border-top: 5px solid #3067cd;
| |
| border-left: 1px solid #3067cd;
| |
| border-right: 1px solid #3067cd;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/3/37/Eo_circle_blue_info.svg);
| |
| }
| |
| | |
| .ADT-H-L2 {
| |
| border-top: 5px solid #ff5d01;
| |
| border-left: 1px solid #ff5d01;
| |
| border-right: 1px solid #ff5d01;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/4/4c/OOjs_UI_icon_notice-warning.svg);
| |
| }
| |
| | |
| .ADT-H-L3 {
| |
| border-top: 5px solid #dd312f;
| |
| border-left: 1px solid #dd312f;
| |
| border-right: 1px solid #dd312f;
| |
| background-image: url(https://upload.wikimedia.org/wikipedia/commons/b/bf/OOjs_UI_icon_notice-destructive.svg);
| |
| }
| |
| | |
| /* Header content styles */
| |
| .ADT-B-L1 {
| |
| border: 1px solid #3067cd;
| |
| border-bottom: none;
| |
| }
| |
| | |
| .ADT-B-L2 {
| |
| border: 1px solid #ff5d01;
| |
| border-bottom: none;
| |
| }
| |
| | |
| .ADT-B-L3 {
| |
| border: 1px solid #dd312f;
| |
| border-bottom: none;
| |
| }
| |
| | |
| /* Footer styles */
| |
| .ADT-WT-F {
| |
| padding: 18px;
| |
| padding-top: 10px;
| |
| padding-bottom: 10px;
| |
| text-align: right;
| |
| }
| |
| | |
| /* Footer content styles */
| |
| .ADT-F-L1 {
| |
| border: 1px solid #3067cd;
| |
| }
| |
| | |
| .ADT-F-L2 {
| |
| border: 1px solid #ff5d01;
| |
| }
| |
| | |
| .ADT-F-L3 {
| |
| border: 1px solid #dd312f;
| |
| }
| |
| | |
| /* The above lines are used by Adiutor */
| |
| | |
| /* Wie Inhaltsverzeichnis (mediawiki.skinning/content.css) */
| |
| table > * > tr.hintergrundfarbe1 > th,
| |
| table > * > tr > th.hintergrundfarbe1,
| |
| table.hintergrundfarbe1,
| |
| .hintergrundfarbe1 {
| |
| background-color: #f8f9fa;
| |
| }
| |
| /* „Weiß“, für Nicht-Artikel-Seiten, neutral */
| |
| table > * > tr.hintergrundfarbe2 > th,
| |
| table > * > tr > th.hintergrundfarbe2,
| |
| table.hintergrundfarbe2,
| |
| .hintergrundfarbe2 {
| |
| background-color: #fff;
| |
| }
| |
| /* „Gelb“, auffällig */
| |
| table > * > tr.hintergrundfarbe3 > th,
| |
| table > * > tr > th.hintergrundfarbe3,
| |
| table.hintergrundfarbe3,
| |
| .hintergrundfarbe3 {
| |
| background-color: #ffff40;
| |
| }
| |
| /* Sehr auffällig */
| |
| table > * > tr.hintergrundfarbe4 > th,
| |
| table > * > tr > th.hintergrundfarbe4,
| |
| table.hintergrundfarbe4,
| |
| .hintergrundfarbe4 {
| |
| background-color: #fa0;
| |
| }
| |
| /* Neutral, abgesetzt */
| |
| table > * > tr.hintergrundfarbe5 > th,
| |
| table > * > tr > th.hintergrundfarbe5,
| |
| table.hintergrundfarbe5,
| |
| .hintergrundfarbe5 {
| |
| background-color: #eaecf0;
| |
| }
| |
| /* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
| |
| table > * > tr.hintergrundfarbe6 > th,
| |
| table > * > tr > th.hintergrundfarbe6,
| |
| table.hintergrundfarbe6,
| |
| .hintergrundfarbe6 {
| |
| background-color: var(--background-color-neutral);
| |
| }
| |
| /* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
| |
| table > * > tr.hintergrundfarbe7 > th,
| |
| table > * > tr > th.hintergrundfarbe7,
| |
| table.hintergrundfarbe7,
| |
| .hintergrundfarbe7 {
| |
| background-color: #ffcbcb;
| |
| }
| |
| /* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
| |
| table > * > tr.hintergrundfarbe8 > th,
| |
| table > * > tr > th.hintergrundfarbe8,
| |
| table.hintergrundfarbe8,
| |
| .hintergrundfarbe8 {
| |
| background-color: #ffebad;
| |
| }
| |
| /* Allgemein „bunt“, für Hervorhebungen und Unterscheidungen */
| |
| table > * > tr.hintergrundfarbe9 > th,
| |
| table > * > tr > th.hintergrundfarbe9,
| |
| table.hintergrundfarbe9,
| |
| .hintergrundfarbe9 {
| |
| background-color: #b9ffc5;
| |
| }
| |
| | |
| .zebra > tbody > :nth-child(even):not([class*="hintergrundfarbe"]) {
| |
| background: white;
| |
| }
| |