MediaWiki:Common.css:修订间差异
来自The Land of StarLight
页面内容被替换为“→这里放置的CSS将应用于所有皮肤: #ca-talk { display: none !important; } #pt-mytalk{ display: none !important; } #site-tools{ display: none !important; } #page-tools{ display: none !important; }” 标签:替换 手工回退 |
无编辑摘要 |
||
第14行: | 第14行: | ||
#page-tools{ | #page-tools{ | ||
display: none !important; | display: none !important; | ||
} | |||
@import url(https://wiki.biligame.com/mc/index.php?title=MediaWiki:Gadget-site-styles.css&action=raw&ctype=text/css); | |||
/* | |||
* CSS for the Minecraft-style skin can be found at [[MediaWiki:Hydra.css]]. | |||
* This stylesheet is for desktop only; see [[MediaWiki:Mobile.css]] for mobile styles, and [[MediaWiki:Gadget-site-styles.css]] for global styles. | |||
*/ | |||
/* Note: Color styles may need to be coded as variables to support light, dark, | |||
* and per-namespace themes correctly. | |||
* | |||
* Note 2: Currently the variable names aren't stable; they may be stabilized | |||
* in the future to allow for inline `var()` declarations, but for now you | |||
* should not do that, things may break if you do. | |||
* | |||
* Note 3: Some parts of the code written, with or without changes, by | |||
* User:ItsPlantseed, some of which are also originally written by | |||
* User:SansUT1. | |||
*/ | |||
/* Defaults assume a namespace without a custom theme, and light theme. */ | |||
:root { | |||
--custom-background-blue: hsl(215, 75%, 92%); | |||
--custom-background-cyan: #cef; | |||
--custom-background-green: #cfc; | |||
--custom-background-gray: #eee; | |||
--custom-background-grey: var(--custom-background-gray); | |||
--custom-background-magenta: #fdf; | |||
--custom-background-orange: #fdb; | |||
--custom-background-purple: #ecf; | |||
--custom-background-red: #fcc; | |||
--custom-background-yellow: #ffc; | |||
--custom-border-blue: #36c; | |||
--custom-border-cyan: #9df; | |||
--custom-border-green: #5d5; | |||
--custom-border-gray: #eee; | |||
--custom-border-grey: var(--custom-border-gray); | |||
--custom-border-magenta: #f9f; | |||
--custom-border-orange: #f90; | |||
--custom-border-purple: #96c; | |||
--custom-border-red: #e44; | |||
--custom-border-yellow: #fc3; | |||
--custom-closed-topic-neutral: #eef; | |||
--custom-closed-topic-no: #fee; | |||
--custom-closed-topic-yes: #efe; | |||
--custom-documentation: #eaf4f9; | |||
--custom-documentation-baddoc: #f9f2ea; | |||
--custom-documentation-nodoc: #f9eaea; | |||
--custom-load-page-button-color: #fff8; | |||
--custom-main-page-background: #fcfcfc; | |||
--custom-main-page-border: #ccc; | |||
--custom-main-page-edition-subheader: #333; | |||
--custom-mcwiki-header-color: #bcd4f5; | |||
--custom-navbox-background: #fff; | |||
--custom-navbox-top: #ccc; | |||
--custom-navbox-middle: #ddd; | |||
--custom-navbox-thru: #eee; | |||
--custom-nbt-inherit-color: #e6e6fa; | |||
--custom-table-background: #f8f9fa; | |||
--custom-table-alternate-background: #f0f1f2; | |||
--custom-table-choice-always: #004100; | |||
--custom-table-choice-always-background: #5dcc5d; | |||
--custom-table-choice-default: #fff; | |||
--custom-table-choice-in-off-background: #060; | |||
--custom-table-choice-in-on-background: #0c0; | |||
--custom-table-choice-na: #000; | |||
--custom-table-choice-neutral: #9c6500; | |||
--custom-table-choice-neutral-background: #ffeb9c; | |||
--custom-table-choice-never: #700005; | |||
--custom-table-choice-never-background: #ff5757; | |||
--custom-table-choice-no: #9c0006; | |||
--custom-table-choice-no-background: #ffc7ce; | |||
--custom-table-choice-out-off-background: #900; | |||
--custom-table-choice-out-on-background: #f00; | |||
--custom-table-choice-partial: #8a7600; | |||
--custom-table-choice-partial-background: #ffd; | |||
--custom-table-choice-planned: #0131b7; | |||
--custom-table-choice-planned-background: #dfdfff; | |||
--custom-table-choice-rarely: #835400; | |||
--custom-table-choice-rarely-background: #fdce5e; | |||
--custom-table-choice-unknown: #222; | |||
--custom-table-choice-unknown-background: #ccc; | |||
--custom-table-choice-yes: #006100; | |||
--custom-table-choice-yes-background: #c6efce; | |||
--custom-table-header-background: #eaecf0; | |||
--custom-topic-30-days: #bbb; | |||
--custom-topic-7-days: #ddd; | |||
} | |||
body.theme-fandomdesktop-dark { | |||
--custom-background-blue: hsl(215, 25%, 8%); | |||
--custom-background-cyan: hsl(190, 25%, 8%); | |||
--custom-background-green: hsl(120, 25%, 8%); | |||
--custom-background-gray: hsl(0, 0%, 8%); | |||
--custom-background-grey: var(--custom-background-gray); | |||
--custom-background-magenta: hsl(310, 25%, 8%); | |||
--custom-background-orange: hsl(40, 25%, 8%); | |||
--custom-background-purple: hsl(260, 25%, 8%); | |||
--custom-background-red: hsl(0, 25%, 8%); | |||
--custom-background-yellow: hsl(60, 25%, 8%); | |||
--custom-border-blue: hsl(215, 15%, 36%); | |||
--custom-border-cyan: hsl(190, 15%, 36%); | |||
--custom-border-green: hsl(120, 15%, 36%); | |||
--custom-border-gray: hsl(0, 0%, 36%); | |||
--custom-border-grey: var(--custom-border-gray); | |||
--custom-border-magenta: hsl(310, 15%, 36%); | |||
--custom-border-orange: hsl(40, 15%, 36%); | |||
--custom-border-purple: hsl(260, 15%, 36%); | |||
--custom-border-red: hsl(0, 15%, 36%); | |||
--custom-border-yellow: hsl(60, 15%, 36%); | |||
--custom-closed-topic-neutral: #2a2a33; | |||
--custom-closed-topic-no: #332a2a; | |||
--custom-closed-topic-yes: #2a332a; | |||
--custom-documentation: #393e3f; | |||
--custom-documentation-baddoc: #3f3c39; | |||
--custom-documentation-nodoc: #3f3939; | |||
--custom-load-page-button-color: #fff2; | |||
--custom-main-page-background: #202125; | |||
--custom-main-page-border: #2e2e2e; | |||
--custom-main-page-edition-subheader: #ddd; | |||
--custom-mcwiki-header-color: #222c39; | |||
--custom-navbox-background: #131313; | |||
--custom-navbox-top: #363636; | |||
--custom-navbox-middle: #2d2d2d; | |||
--custom-navbox-thru: #202020; | |||
--custom-nbt-inherit-color: #404050; | |||
--custom-table-background: #131313; | |||
--custom-table-alternate-background: #202020; | |||
--custom-table-header-background: #363636; | |||
--custom-topic-30-days: #303030; | |||
--custom-topic-7-days: #242424; | |||
} | |||
/* Minecraft font */ | |||
@font-face { | |||
font-family: Minecraft; | |||
src: url("https://patchwiki.biligame.com/images/mc/hydra/fonts/minecraft.woff") format('woff'), | |||
url("https://patchwiki.biligame.com/images/mc/hydra/fonts/minecraft.ttf") format('truetype'); | |||
} | |||
#biliContributors { | |||
display:none; | |||
} | |||
/* Replace logo with HiDPI version on HiDPI screens */ | |||
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) { | |||
.mw-wiki-logo { | |||
background-image: url(https://patchwiki.biligame.com/images/mc/8/81/Wiki_HiDPI.png); | |||
background-size: 160px auto; | |||
} | |||
} | |||
/** Main page stylings **/ | |||
/* Remove the header from the main page */ | |||
body.page-Minecraft_Wiki.action-view h1.firstHeading, | |||
body.page-Minecraft_Wiki.action-view #contentSub { | |||
display: none; | |||
} | |||
/* | |||
@supports (flex-wrap: wrap) { | |||
.edition-group { | |||
display: flex; | |||
flex-wrap: wrap; | |||
} | |||
.edition-group .edition-box { | |||
flex: 17.4em; | |||
} | |||
}*/ | |||
/** Template stylings **/ | |||
/* [[Template:SimpleNavbox]] */ | |||
.navbox { | |||
background: #FFF; | |||
border: 1px solid #CCC; | |||
margin: 1em auto 0; | |||
width: 100%; | |||
} | |||
.navbox table { | |||
background: #FFF; | |||
margin-left: -4px; | |||
margin-right: -2px; | |||
} | |||
.navbox table:first-child { | |||
margin-top: -2px; | |||
} | |||
.navbox table:last-child { | |||
margin-bottom: -2px; | |||
} | |||
.navbox .navbox-top { | |||
white-space: nowrap; | |||
background-color: #CCC; | |||
padding: 0 3px; | |||
text-align: center; | |||
} | |||
.navbox .navbox-middle { | |||
white-space: nowrap; | |||
background-color: #DDD; | |||
padding: 0 3px; | |||
text-align: center; | |||
} | |||
.navbox .navbox-thru { | |||
white-space: nowrap; | |||
background-color: #EEE; | |||
padding: 0 3px; | |||
text-align: center; | |||
} | |||
.navbox-navbar, | |||
.navbox-navbar-mini { | |||
float: left; | |||
font-size: 80%; | |||
} | |||
.navbox-title { | |||
padding: 0 10px; | |||
font-size: 110%; | |||
} | |||
.navbox th { | |||
background-color: #EEE; | |||
padding: 0 10px; | |||
white-space: nowrap; | |||
text-align: right; | |||
} | |||
.navbox td { | |||
width: 100%; | |||
padding: 0 0 0 2px; | |||
} | |||
/* [[Template:LoadBox]] with navbox */ | |||
.loadbox-navbox { | |||
padding: 2px !important; | |||
margin: 1em 0 0 !important; | |||
clear: both; | |||
} | |||
#content .loadbox-navbox > p { | |||
background-color: #CCC; | |||
text-align: center; | |||
margin: 0; | |||
padding: 0 3px; | |||
} | |||
.loadbox-navbox > p > b { | |||
font-size: 110%; | |||
} | |||
.loadbox-navbox .navbox { | |||
margin: 0 -2px -2px; | |||
border: 0; | |||
} | |||
.loadbox-navbox > .load-page-content > .mw-parser-output > .navbox > tbody > tr:first-child { | |||
display: none; | |||
} | |||
/* [[Template:Hatnote]] */ | |||
.hatnote { | |||
padding-left: 2em; | |||
} | |||
/* [[Template:Director table]] */ | |||
.director-table { | |||
float: right; | |||
width: 300px; | |||
} | |||
@media screen and (max-width: 720px) { | |||
.director-table { | |||
float: none; | |||
width: 100%; | |||
} | |||
} | |||
/* [[Template:Layered blueprint]] */ | |||
@-webkit-keyframes layered-blueprint-fade-in { | |||
0% { | |||
opacity: 0; | |||
visibility: hidden; | |||
} | |||
100% { | |||
opacity: 1; | |||
visibility: visible; | |||
} | |||
} | |||
@keyframes layered-blueprint-fade-in { | |||
0% { | |||
opacity: 0; | |||
visibility: hidden; | |||
} | |||
100% { | |||
opacity: 1; | |||
visibility: visible; | |||
} | |||
} | |||
.layered-blueprint-layer { | |||
-webkit-animation: layered-blueprint-fade-in 200ms; | |||
animation: layered-blueprint-fade-in 200ms; | |||
} | |||
@-webkit-keyframes layered-blueprint-fade-out { | |||
0% { | |||
opacity: 1; | |||
visibility: visible; | |||
} | |||
100% { | |||
opacity: 0; | |||
visibility: hidden; | |||
} | |||
} | |||
@keyframes layered-blueprint-fade-out { | |||
0% { | |||
opacity: 1; | |||
visibility: visible; | |||
} | |||
100% { | |||
opacity: 0; | |||
visibility: hidden; | |||
} | |||
} | |||
.layered-blueprint-radio:checked + .layered-blueprint-tab + .layered-blueprint-layer ~ .layered-blueprint-layer { | |||
-webkit-animation: layered-blueprint-fade-out 200ms; | |||
animation: layered-blueprint-fade-out 200ms; | |||
} | |||
/* Prevent page jump from the toolbar loading */ | |||
.client-js #editform { | |||
/* To disable margin collapsing */ | |||
overflow: hidden; | |||
} | |||
.client-js .mw-editform > #wpTextbox1 { | |||
margin-top: 73px; | |||
} | |||
.mw-editform .wikiEditor-ui-top { | |||
min-height: 72px; | |||
} | |||
/* Alternating cell background */ | |||
.alternatecells:nth-child(2n+1) { | |||
background-color: var(--custom-table-alternate-background, #f9f9f9); | |||
} | |||
/* Alternating table rows, primarily used with [[Template:Infobox row]] */ | |||
.alternaterows tr:nth-child(2n), | |||
.infobox-rows tr:nth-child(2n) { | |||
background-color: #F9F9F9; | |||
} | |||
/* Scale file page image to the width of the page */ | |||
#file img { | |||
max-width: 100%; | |||
height: auto; | |||
} | |||
/* Highlight clicked reference in blue to help navigation */ | |||
ol.references li:target, | |||
sup.reference:target, | |||
span.citation:target { | |||
background-color: #C1DAF2; | |||
} | |||
/* Style the sitenotice */ | |||
#siteNotice #localNotice, | |||
#siteNotice .globalNotice, | |||
.page-MediaWiki_Sitenotice .mw-content-ltr { | |||
background-color: #FFF; | |||
border: 1px solid #D3D3D3; | |||
margin-bottom: 12px; | |||
text-align: center; | |||
height: fit-content; | |||
font-size: 16px; | |||
font-family: sans-serif; | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
} | |||
#localNotice { | |||
height: 60px; | |||
overflow: hidden; | |||
} | |||
/* Allow parts of toc to be hidden */ | |||
/* Section levels */ | |||
.toc-hidelevel2 .toclevel-1 ul, | |||
.toc-hidelevel3 .toclevel-2 ul, | |||
.toc-hidelevel4 .toclevel-3 ul, | |||
/* Numbers */ | |||
.toc-nonumbers .tocnumber { | |||
display: none; | |||
} | |||
/* Turn a list into a tree view style (See [[.minecraft]]) */ | |||
.treeview { | |||
margin-top: 0.3em; | |||
} | |||
.treeview .treeview-header { | |||
padding-left: 3px; | |||
font-weight: bold; | |||
} | |||
.treeview .treeview-header:last-child { | |||
border-color: #636363 !important; | |||
border-left-style: dotted; | |||
} | |||
.treeview .treeview-header:not(:last-child)::before { | |||
content: none; | |||
} | |||
.treeview .treeview-header:last-child::before { | |||
border-bottom: 0; | |||
} | |||
.treeview ul, | |||
.treeview li { | |||
margin: 0; | |||
padding: 0; | |||
list-style-type: none; | |||
list-style-image: none; | |||
} | |||
.treeview li li { | |||
position: relative; | |||
padding-left: 13px; | |||
margin-left: 7px; | |||
border-left: 1px solid #636363; | |||
} | |||
.treeview li li::before { | |||
content: ""; | |||
position: absolute; | |||
top: 0; | |||
left: -1px; | |||
width: 11px; | |||
height: 11px; | |||
border-bottom: 1px solid #636363; | |||
} | |||
.treeview li li:last-child:not(.treeview-continue) { | |||
border-color: transparent; | |||
} | |||
.treeview li li:last-child:not(.treeview-continue)::before { | |||
border-left: 1px solid #636363; | |||
width: 10px; | |||
} | |||
.nbttree-inherited { | |||
background-color: #E6E6FA; | |||
} | |||
/* Simulate link styling for JS only links */ | |||
.jslink { | |||
color: #0645AD; | |||
-webkit-user-select: none; | |||
-moz-user-select: none; | |||
-ms-user-select: none; | |||
user-select: none; | |||
} | |||
.jslink:hover { | |||
text-decoration: underline; | |||
cursor: pointer; | |||
} | |||
.jslink:active { | |||
color: #FAA700; | |||
} | |||
/* Try to use nearest neighbour scaling for pixelated images */ | |||
.filehistory a img, | |||
.msgbox img, | |||
.pixel-image, | |||
.invslot-item-image, | |||
.spriteedit-new-image, | |||
.sprite { | |||
image-rendering: optimizeSpeed; | |||
image-rendering: -webkit-optimize-contrast; | |||
image-rendering: optimize-contrast; | |||
image-rendering: -moz-crisp-edges; | |||
image-rendering: -o-crisp-edges; | |||
image-rendering: crisp-edges; | |||
image-rendering: pixelated; | |||
-ms-interpolation-mode: nearest-neighbor; | |||
} | |||
/* Make external links the same colour as internal links, the icon is enough to differentiate them */ | |||
#mw-content-text a.external { | |||
color: #0645ad; | |||
} | |||
#mw-content-text a.external:visited { | |||
color: #0b0080; | |||
} | |||
#mw-content-text a.external:active { | |||
color: #faa700; | |||
} | |||
/* Mark internal links as plain | |||
But something went wrong at bwiki | |||
#content a.external[href^="https://wiki.biligame.com"], | |||
#content a.external[href^="//wiki.biligame.com"] { | |||
background: none; | |||
padding-right: 0; | |||
} | |||
*/ | |||
/* Make tabs the correct size */ | |||
body { | |||
-moz-tab-size: 4; | |||
-o-tab-size: 4; | |||
tab-size: 4; | |||
} | |||
/* Classes corresponding to Minecraft formatting codes */ | |||
.format-0 { | |||
color: #000; | |||
text-shadow: 0.125em 0.125em 0 #000; | |||
} | |||
.format-1 { | |||
color: #00A; | |||
text-shadow: 0.125em 0.125em 0 #00002A; | |||
} | |||
.format-2 { | |||
color: #0A0; | |||
text-shadow: 0.125em 0.125em 0 #002A00; | |||
} | |||
.format-3 { | |||
color: #0AA; | |||
text-shadow: 0.125em 0.125em 0 #002A2A; | |||
} | |||
.format-4 { | |||
color: #A00; | |||
text-shadow: 0.125em 0.125em 0 #2A0000; | |||
} | |||
.format-5 { | |||
color: #A0A; | |||
text-shadow: 0.125em 0.125em 0 #2A002A; | |||
} | |||
.format-6 { | |||
color: #FA0; | |||
text-shadow: 0.125em 0.125em 0 #2A2A00; | |||
} | |||
.format-7 { | |||
color: #AAA; | |||
text-shadow: 0.125em 0.125em 0 #2A2A2A; | |||
} | |||
.format-8 { | |||
color: #555; | |||
text-shadow: 0.125em 0.125em 0 #151515; | |||
} | |||
.format-9 { | |||
color: #55F; | |||
text-shadow: 0.125em 0.125em 0 #15153F; | |||
} | |||
.format-a { | |||
color: #5F5; | |||
text-shadow: 0.125em 0.125em 0 #153F15; | |||
} | |||
.format-b { | |||
color: #5FF; | |||
text-shadow: 0.125em 0.125em 0 #153F3F; | |||
} | |||
.format-c { | |||
color: #F55; | |||
text-shadow: 0.125em 0.125em 0 #3F1515; | |||
} | |||
.format-d { | |||
color: #F5F; | |||
text-shadow: 0.125em 0.125em 0 #3F153F; | |||
} | |||
.format-e { | |||
color: #FF5; | |||
text-shadow: 0.125em 0.125em 0 #3F3F15; | |||
} | |||
.format-f, | |||
#minetip-tooltip { | |||
color: #FFF; | |||
text-shadow: 0.125em 0.125em 0 #3F3F3F; | |||
} | |||
.format-l { | |||
font-weight: bold; | |||
letter-spacing: 0.125em; | |||
} | |||
.format-m { | |||
text-decoration: line-through; | |||
} | |||
.format-n { | |||
text-decoration: underline; | |||
} | |||
.format-o { | |||
font-style: italic; | |||
} | |||
/* Styling for minecraft style tooltip */ | |||
.explain.minetip { | |||
border-bottom: 0; | |||
text-decoration: underline dotted; | |||
} | |||
#minetip-tooltip { | |||
position: fixed; | |||
top: 0; | |||
left: 0; | |||
background-color: #100010; | |||
background-color: rgba(16, 0, 16, 0.94); | |||
padding: 0.375em; | |||
font-family: Minecraft, "Arial Black", Unifont, "WenQuanYi Bitmap Song", SimSun, MingLiU, "GB18030 Bitmap", Beijing, sans-serif; | |||
font-size: 0.99em; | |||
word-spacing: 4px; | |||
white-space: nowrap; | |||
line-height: 1.25em; | |||
margin: 0.125em 0.25em; | |||
pointer-events: none; | |||
z-index: 9999; | |||
} | |||
#minetip-tooltip::before { | |||
content: ""; | |||
position: absolute; | |||
top: 0.125em; | |||
right: -0.125em; | |||
bottom: 0.125em; | |||
left: -0.125em; | |||
border: 0.125em solid #100010; | |||
border-style: none solid; | |||
border-color: rgba(16, 0, 16, 0.94); | |||
} | |||
#minetip-tooltip::after { | |||
content: ""; | |||
position: absolute; | |||
top: 0.125em; | |||
right: 0; | |||
bottom: 0.125em; | |||
left: 0; | |||
border: 0.125em solid #2D0A63; | |||
border-image: -webkit-linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1; | |||
border-image: linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1; | |||
} | |||
#minetip-tooltip > .description, | |||
#minetip-tooltip > .minetip-description { | |||
display: block; | |||
margin-top: 0.25em; | |||
} | |||
.invslot-stacksize { | |||
font-family: Minecraft, "Arial Black", sans-serif !important; | |||
} | |||
/* prevent sitenotice show/hide toggle from moving page contents down after pageload */ | |||
.globalNotice .globalNoticeDismiss { | |||
float: right; | |||
} | |||
/* history table wrapping issue */ | |||
td > code { | |||
display: inline-block; | |||
line-height: 1.2; | |||
} | |||
/* Show abusefilter error footer only once at the end */ | |||
.errorbox li:not(:last-child) .abusefilter-message-footer { | |||
display: none; | |||
} | |||
/* CUSTOMIZED RULES */ | |||
#siteNotice #localNotice, #siteNotice .globalNotice { | |||
background-color: transparent; | |||
border: none; | |||
} | |||
#localNotice .globalNoticeDismiss { | |||
display: none; | |||
} | |||
/* Add icons for administrations, hide some Chinese varients */ | |||
#ca-varlang-1, #ca-varlang-2, #ca-varlang-5, #ca-varlang-6, #ca-varlang-7 { | |||
display: none; | |||
} | |||
pre, tt, samp, .mw-code { | |||
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace, Courier; | |||
} | |||
code { | |||
display: inline-block; | |||
} | |||
.load-page-button { | |||
background-color: var(--custom-load-page-button-color); | |||
} | |||
@media screen and (max-width: 720px) { | |||
div#mw-navigation div#mw-panel { | |||
position: static !important; | |||
} | |||
body.page-Minecraft_Wiki.action-view img.banner-image { | |||
display: none; | |||
} | |||
} | |||
div.footer-post { | |||
padding-bottom: 0; | |||
} | |||
/* search on small screens */ | |||
@media screen and (max-width: 720px) { | |||
#mw-head { | |||
top: 13px; | |||
} | |||
div#p-search form { | |||
background: none; | |||
border: none; | |||
margin: 0; | |||
} | |||
div#p-search form::before, | |||
div#p-search form::after { | |||
border: none; | |||
} | |||
div#simpleSearch::before { | |||
border-left-color: transparent; | |||
} | |||
div#simpleSearch::after { | |||
border-top-color: transparent; | |||
} | |||
} | |||
th,td{ | |||
padding: 4px; | |||
} | |||
.layered-blueprint-layer th, .layered-blueprint-layer td{ | |||
padding: 0px; | |||
} | |||
.mcui{ | |||
-webkit-box-sizing: content-box; | |||
box-sizing: content-box; | |||
} | |||
.layered-blueprint-layer table{ | |||
border-spacing: 0px; | |||
border-collapse: inherit; | |||
} | |||
table { | |||
border-spacing: 2px; | |||
border-collapse: inherit; | |||
} | |||
.bili-game-header-nav .bili-game-header-nav-main .bili-game-header-nav-wrap li:nth-child(6) { | |||
display: none; | |||
} | } |
2022年10月3日 (一) 13:31的版本
/* 这里放置的CSS将应用于所有皮肤 */
#ca-talk {
display: none !important;
}
#pt-mytalk{
display: none !important;
}
#site-tools{
display: none !important;
}
#page-tools{
display: none !important;
}
@import url(https://wiki.biligame.com/mc/index.php?title=MediaWiki:Gadget-site-styles.css&action=raw&ctype=text/css);
/*
* CSS for the Minecraft-style skin can be found at [[MediaWiki:Hydra.css]].
* This stylesheet is for desktop only; see [[MediaWiki:Mobile.css]] for mobile styles, and [[MediaWiki:Gadget-site-styles.css]] for global styles.
*/
/* Note: Color styles may need to be coded as variables to support light, dark,
* and per-namespace themes correctly.
*
* Note 2: Currently the variable names aren't stable; they may be stabilized
* in the future to allow for inline `var()` declarations, but for now you
* should not do that, things may break if you do.
*
* Note 3: Some parts of the code written, with or without changes, by
* User:ItsPlantseed, some of which are also originally written by
* User:SansUT1.
*/
/* Defaults assume a namespace without a custom theme, and light theme. */
:root {
--custom-background-blue: hsl(215, 75%, 92%);
--custom-background-cyan: #cef;
--custom-background-green: #cfc;
--custom-background-gray: #eee;
--custom-background-grey: var(--custom-background-gray);
--custom-background-magenta: #fdf;
--custom-background-orange: #fdb;
--custom-background-purple: #ecf;
--custom-background-red: #fcc;
--custom-background-yellow: #ffc;
--custom-border-blue: #36c;
--custom-border-cyan: #9df;
--custom-border-green: #5d5;
--custom-border-gray: #eee;
--custom-border-grey: var(--custom-border-gray);
--custom-border-magenta: #f9f;
--custom-border-orange: #f90;
--custom-border-purple: #96c;
--custom-border-red: #e44;
--custom-border-yellow: #fc3;
--custom-closed-topic-neutral: #eef;
--custom-closed-topic-no: #fee;
--custom-closed-topic-yes: #efe;
--custom-documentation: #eaf4f9;
--custom-documentation-baddoc: #f9f2ea;
--custom-documentation-nodoc: #f9eaea;
--custom-load-page-button-color: #fff8;
--custom-main-page-background: #fcfcfc;
--custom-main-page-border: #ccc;
--custom-main-page-edition-subheader: #333;
--custom-mcwiki-header-color: #bcd4f5;
--custom-navbox-background: #fff;
--custom-navbox-top: #ccc;
--custom-navbox-middle: #ddd;
--custom-navbox-thru: #eee;
--custom-nbt-inherit-color: #e6e6fa;
--custom-table-background: #f8f9fa;
--custom-table-alternate-background: #f0f1f2;
--custom-table-choice-always: #004100;
--custom-table-choice-always-background: #5dcc5d;
--custom-table-choice-default: #fff;
--custom-table-choice-in-off-background: #060;
--custom-table-choice-in-on-background: #0c0;
--custom-table-choice-na: #000;
--custom-table-choice-neutral: #9c6500;
--custom-table-choice-neutral-background: #ffeb9c;
--custom-table-choice-never: #700005;
--custom-table-choice-never-background: #ff5757;
--custom-table-choice-no: #9c0006;
--custom-table-choice-no-background: #ffc7ce;
--custom-table-choice-out-off-background: #900;
--custom-table-choice-out-on-background: #f00;
--custom-table-choice-partial: #8a7600;
--custom-table-choice-partial-background: #ffd;
--custom-table-choice-planned: #0131b7;
--custom-table-choice-planned-background: #dfdfff;
--custom-table-choice-rarely: #835400;
--custom-table-choice-rarely-background: #fdce5e;
--custom-table-choice-unknown: #222;
--custom-table-choice-unknown-background: #ccc;
--custom-table-choice-yes: #006100;
--custom-table-choice-yes-background: #c6efce;
--custom-table-header-background: #eaecf0;
--custom-topic-30-days: #bbb;
--custom-topic-7-days: #ddd;
}
body.theme-fandomdesktop-dark {
--custom-background-blue: hsl(215, 25%, 8%);
--custom-background-cyan: hsl(190, 25%, 8%);
--custom-background-green: hsl(120, 25%, 8%);
--custom-background-gray: hsl(0, 0%, 8%);
--custom-background-grey: var(--custom-background-gray);
--custom-background-magenta: hsl(310, 25%, 8%);
--custom-background-orange: hsl(40, 25%, 8%);
--custom-background-purple: hsl(260, 25%, 8%);
--custom-background-red: hsl(0, 25%, 8%);
--custom-background-yellow: hsl(60, 25%, 8%);
--custom-border-blue: hsl(215, 15%, 36%);
--custom-border-cyan: hsl(190, 15%, 36%);
--custom-border-green: hsl(120, 15%, 36%);
--custom-border-gray: hsl(0, 0%, 36%);
--custom-border-grey: var(--custom-border-gray);
--custom-border-magenta: hsl(310, 15%, 36%);
--custom-border-orange: hsl(40, 15%, 36%);
--custom-border-purple: hsl(260, 15%, 36%);
--custom-border-red: hsl(0, 15%, 36%);
--custom-border-yellow: hsl(60, 15%, 36%);
--custom-closed-topic-neutral: #2a2a33;
--custom-closed-topic-no: #332a2a;
--custom-closed-topic-yes: #2a332a;
--custom-documentation: #393e3f;
--custom-documentation-baddoc: #3f3c39;
--custom-documentation-nodoc: #3f3939;
--custom-load-page-button-color: #fff2;
--custom-main-page-background: #202125;
--custom-main-page-border: #2e2e2e;
--custom-main-page-edition-subheader: #ddd;
--custom-mcwiki-header-color: #222c39;
--custom-navbox-background: #131313;
--custom-navbox-top: #363636;
--custom-navbox-middle: #2d2d2d;
--custom-navbox-thru: #202020;
--custom-nbt-inherit-color: #404050;
--custom-table-background: #131313;
--custom-table-alternate-background: #202020;
--custom-table-header-background: #363636;
--custom-topic-30-days: #303030;
--custom-topic-7-days: #242424;
}
/* Minecraft font */
@font-face {
font-family: Minecraft;
src: url("https://patchwiki.biligame.com/images/mc/hydra/fonts/minecraft.woff") format('woff'),
url("https://patchwiki.biligame.com/images/mc/hydra/fonts/minecraft.ttf") format('truetype');
}
#biliContributors {
display:none;
}
/* Replace logo with HiDPI version on HiDPI screens */
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
.mw-wiki-logo {
background-image: url(https://patchwiki.biligame.com/images/mc/8/81/Wiki_HiDPI.png);
background-size: 160px auto;
}
}
/** Main page stylings **/
/* Remove the header from the main page */
body.page-Minecraft_Wiki.action-view h1.firstHeading,
body.page-Minecraft_Wiki.action-view #contentSub {
display: none;
}
/*
@supports (flex-wrap: wrap) {
.edition-group {
display: flex;
flex-wrap: wrap;
}
.edition-group .edition-box {
flex: 17.4em;
}
}*/
/** Template stylings **/
/* [[Template:SimpleNavbox]] */
.navbox {
background: #FFF;
border: 1px solid #CCC;
margin: 1em auto 0;
width: 100%;
}
.navbox table {
background: #FFF;
margin-left: -4px;
margin-right: -2px;
}
.navbox table:first-child {
margin-top: -2px;
}
.navbox table:last-child {
margin-bottom: -2px;
}
.navbox .navbox-top {
white-space: nowrap;
background-color: #CCC;
padding: 0 3px;
text-align: center;
}
.navbox .navbox-middle {
white-space: nowrap;
background-color: #DDD;
padding: 0 3px;
text-align: center;
}
.navbox .navbox-thru {
white-space: nowrap;
background-color: #EEE;
padding: 0 3px;
text-align: center;
}
.navbox-navbar,
.navbox-navbar-mini {
float: left;
font-size: 80%;
}
.navbox-title {
padding: 0 10px;
font-size: 110%;
}
.navbox th {
background-color: #EEE;
padding: 0 10px;
white-space: nowrap;
text-align: right;
}
.navbox td {
width: 100%;
padding: 0 0 0 2px;
}
/* [[Template:LoadBox]] with navbox */
.loadbox-navbox {
padding: 2px !important;
margin: 1em 0 0 !important;
clear: both;
}
#content .loadbox-navbox > p {
background-color: #CCC;
text-align: center;
margin: 0;
padding: 0 3px;
}
.loadbox-navbox > p > b {
font-size: 110%;
}
.loadbox-navbox .navbox {
margin: 0 -2px -2px;
border: 0;
}
.loadbox-navbox > .load-page-content > .mw-parser-output > .navbox > tbody > tr:first-child {
display: none;
}
/* [[Template:Hatnote]] */
.hatnote {
padding-left: 2em;
}
/* [[Template:Director table]] */
.director-table {
float: right;
width: 300px;
}
@media screen and (max-width: 720px) {
.director-table {
float: none;
width: 100%;
}
}
/* [[Template:Layered blueprint]] */
@-webkit-keyframes layered-blueprint-fade-in {
0% {
opacity: 0;
visibility: hidden;
}
100% {
opacity: 1;
visibility: visible;
}
}
@keyframes layered-blueprint-fade-in {
0% {
opacity: 0;
visibility: hidden;
}
100% {
opacity: 1;
visibility: visible;
}
}
.layered-blueprint-layer {
-webkit-animation: layered-blueprint-fade-in 200ms;
animation: layered-blueprint-fade-in 200ms;
}
@-webkit-keyframes layered-blueprint-fade-out {
0% {
opacity: 1;
visibility: visible;
}
100% {
opacity: 0;
visibility: hidden;
}
}
@keyframes layered-blueprint-fade-out {
0% {
opacity: 1;
visibility: visible;
}
100% {
opacity: 0;
visibility: hidden;
}
}
.layered-blueprint-radio:checked + .layered-blueprint-tab + .layered-blueprint-layer ~ .layered-blueprint-layer {
-webkit-animation: layered-blueprint-fade-out 200ms;
animation: layered-blueprint-fade-out 200ms;
}
/* Prevent page jump from the toolbar loading */
.client-js #editform {
/* To disable margin collapsing */
overflow: hidden;
}
.client-js .mw-editform > #wpTextbox1 {
margin-top: 73px;
}
.mw-editform .wikiEditor-ui-top {
min-height: 72px;
}
/* Alternating cell background */
.alternatecells:nth-child(2n+1) {
background-color: var(--custom-table-alternate-background, #f9f9f9);
}
/* Alternating table rows, primarily used with [[Template:Infobox row]] */
.alternaterows tr:nth-child(2n),
.infobox-rows tr:nth-child(2n) {
background-color: #F9F9F9;
}
/* Scale file page image to the width of the page */
#file img {
max-width: 100%;
height: auto;
}
/* Highlight clicked reference in blue to help navigation */
ol.references li:target,
sup.reference:target,
span.citation:target {
background-color: #C1DAF2;
}
/* Style the sitenotice */
#siteNotice #localNotice,
#siteNotice .globalNotice,
.page-MediaWiki_Sitenotice .mw-content-ltr {
background-color: #FFF;
border: 1px solid #D3D3D3;
margin-bottom: 12px;
text-align: center;
height: fit-content;
font-size: 16px;
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
#localNotice {
height: 60px;
overflow: hidden;
}
/* Allow parts of toc to be hidden */
/* Section levels */
.toc-hidelevel2 .toclevel-1 ul,
.toc-hidelevel3 .toclevel-2 ul,
.toc-hidelevel4 .toclevel-3 ul,
/* Numbers */
.toc-nonumbers .tocnumber {
display: none;
}
/* Turn a list into a tree view style (See [[.minecraft]]) */
.treeview {
margin-top: 0.3em;
}
.treeview .treeview-header {
padding-left: 3px;
font-weight: bold;
}
.treeview .treeview-header:last-child {
border-color: #636363 !important;
border-left-style: dotted;
}
.treeview .treeview-header:not(:last-child)::before {
content: none;
}
.treeview .treeview-header:last-child::before {
border-bottom: 0;
}
.treeview ul,
.treeview li {
margin: 0;
padding: 0;
list-style-type: none;
list-style-image: none;
}
.treeview li li {
position: relative;
padding-left: 13px;
margin-left: 7px;
border-left: 1px solid #636363;
}
.treeview li li::before {
content: "";
position: absolute;
top: 0;
left: -1px;
width: 11px;
height: 11px;
border-bottom: 1px solid #636363;
}
.treeview li li:last-child:not(.treeview-continue) {
border-color: transparent;
}
.treeview li li:last-child:not(.treeview-continue)::before {
border-left: 1px solid #636363;
width: 10px;
}
.nbttree-inherited {
background-color: #E6E6FA;
}
/* Simulate link styling for JS only links */
.jslink {
color: #0645AD;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.jslink:hover {
text-decoration: underline;
cursor: pointer;
}
.jslink:active {
color: #FAA700;
}
/* Try to use nearest neighbour scaling for pixelated images */
.filehistory a img,
.msgbox img,
.pixel-image,
.invslot-item-image,
.spriteedit-new-image,
.sprite {
image-rendering: optimizeSpeed;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: crisp-edges;
image-rendering: pixelated;
-ms-interpolation-mode: nearest-neighbor;
}
/* Make external links the same colour as internal links, the icon is enough to differentiate them */
#mw-content-text a.external {
color: #0645ad;
}
#mw-content-text a.external:visited {
color: #0b0080;
}
#mw-content-text a.external:active {
color: #faa700;
}
/* Mark internal links as plain
But something went wrong at bwiki
#content a.external[href^="https://wiki.biligame.com"],
#content a.external[href^="//wiki.biligame.com"] {
background: none;
padding-right: 0;
}
*/
/* Make tabs the correct size */
body {
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
/* Classes corresponding to Minecraft formatting codes */
.format-0 {
color: #000;
text-shadow: 0.125em 0.125em 0 #000;
}
.format-1 {
color: #00A;
text-shadow: 0.125em 0.125em 0 #00002A;
}
.format-2 {
color: #0A0;
text-shadow: 0.125em 0.125em 0 #002A00;
}
.format-3 {
color: #0AA;
text-shadow: 0.125em 0.125em 0 #002A2A;
}
.format-4 {
color: #A00;
text-shadow: 0.125em 0.125em 0 #2A0000;
}
.format-5 {
color: #A0A;
text-shadow: 0.125em 0.125em 0 #2A002A;
}
.format-6 {
color: #FA0;
text-shadow: 0.125em 0.125em 0 #2A2A00;
}
.format-7 {
color: #AAA;
text-shadow: 0.125em 0.125em 0 #2A2A2A;
}
.format-8 {
color: #555;
text-shadow: 0.125em 0.125em 0 #151515;
}
.format-9 {
color: #55F;
text-shadow: 0.125em 0.125em 0 #15153F;
}
.format-a {
color: #5F5;
text-shadow: 0.125em 0.125em 0 #153F15;
}
.format-b {
color: #5FF;
text-shadow: 0.125em 0.125em 0 #153F3F;
}
.format-c {
color: #F55;
text-shadow: 0.125em 0.125em 0 #3F1515;
}
.format-d {
color: #F5F;
text-shadow: 0.125em 0.125em 0 #3F153F;
}
.format-e {
color: #FF5;
text-shadow: 0.125em 0.125em 0 #3F3F15;
}
.format-f,
#minetip-tooltip {
color: #FFF;
text-shadow: 0.125em 0.125em 0 #3F3F3F;
}
.format-l {
font-weight: bold;
letter-spacing: 0.125em;
}
.format-m {
text-decoration: line-through;
}
.format-n {
text-decoration: underline;
}
.format-o {
font-style: italic;
}
/* Styling for minecraft style tooltip */
.explain.minetip {
border-bottom: 0;
text-decoration: underline dotted;
}
#minetip-tooltip {
position: fixed;
top: 0;
left: 0;
background-color: #100010;
background-color: rgba(16, 0, 16, 0.94);
padding: 0.375em;
font-family: Minecraft, "Arial Black", Unifont, "WenQuanYi Bitmap Song", SimSun, MingLiU, "GB18030 Bitmap", Beijing, sans-serif;
font-size: 0.99em;
word-spacing: 4px;
white-space: nowrap;
line-height: 1.25em;
margin: 0.125em 0.25em;
pointer-events: none;
z-index: 9999;
}
#minetip-tooltip::before {
content: "";
position: absolute;
top: 0.125em;
right: -0.125em;
bottom: 0.125em;
left: -0.125em;
border: 0.125em solid #100010;
border-style: none solid;
border-color: rgba(16, 0, 16, 0.94);
}
#minetip-tooltip::after {
content: "";
position: absolute;
top: 0.125em;
right: 0;
bottom: 0.125em;
left: 0;
border: 0.125em solid #2D0A63;
border-image: -webkit-linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
border-image: linear-gradient(rgba(80, 0, 255, 0.31), rgba(40, 0, 127, 0.31)) 1;
}
#minetip-tooltip > .description,
#minetip-tooltip > .minetip-description {
display: block;
margin-top: 0.25em;
}
.invslot-stacksize {
font-family: Minecraft, "Arial Black", sans-serif !important;
}
/* prevent sitenotice show/hide toggle from moving page contents down after pageload */
.globalNotice .globalNoticeDismiss {
float: right;
}
/* history table wrapping issue */
td > code {
display: inline-block;
line-height: 1.2;
}
/* Show abusefilter error footer only once at the end */
.errorbox li:not(:last-child) .abusefilter-message-footer {
display: none;
}
/* CUSTOMIZED RULES */
#siteNotice #localNotice, #siteNotice .globalNotice {
background-color: transparent;
border: none;
}
#localNotice .globalNoticeDismiss {
display: none;
}
/* Add icons for administrations, hide some Chinese varients */
#ca-varlang-1, #ca-varlang-2, #ca-varlang-5, #ca-varlang-6, #ca-varlang-7 {
display: none;
}
pre, tt, samp, .mw-code {
font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace, Courier;
}
code {
display: inline-block;
}
.load-page-button {
background-color: var(--custom-load-page-button-color);
}
@media screen and (max-width: 720px) {
div#mw-navigation div#mw-panel {
position: static !important;
}
body.page-Minecraft_Wiki.action-view img.banner-image {
display: none;
}
}
div.footer-post {
padding-bottom: 0;
}
/* search on small screens */
@media screen and (max-width: 720px) {
#mw-head {
top: 13px;
}
div#p-search form {
background: none;
border: none;
margin: 0;
}
div#p-search form::before,
div#p-search form::after {
border: none;
}
div#simpleSearch::before {
border-left-color: transparent;
}
div#simpleSearch::after {
border-top-color: transparent;
}
}
th,td{
padding: 4px;
}
.layered-blueprint-layer th, .layered-blueprint-layer td{
padding: 0px;
}
.mcui{
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.layered-blueprint-layer table{
border-spacing: 0px;
border-collapse: inherit;
}
table {
border-spacing: 2px;
border-collapse: inherit;
}
.bili-game-header-nav .bili-game-header-nav-main .bili-game-header-nav-wrap li:nth-child(6) {
display: none;
}