|
|
(未显示同一用户的17个中间版本) |
第1行: |
第1行: |
| | | .CCsingle { |
| /* Hide the images */
| | position: relative; |
| .geo-nondefault, .geo-multi-punct,
| |
| /* Hide stuff meant for accounts with special permissions. Made visible again in
| |
| [[MediaWiki:Group-sysop.css]], [[MediaWiki:Group-accountcreator.css]] and
| |
| [[MediaWiki:Group-autoconfirmed.css]]. */
| |
| .sysop-show,
| |
| .accountcreator-show,
| |
| .autoconfirmed-show,
| |
| /* Copied from Common.css - allow for hiding text in compact form e.g. clean up templates */
| |
| .hide-when-compact,
| |
| /* portal pages are badly formatted. Until this changes these should be hidden. (see https://phabricator.wikimedia.org/T86495) */
| |
| .noprint.portal {
| |
| display: none;
| |
| }
| |
| | |
| /* Tablet specific styling */
| |
| | |
| | |
| /* For linked citation numbers and document IDs, where
| |
| the number need not be shown on a screen or a handheld,
| |
| but should be included in the printed version
| |
| TODO: Move to Citation template when templates have stylesheets
| |
| See https://www.mediawiki.org/wiki/Requests_for_comment/Allow_styling_in_templates
| |
| */
| |
| | |
| /* Styling for citations (CSS3). Breaks long urls, etc., rather than overflowing box
| |
| */
| |
| .citation {
| |
| word-wrap: break-word;
| |
| }
| |
| | |
| /* Default styling for Navbar template
| |
| TODO: Move to Navbar template when templates have stylesheets
| |
| See https://www.mediawiki.org/wiki/Requests_for_comment/Allow_styling_in_templates
| |
| */
| |
| .navbar {
| |
| display: inline;
| |
| font-size: 88%;
| |
| font-weight: normal;
| |
| }
| |
| .navbar ul {
| |
| display: inline;
| |
| white-space: nowrap;
| |
| }
| |
| .navbar li {
| |
| word-spacing: -0.125em;
| |
| }
| |
| .navbar.mini li span {
| |
| font-variant: small-caps; | |
| }
| |
| /* Navbar styling when nested in infobox and navbox */
| |
| .infobox .navbar {
| |
| font-size: 100%;
| |
| }
| |
| .navbox .navbar {
| |
| display: block;
| |
| font-size: 100%;
| |
| }
| |
| .navbox-title .navbar {
| |
| /* @noflip */
| |
| float: left;
| |
| /* @noflip */
| |
| text-align: left;
| |
| /* @noflip */
| |
| margin-right: 0.5em;
| |
| width: 6em;
| |
| }
| |
| | |
| /* Style for horizontal lists (separator following item).
| |
| @source mediawiki.org/wiki/Snippets/Horizontal_lists
| |
| @revision 4.2 (2013-11-20)
| |
| @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;
| |
| display: inline;
| |
| }
| |
| /* Display nested lists inline */
| |
| .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;
| |
| }
| |
| /* Generate interpuncts */
| |
| .mw-parser-output .hlist dt:after {
| |
| content: ": ";
| |
| }
| |
| .mw-parser-output .hlist dd:after,
| |
| .mw-parser-output .hlist li:after {
| |
| content: " · ";
| |
| font-weight: bold;
| |
| }
| |
| .mw-parser-output .hlist dd:last-child:after,
| |
| .mw-parser-output .hlist dt:last-child:after,
| |
| .mw-parser-output .hlist li:last-child:after {
| |
| content: none;
| |
| }
| |
| /* Add parentheses around nested lists */
| |
| .mw-parser-output .hlist dd dd:first-child:before, .mw-parser-output .hlist dd dt:first-child:before, .mw-parser-output .hlist dd li:first-child:before,
| |
| .mw-parser-output .hlist dt dd:first-child:before, .mw-parser-output .hlist dt dt:first-child:before, .mw-parser-output .hlist dt li:first-child:before,
| |
| .mw-parser-output .hlist li dd:first-child:before, .mw-parser-output .hlist li dt:first-child:before, .mw-parser-output .hlist li li:first-child:before {
| |
| content: " (";
| |
| font-weight: normal;
| |
| }
| |
| .mw-parser-output .hlist dd dd:last-child:after, .mw-parser-output .hlist dd dt:last-child:after, .mw-parser-output .hlist dd li:last-child:after,
| |
| .mw-parser-output .hlist dt dd:last-child:after, .mw-parser-output .hlist dt dt:last-child:after, .mw-parser-output .hlist dt li:last-child:after,
| |
| .mw-parser-output .hlist li dd:last-child:after, .mw-parser-output .hlist li dt:last-child:after, .mw-parser-output .hlist li li:last-child:after {
| |
| content: ") ";
| |
| font-weight: normal;
| |
| }
| |
| /* Put ordinals in front of ordered list items */
| |
| .mw-parser-output .hlist ol {
| |
| counter-reset: list-item;
| |
| }
| |
| .mw-parser-output .hlist ol > li {
| |
| counter-increment: list-item;
| |
| }
| |
| .mw-parser-output .hlist ol > li:before {
| |
| content: " " counter(list-item) " ";
| |
| }
| |
| .mw-parser-output .hlist dd ol > li:first-child:before,
| |
| .mw-parser-output .hlist dt ol > li:first-child:before,
| |
| .mw-parser-output .hlist li ol > li:first-child:before {
| |
| content: " (" counter(list-item) " ";
| |
| }
| |
|
| |
| /* Unbulleted lists e.g. Barack Obama page */
| |
| .plainlist ul {
| |
| list-style: none;
| |
| }
| |
| | |
| /*
| |
| Hatnotes and disambiguation notices
| |
| Please review the default hatnote styles provided by MobileFrontend before adding here.
| |
| */
| |
| .hatnote i {
| |
| font-style: normal;
| |
| }
| |
| .hatnote img {
| |
| display: none;
| |
| }
| |
| | |
| /* Geographical coordinates defaults. See [[Template:Coord/link]]
| |
| for how these are used. The classes "geo", "longitude", and
| |
| "latitude" are used by the [[Geo microformat]]. */
| |
| .geo-default, .geo-dms, .geo-dec { display: inline; }
| |
| .longitude, .latitude { white-space: nowrap; }
| |
| | |
| /* Prevent line breaks in silly places:
| |
| 1) Where desired
| |
| 2) Links when we don't want them to
| |
| 3) Bold "links" to the page itself
| |
| 4) Ref tags with group names <ref group="Note"> --> "[Note 1]"
| |
| Please document here what pages use this
| |
| */
| |
| .nowrap,
| |
| .nowraplinks a,
| |
| .nowraplinks .selflink,
| |
| sup.reference a {
| |
| white-space: nowrap;
| |
| }
| |
| /* But allow wrapping where desired: */
| |
| .wrap,
| |
| .wraplinks a {
| |
| white-space: normal;
| |
| }
| |
| | |
| .client-js .content_block.coordinates {
| |
| display: none;
| |
| text-align: right;
| |
| margin-bottom: 0.5em;
| |
| font-size: smaller;
| |
| } | | } |
|
| |
|
| .client-js .content_block.coordinates .latitude { | | .CCsingle::before, .CCsingle::after { |
| display:none;
| | content: ''; |
| padding-left: 20px;
| | position: absolute; |
| background-repeat: no-repeat;
| | top: 0; |
| background-size: auto 15px;
| | right: 0; |
| | width: 28%; /* 更宽的白色描边 */ |
| | height: 28%; /* 更宽的白色描边 */ |
| | clip-path: polygon(100% 0, 0 0, 100% 100%); |
| | z-index: 1; /* 默认优先级 */ |
| } | | } |
|
| |
|
| /* Until Geohack is mobile optimised and/or there is a nice alternative e.g. map namespace */ | | .CCsingle::before { |
| .alpha #li-coordinates {
| | background-color: white; /* 白色描边 */ |
| display: list-item;
| | z-index: 0; /* 放在背景和角标之间 */ |
| } | | } |
|
| |
|
| .client-js .beta .content_block.coordinates { | | .CCsingle::after { |
| display: block;
| | width: 20%; /* 正确大小 */ |
| | height: 20%; /* 正确大小 */ |
| | z-index: 2; |
| } | | } |
|
| |
|
| .client-js .beta .content_block.coordinates .latitude { | | /* 不同颜色控制 */ |
| display:inline;
| | .CCsingle-byd::after { |
| | background-color: #FF7373; /* byd颜色 */ |
| } | | } |
|
| |
|
| /* hidden sortkey for tablesorter */
| | .CCsingle-etr::after { |
| td .sortkey,
| | background-color: #A598BB; /* etr颜色 */ |
| th .sortkey {
| |
| display: none;
| |
| speak: none;
| |
| } | | } |
|
| |
|
| /* For the new main page design */
| | .CCsingle-ftr::before, .CCsingle-ftr::after { |
| #mainpage .floatleft,
| | display: none; /* 完全移除 ftr 的描边和颜色 */ |
| #mainpage .floatright,
| |
| #mp-2012-body .floatleft,
| |
| #mp-2012-body .floatright {
| |
| text-align: center;
| |
| } | | } |
|
| |
|
| /* HACK to workaround VE and badly written CGroups */
| | .CCsingle-prs::after { |
| .noteTA { | | background-color: #b3cc54; /* prs颜色 */ |
| display: none;
| |
| }
| |
| | |
| .mw-newarticletext {
| |
| padding: 0 2.5em;
| |
| border: solid 1px #a2a9b1;
| |
| }
| |
| .mw-newarticletext .title {
| |
| margin: 1em 0;
| |
| padding: 0;
| |
| color: #d33;
| |
| font-size: 1.5em;
| |
| border: none;
| |
| text-align: center;
| |
| }
| |
| .mw-newarticletext li {
| |
| margin: 0.4em 0;
| |
| }
| |
| .mw-newarticletext .buttons {
| |
| margin: 1.5em 0;
| |
| text-align: center;
| |
| }
| |
| .mw-newarticletext .buttons a {
| |
| margin: 0.25em;
| |
| display: inline-block;
| |
| }
| |
| .mw-newarticletext .note {
| |
| color: #72777d;
| |
| font-size: 87.5%;
| |
| } | | } |