MediaWiki:Vector.css: Difference between revisions

From Valence Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Tag: Manual revert
 
(3 intermediate revisions by the same user not shown)
Line 264: Line 264:
#n-Discord a::after {
#n-Discord a::after {
     content: '';
     content: '';
     background: url('/images/a/aa/Discord_logo_icon.svg') no-repeat;
     background: url('data:image/svg+xml,<svg width="71" height="55" viewBox="0 0 71 55" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0)"><path d="M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z" fill="%23ffffff"/></g><defs><clipPath id="clip0"><rect width="71" height="55" fill="white"/></clipPath></defs></svg>') no-repeat;
     background-size: 17px 13px;
     background-size: 17px 13px;
     filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
     filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));

Latest revision as of 15:03, 24 February 2025

/* Using the Official League Wiki as a base */
/* <pre> */
:root {
    --ul-list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23fff'/%3E%3C/svg%3E");
	--diff-addedline-background: #114422;
	--diff-addedline-color: var(--league-white);
	--diff-inline-deletedline: #aa1111;
	
	/* 1680px + sidebar width */
	--fixed-width: calc(1680px + 168px);
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--body-background-image) var(--sidebar) top left / 1500px 375px no-repeat;
    max-width: var(--fixed-width);
    margin: auto;
}

#mw-head {
    max-width: var(--fixed-width);
	right: unset;
}

.vector-body {
    font-size: 0.9em;
}

.firstHeading {
    font-weight: bold;
}

pre,
code,
.mw-code {
    color: var(--league-white) !important; /*temporary important until I figure out where the CodeMirror css is stored*/
    background-color: var(--body-mid);
    border: 1px solid var(--body-border);
}

dl {
    margin: 0;
}

ul {
    list-style-image: var(--ul-list-style-image);
}

hr {
    background: none;
    border-color: var(--sidebar);
    border-style: solid;
    border-width: 1px 0 0 0;
    height: initial;
}

fieldset {
    border-color: var(--sidebar);
}

.vector-body blockquote {
    border-color: var(--body-mid);
}

:root {
    --personal-links-bg: var(--body-main);
    --arrow-down: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M11.05 3.996l-.965-1.053-4.035 3.86-3.947-3.86L1.05 3.996l5 5 5-5' fill='%23444'/%3E%3C/svg%3E");
}

/* For things that are hidden on desktop but needed on mobile */
.onlymobile {
	display: none;
}

.vector-menu-dropdown .vector-menu-heading {
    background-color: var(--vector-tab-background);
    padding: 1em 0.75em 0.6923em;
    margin: 0;
}

.vector-menu-dropdown .vector-menu-heading,
.vector-menu-dropdown .vector-menu-heading:hover,
.vector-menu-dropdown .vector-menu-heading:focus {
    color: var(--background-text-color);
}

.vector-menu-dropdown .vector-menu-heading:after {
    background-image: var(--arrow-down);
    opacity: 1;
}

.vector-menu-dropdown .vector-menu-content {
    border-color: transparent;
    background-color: var(--body-light);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    left: 0;
}

.vector-menu-dropdown .mw-list-item a {
    color: var(--link-color);
}

.vector-menu-dropdown .mw-list-item.selected a,
.vector-menu-dropdown .mw-list-item.selected a:visited {
    color: var(--link-color);
}

#p-personal {
    background: var(--personal-links-bg);
    top: 0;
    right: 0;
    border-radius: 0 0 0 4px;
    height: 1.875em;
}

#p-personal ul {
    padding: 0 1em 0 0.4375em;
}

:root {
	--searchbutton-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23EBDDC1' d='M12.2 13.6a7 7 0 1 1 1.4-1.4l5.4 5.4-1.4 1.4zM3 8a5 5 0 1 0 10 0A5 5 0 0 0 3 8z'/%3E%3C/svg%3E");
}

.vector-search-box {
    font-size: 0.8125em;
    min-width: unset;
    max-width: 20em;
    margin: 0;
}

.vector-search-box form {
    margin: 0;
}

.vector-search-box .cdx-search-input__end-button.cdx-button {
    top: 1px;
    right: 1px;
    background-image: var(--searchbutton-icon);
}

.vector-search-box-vue input.cdx-text-input__input,
.vector-search-box-vue input.cdx-text-input__input:enabled {
    background: var(--search-box);
    color: var(--text-color);
    padding: 7px 2.15384615em 7px 0;
    border: none;
    box-shadow: inset 0 -7px 7px -7px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    height: 2.5rem;
}

.vector-search-box-vue .cdx-text-input__input::placeholder {
    opacity: 1;
}

.vector-search-box-vue .cdx-menu {
    background-color: var(--body-light);
    border-color: var(--body-border);
}

.vector-search-box-vue .cdx-menu .cdx-menu-item--enabled,
.vector-search-box-vue .cdx-menu .cdx-menu-item--enabled .cdx-menu-item__content {
    color: var(--text-color);
}

.vector-search-box-vue .cdx-menu .cdx-thumbnail__placeholder,
.vector-search-box-vue .cdx-menu .cdx-thumbnail__image {
    background-color: var(--body-light);
    border-color: var(--body-border);
}

.vector-search-box-vue .cdx-menu .cdx-typeahead-search__search-footer__icon {
    color: var(--text-color);
}

.vector-search-box-vue .cdx-menu .cdx-menu-item--enabled.cdx-menu-item--highlighted {
    background-color: var(--body-dark);
}

.vector-search-box-vue .cdx-menu .cdx-menu-item--enabled.cdx-menu-item--highlighted,
.vector-search-box-vue .cdx-menu .cdx-menu-item--enabled.cdx-menu-item--highlighted .cdx-menu-item__content,
.vector-search-box-vue .cdx-menu .cdx-menu-item--enabled.cdx-menu-item--highlighted .cdx-menu-item__text__description {
    color: var(--text-color);
}

.vector-search-box-vue .cdx-menu .cdx-menu-item__text__description {
    color: var(--byline-color);
}

.vector-search-box-vue .cdx-search-input--has-end-button {
    background: none;
    border: none;
}

.vector-search-box-vue .cdx-search-input--has-end-button .cdx-search-input__input-wrapper {
    margin: 0;
}

.vector-search-box-vue .cdx-menu--has-footer .cdx-menu-item:last-of-type:not(:first-of-type) {
    border-color: var(--body-border);
}

#mw-panel {
    padding-top: 2.5em;
    left: unset;
}

div#mw-panel .vector-menu-portal .vector-menu-heading {
    color: var(--background-text-color);
    font-weight: bold;
    background: none;
}

div#mw-panel .vector-menu-portal .vector-menu-content li a,
div#mw-panel .vector-menu-portal .vector-menu-content li a:visited {
    color: var(--background-link-color);
}

#mw-panel .vector-menu-content-list {
  padding: .5em;
  background: #010a1391;
  border: 1px solid var(--league-grey-3);
  margin-left: -.5em;
  border-radius: 2px;
}

#mw-panel #p-Discord .vector-menu-content-list {
	margin-top: 0;
	background: none;
	border: 0;
}

#mw-panel .vector-menu-heading {
	margin-bottom: 0.25em;
}

#p-logo {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
    margin: -1.5em 0 0;
}

#n-Discord a {
    color: #fff !important;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid #4c57d0;
    background-color: #5865f2;
    display: block;
    position: relative;
    padding: 4px 4px 5px calc(17px + 6.5px * 2);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

#n-Discord a::before {
    content: 'Join our ';
    font-weight: normal;
    opacity: 0.85;
}

#n-Discord a::after {
    content: '';
    background: url('data:image/svg+xml,<svg width="71" height="55" viewBox="0 0 71 55" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0)"><path d="M60.1045 4.8978C55.5792 2.8214 50.7265 1.2916 45.6527 0.41542C45.5603 0.39851 45.468 0.440769 45.4204 0.525289C44.7963 1.6353 44.105 3.0834 43.6209 4.2216C38.1637 3.4046 32.7345 3.4046 27.3892 4.2216C26.905 3.0581 26.1886 1.6353 25.5617 0.525289C25.5141 0.443589 25.4218 0.40133 25.3294 0.41542C20.2584 1.2888 15.4057 2.8186 10.8776 4.8978C10.8384 4.9147 10.8048 4.9429 10.7825 4.9795C1.57795 18.7309 -0.943561 32.1443 0.293408 45.3914C0.299005 45.4562 0.335386 45.5182 0.385761 45.5576C6.45866 50.0174 12.3413 52.7249 18.1147 54.5195C18.2071 54.5477 18.305 54.5139 18.3638 54.4378C19.7295 52.5728 20.9469 50.6063 21.9907 48.5383C22.0523 48.4172 21.9935 48.2735 21.8676 48.2256C19.9366 47.4931 18.0979 46.6 16.3292 45.5858C16.1893 45.5041 16.1781 45.304 16.3068 45.2082C16.679 44.9293 17.0513 44.6391 17.4067 44.3461C17.471 44.2926 17.5606 44.2813 17.6362 44.3151C29.2558 49.6202 41.8354 49.6202 53.3179 44.3151C53.3935 44.2785 53.4831 44.2898 53.5502 44.3433C53.9057 44.6363 54.2779 44.9293 54.6529 45.2082C54.7816 45.304 54.7732 45.5041 54.6333 45.5858C52.8646 46.6197 51.0259 47.4931 49.0921 48.2228C48.9662 48.2707 48.9102 48.4172 48.9718 48.5383C50.038 50.6034 51.2554 52.5699 52.5959 54.435C52.6519 54.5139 52.7526 54.5477 52.845 54.5195C58.6464 52.7249 64.529 50.0174 70.6019 45.5576C70.6551 45.5182 70.6887 45.459 70.6943 45.3942C72.1747 30.0791 68.2147 16.7757 60.1968 4.9823C60.1772 4.9429 60.1437 4.9147 60.1045 4.8978ZM23.7259 37.3253C20.2276 37.3253 17.3451 34.1136 17.3451 30.1693C17.3451 26.225 20.1717 23.0133 23.7259 23.0133C27.308 23.0133 30.1626 26.2532 30.1066 30.1693C30.1066 34.1136 27.28 37.3253 23.7259 37.3253ZM47.3178 37.3253C43.8196 37.3253 40.9371 34.1136 40.9371 30.1693C40.9371 26.225 43.7636 23.0133 47.3178 23.0133C50.9 23.0133 53.7545 26.2532 53.6986 30.1693C53.6986 34.1136 50.9 37.3253 47.3178 37.3253Z" fill="%23ffffff"/></g><defs><clipPath id="clip0"><rect width="71" height="55" fill="white"/></clipPath></defs></svg>') no-repeat;
    background-size: 17px 13px;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    position: absolute;
    top: 5px;
    left: 7px;
    width: 17px;
    height: 13px;
}

#n-Discord a:hover {
    text-decoration: none;
    background-color: #525ee0;
}

.wgl-theme-dark #n-Discord a {
    background-color: #525ee0;
}

.wgl-theme-dark #n-Discord a:hover {
    background-color: #4c57d0;
}

:root {
	--vector-tab-background: var(--league-blue);
    --vector-tab-background--hover: var(--body-main);
	--vector-tab-link-color: var(--league-wheat-gold);
    --watch-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='transparent' stroke='%23C8AA6E' stroke-width='.8' d='m8.1 1.1 2.2 4.5 4.8.7-3.5 3.4.9 4.8L8 12.2l-4.3 2.3.8-4.8L1 6.3l4.8-.7z'/%3E%3C/svg%3E");
    --unwatch-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%23C8AA6E' stroke='%23C8AA6E' stroke-width='.8' d='m8.1 1.1 2.2 4.5 4.8.7-3.5 3.4.9 4.8L8 12.2l-4.3 2.3.8-4.8L1 6.3l4.8-.7z'/%3E%3C/svg%3E");
}

.vector-menu-tabs-legacy {
    padding: 0;
}

.vector-menu-tabs-legacy .new a,
.vector-menu-tabs-legacy .new a:visited {
    color: var(--redlink-color);
}

.vector-menu-tabs-legacy .selected {
    background: var(--body-main);
}

.vector-menu-tabs-legacy .selected a,
.vector-menu-tabs-legacy .selected a:visited {
    color: var(--text-color);
}

.vector-menu-tabs-legacy li a {
    color: var(--vector-tab-link-color);
    padding: 0 0.75em;
    padding-top: 1em;
}

.vector-menu-tabs-legacy li a:visited {
    color: var(--vector-tab-link-color);
}

.vector-menu-tabs-legacy ul li {
    background: var(--vector-tab-background);
}

.vector-menu-tabs-legacy ul a:hover {
    text-decoration: none;
}

#ca-view {
    display: none !important;
}

.vector-menu-tabs ul li:not(.selected):hover,
#p-cactions:hover #p-cactions-label {
    background: var(--vector-tab-background--hover);
}

.vector-menu-tabs ul li:not(.selected),
#mw-head .vector-menu-dropdown .vector-menu-heading {
    box-shadow: inset 0 -7px 7px -7px rgba(0, 0, 0, 0.15);
}

.vector-menu-tabs,
.vector-menu-tabs a,
#mw-head .vector-menu-dropdown .vector-menu-heading {
    background-image: none;
}

.ve-activated .vector-menu-tabs .selected {
    box-shadow: none;
}

.vector-menu-tabs #ca-watch.icon a:before,
.vector-menu-tabs #ca-watch.icon a:hover:before,
.vector-menu-tabs #ca-watch.icon a:focus:before {
    background-image: var(--watch-icon);
}

.vector-menu-tabs #ca-unwatch.icon a:before,
.vector-menu-tabs #ca-unwatch.icon a:hover:before,
.vector-menu-tabs #ca-unwatch.icon a:focus:before {
    background-image: var(--unwatch-icon);
}

#p-Recent_changes {
    display: block;
}

#p-Recent_changes .vector-menu-content {
    display: none;
}

#p-Recent_changes .vector-menu-heading:after {
    content: '';
    position: relative;
    left: 0.5em;
    display: inline-block;
    background-color: #3c7b07;
    width: 6px;
    height: 6px;
    border-radius: 100%;
}

#p-Recent_changes .rc-sidebar-item {
    position: relative;
    font-size: 0.75em;
    margin: 0.5em 0.25em 0 0.66em;
}

#p-Recent_changes .rc-sidebar-page {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: max-content;
}

#p-Recent_changes .rc-sidebar-page,
#p-Recent_changes .rc-sidebar-page:active,
#p-Recent_changes .rc-sidebar-page:visited {
    color: var(--background-link-color);
}

#p-Recent_changes .rc-sidebar-user {
    color: var(--byline-color);
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#p-Recent_changes .rc-sidebar-user a {
    color: inherit;
}

#p-Recent_changes .rc-sidebar-more {
    text-align: left;
}

#p-Recent_changes .rc-sidebar-more .rc-sidebar-page {
    display: inline-block;
}

figure[typeof~='mw:File/Thumb'],
figure[typeof~='mw:File/Frame'],
div.thumbinner {
    border: none;
    background-color: var(--thumb-bg);
}

figure[typeof~='mw:File/Thumb'] > :not(figcaption) .mw-file-element,
figure[typeof~='mw:File/Frame'] > :not(figcaption) .mw-file-element,
.thumbimage {
    border: none;
    background: var(--thumb-bg);
    margin-bottom: 0;
}

figure[typeof~='mw:File/Thumb'] > figcaption,
figure[typeof~='mw:File/Frame'] > figcaption,
.thumbcaption {
    border: none;
    background-color: var(--thumb-caption-bg);
    padding: 4px 6px;
}

figure[typeof~='mw:File/Thumb'] > .mw-file-description::after,
figure[typeof~='mw:File/Thumb'] > .mw-file-magnify::after {
    bottom: -15px;
}

:root {
    --toc-bg: var(--league-black);
    --toc-title-bg: var(--body-dark);
    --toc-border-color: var(--body-border);
    --toc-list-border-color: var(--body-border);
}

.toc {
    font-size: 0.9em;
    background: var(--toc-bg);
    margin-top: 1em;
    padding: 0;
    border-color: var(--toc-border-color);
    box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
    clear: left;
}

.toc .toctitle {
    background: var(--toc-title-bg);
    padding: 0.25em 1em;
}

.toc .toctitle h2 {
    font-family: inherit;
}

.toc > ul {
    line-height: 1.8em;
    padding: 0.75em 1.75em;
    margin: 0;
}

.toc ul ul {
    border-left: 1px dotted var(--toc-list-border-color);
    padding-left: 0.5em;
}

.tocnumber {
    display: none;
}

.toctogglespan {
    padding-left: 0.2em;
    font-size: 0.9em;
}

.toctogglelabel {
    color: var(--link-color);
}

.toclimit-2 #toc .toclevel-2,
.toclimit-3 #toc .toclevel-3,
.toclimit-4 #toc .toclevel-4,
.toclimit-5 #toc .toclevel-5,
.toclimit-6 #toc .toclevel-6,
.toclimit-7 #toc .toclevel-7 {
    display: none;
}

:root {
    --external-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8AA6E' d='M6 1h5v5L8.86 3.85 4.7 8 4 7.3l4.15-4.16L6 1Z M2 3h2v1H2v6h6V8h1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
}

.mw-parser-output a.external {
    background-image: var(--external-icon);
    background-size: 0.833em;
}

.mw-editsection {
    font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', sans-serif;
}

.client-js .mw-content-ltr .mw-editsection-bracket:first-of-type,
.client-js .mw-content-ltr .mw-editsection-bracket:not(:first-of-type),
.mw-editsection-divider {
    color: var(--text-color);
}

#mw-content-subtitle,
#contentSub2 {
    color: var(--byline-color);
    margin: 0;
}

#mw-content-subtitle:not(:empty),
#contentSub2:not(:empty) {
    margin: 0 0 1.4em 0;
}

.mw-collapsible:not( .mw-made-collapsible) th::before,
.mw-collapsible .mw-collapsible-toggle {
    font-weight: normal;
    margin-left: 0.2em;
}

.mw-collapsible-toggle-default .mw-collapsible-text,
.mw-collapsible-toggle-default:active .mw-collapsible-text {
    color: var(--link-color);
}

.ace-tm {
    background-color: var(--sourceeditor-input-background);
    color: var(--text-color);
}

.ace-tm .ace_gutter {
    background: var(--body-mid);
    color: var(--text-color);
}

.ace_gutter-cell { /* removed .ace-tm */
    color: var(--link-color); /*The line numbers in the editors.*/
}

.ace-tm .ace_gutter-active-line {
    background-color: var(--body-light);
}

.ace_search {
    background-color: var(--body-light);
    color: var(--text-color);
    border-color: var(--body-mid);
}

.ace_search_field {
    background-color: var(--ooui-input);
    color: var(--ooui-text);
    border-color: var(--ooui-input-border);
}

.ace_searchbtn {
    border-color: var(--ooui-normal-border);
    background-color: var(--ooui-normal);
    color: var(--ooui-text);
}

.ace_searchbtn:last-child {
    border-color: var(--ooui-normal-border);
}

.ace_searchbtn:hover {
    background-color: var(--ooui-normal--hover);
}

.ace_searchbtn.prev:after,
.ace_searchbtn.next:after {
    border-color: var(--ooui-text);
}

.ace_button {
    color: var(--text-color);
}

.ace_button:hover {
    background-color: rgba(0, 23, 70, 0.086);
}

.ace_button:active {
    background-color: rgba(0, 23, 70, 0.06);
}

.ace_button.checked {
    border-color: var(--ooui-accent);
}

.mw-editform #wpTextbox1 {
    color: var(--text-color);
    background: var(--sourceeditor-input-background);
    border-color: var(--sourceeditor-border);
}

input[name="model"][value="Scribunto"] ~ .wikiEditor-ui #wpTextbox1,
input[name="model"][value="css"] ~ .wikiEditor-ui #wpTextbox1,
input[name="model"][value="less"] ~ .wikiEditor-ui #wpTextbox1,
input[name="model"][value="javascript"] ~ .wikiEditor-ui #wpTextbox1,
input[name="model"][value="json"] ~ .wikiEditor-ui #wpTextbox1 {
    height: 600px;
}

.tdg-templateDataDialog-listParamsPanel textarea.oo-ui-textInputWidget-autosized {
    resize: vertical;
}

#wpAceFilterEditor {
    resize: horizontal;
}

.warn-userupload,
.ns-2 .upload-own-work {
    display: none;
}

.ns-2 .warn-userupload {
    display: inline;
}

textarea[name="wfUploadDescription"] {
    height: 3em;
}

#editform {
    margin-top: 1.25em;
}

#mw-scribunto-input,
#mw-scribunto-output {
    padding: 3px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.5em;
}

#mw-scribunto-input {
    background-color: var(--ooui-input);
    border-color: var(--ooui-input-border);
}

:root {
    --scribuntoconsole-input: #0b5884;
    --scibuntoconsole-print: #a48900;
    --scribuntoconsole-error: #9f261e;
    --scribuntoconsole-message: #3c780a;
    --scribuntoconsole-tabcomplete: #4f348b;
    --scribuntoconsole-clear: #9f261e;
}

.mw-scribunto-console-fieldset {
    color: inherit;
    background-color: var(--ooui-interface);
    border-color: var(--ooui-interface-border);
}

.mw-scribunto-normalOutput,
.mw-scribunto-print,
.mw-scribunto-error,
.mw-scribunto-propList,
.mw-scribunto-message,
.mw-scribunto-tabcomplete {
    background: none;
}

.mw-scribunto-input {
    color: var(--scribuntoconsole-input);
}

.mw-scribunto-normalOutput {
    color: inherit;
}

.mw-scribunto-print {
    color: var(--scibuntoconsole-print);
}

.mw-scribunto-error {
    color: var(--scribuntoconsole-error);
}

.mw-scribunto-propList,
.mw-scribunto-message {
    color: var(--scribuntoconsole-message);
}

.mw-scribunto-tabcomplete {
    color: var(--scribuntoconsole-tabcomplete);
}

.mw-scribunto-clear {
    color: var(--scribuntoconsole-clear);
    border-bottom-color: var(--scribuntoconsole-clear);
}

.ui-widget-overlay {
    background: var(--ooui-window-background);
}

.ui-dialog,
.ui-widget-content {
    background-color: var(--body-light);
    border-color: var(--body-border);
    background-image: none;
    color: var(--text-color);
}

.ui-dialog .ui-dialog-titlebar.ui-widget-header,
.ui-widget-content .ui-dialog-titlebar.ui-widget-header {
    background-image: none !important;
    background-color: var(--body-dark) !important;
    border-color: var(--body-border) !important;
}

.ui-dialog .ui-dialog-titlebar .ui-dialog-title,
.ui-widget-content .ui-dialog-titlebar .ui-dialog-title {
    color: var(--text-color);
}

.ui-dialog .ui-dialog-titlebar-close,
.ui-widget-content .ui-dialog-titlebar-close {
    background-color: var(--ooui-normal);
}

.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-widget-content .ui-dialog-titlebar-close:hover {
    background: var(--ooui-normal--hover);
    border: var(--link-color);
}

.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    background: var(--ooui-normal) !important;
    color: var(--ooui-text);
    border-color: var(--ooui-normal-border) !important;
}

.ui-button:hover,
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover {
    background: var(--ooui-normal--hover) !important;
    color: var(--ooui-text);
}


/********************/
/* Infoboxes        */
/********************/
.multi-infobox {
	float: right;
	clear: right;
	margin-left: 2em;
}
.multi-infobox .infobox {
	clear: right;
	margin-left: 0;
}
.infobox {
	width: 300px;
	float: right;
	margin-left: 2em;
}
.infobox.type-champion-stats{
	float: left;
	width: calc(100% - 2em - 300px);
	max-width: 400px;
    min-width: 270px;
	margin-left: 0;
}
.pi-data-value > ul {
	margin-left: 10px;
}


.skill-info a[href$="?action=edit"] + a[href$="?action=edit"] {
    display: none;
}

.poh-room {
    background-color: var(--infobox-room-poh-color);
    margin: auto;
    width: 100px;
}

.poh-room img {
    display: block;
}

.poh-room-row {
    display: flex;
}

.poh-room-text {
    margin: auto;
    width: 92px;
}

/*.infobox-buttons {*/
/*    text-align: center;*/
/*    max-width: 300px;*/
/*    display: none;*/
/*}*/

/*.infobox-switch-resources {*/
/*    display: none;*/
/*}*/

/*.switch-infobox .switch-infobox-triggers,*/
/*.switch-infobox .loading-button {*/
/*    clear: left;*/
/*}*/

/*.infobox-pure .max-hit-list a {*/
/*    display: inline-block;*/
/*    min-width: 32px;*/
/*    min-height: 32px;*/
/*    text-align: center;*/
/*}*/

/*.advanced-data {*/
/*    display: none;*/
/*}*/

/*.multi-infobox {*/
/*    float: right;*/
/*    margin: 0 0 calc(1em - 5px) calc(1em - 5px);*/
/*}*/

/*.multi-infobox .tabber {*/
/*    margin: 0;*/
/*}*/

/*.multi-infobox .tabber .tabbernav {*/
/*    text-align: center;*/
/*    margin: 0;*/
/*}*/

/*.multi-infobox .tabber .tabbernav a {*/
/*    padding: 0.5em 0.8em;*/
/*}*/

/*.multi-infobox .tabber .tabbertab {*/
/*    padding: 5px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*.multi-infobox .infobox {*/
/*    margin: 0;*/
/*}*/


/*.navbox .navbox {*/
/*    font-size: 100%;*/
/*    margin: 0.5em auto 0;*/
/*    box-shadow: none;*/
/*}*/

/*.navbox-title {*/
/*    font-size: 110%;*/
/*    line-height: 1.6em;*/
/*    background: var(--navbox-title-background);*/
/*    text-align: center;*/
/*    padding: 0.25em 1em;*/
/*}*/

/*.navbox-title-name {*/
/*    margin: 0 4em;*/
/*}*/

/*.navbox-title .mw-collapsible-toggle {*/
/*    font-size: 0.9em;*/
/*    text-align: right;*/
/*}*/

/*.navbox-title .navbox {*/
/*    font-size: 100%;*/
/*}*/

/*.navbox-group:nth-child(2) {*/
/*    border-top: 1px solid var(--navbox-border);*/
/*}*/

/*.navbox-group-title {*/
/*    background: var(--navbox-group-title-background);*/
/*    border: 1px solid var(--navbox-border);*/
/*    border-width: 0 1px 1px 0;*/
/*    text-align: left;*/
/*    padding: 0.25em 1em;*/
/*    width: 1%;*/
/*    white-space: nowrap;*/
/*}*/

/*.navbox-list {*/
/*    border-bottom: 1px solid var(--navbox-border);*/
/*    padding: 0.25em 0.5em;*/
/*}*/

/*.navbox-list ul {*/
/*    margin: 0;*/
/*}*/

/*.navbox-list li {*/
/*    display: inline;*/
/*    white-space: nowrap;*/
/*}*/

/*.navbox-list li + li::before {*/
/*    content: '• ';*/
/*}*/

/*.navbox-parent {*/
/*    padding: 0;*/
/*}*/

/*.navbox-subgroup {*/
/*    border-collapse: collapse;*/
/*    border-spacing: 0;*/
/*    width: 100%;*/
/*}*/

/*.navbox-subgroup > tbody > tr:last-child > th,*/
/*.navbox-subgroup > tbody > tr:last-child > td {*/
/*    border-bottom: none;*/
/*}*/

/*.navbox-footer {*/
/*    background: var(--navbox-footer-background);*/
/*    text-align: center;*/
/*    padding: 0.25em 1em;*/
/*}*/

/*.navbox-data {*/
/*    display: none;*/
/*}*/

:root {
    --echo-icon-moon-bg-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg height='21' viewBox='0 0 21 21' width='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8.85464918.37900488c-1.91149353 1.51069427-3.13816124 3.84973402-3.13816124 6.47527736 0 4.55564936 3.69308349 8.24873286 8.24873286 8.24873286 2.5815709 0 4.8861545-1.1859235 6.3986798-3.0426994-.8206378 4.7389755-4.9523867 8.343122-9.9259291 8.343122-5.56375572 0-10.07407088-4.5103151-10.07407088-10.0740709 0-5.02506013 3.67919933-9.19079725 8.49074856-9.95036192z' fill='%23C8AA6E'/%3E%3C/svg%3E");
    --echo-icon-person-bg-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%2213.836%22 viewBox=%220 0 12 13.836%22%3E %3Cpath fill='%23C8AA6E' d=%22M1.938%2C6.656c-1.32%2C1.485-1.47%2C3.15-0.97%2C4.25c0.323%2C0.707%2C0.78%2C1.127%2C1.313%2C1.375 c0.496%2C0.229%2C1.074%2C0.273%2C1.658%2C0.282c0.023%2C0%2C0.04%2C0.03%2C0.062%2C0.03h4.187c0.61%2C0%2C1.225-0.125%2C1.75-0.405 c0.527-0.28%2C0.961-0.718%2C1.188-1.376c0.335-0.964%2C0.175-2.529-1.094-4.03C9.094%2C7.954%2C7.68%2C8.719%2C6.065%2C8.719 c-1.677%2C0-3.182-0.812-4.125-2.063H1.938z%22/%3E %3Cpath fill='%23C8AA6E' d=%22M6.063%2C0c-1.89%2C0-3.595%2C1.674-3.594%2C3.563C2.467%2C5.45%2C4.173%2C7.155%2C6.06%2C7.155 c1.89%2C0%2C3.564-1.705%2C3.563-3.593C9.625%2C1.673%2C7.95%2C0%2C6.063%2C0L6.063%2C0z%22/%3E %3C/svg%3E");
    --echo-icon-bell-bg-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3Ebell%3C/title%3E%3Cpath d=%22M16 7a5.38 5.38 0 00-4.46-4.85C11.6 1.46 11.53 0 10 0S8.4 1.46 8.46 2.15A5.38 5.38 0 004 7v6l-2 2v1h16v-1l-2-2zm-6 13a3 3 0 003-3H7a3 3 0 003 3z%22 fill='%23C8AA6E'/%3E%3C/svg%3E");
    --echo-icon-tray-bg-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3Etray%3C/title%3E%3Cpath d=%22M3 1a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V3a2 2 0 00-2-2zm14 12h-4l-1 2H8l-1-2H3V3h14z%22 fill='%23C8AA6E'/%3E%3C/svg%3E");
    --echo-icon-fullscreen-bg-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3E fullscreen %3C/title%3E%3Cg fill='%23C8AA6E'%3E%3Cpath d='M1 1v6h2V3h4V1zm2 12H1v6h6v-2H3zm14 4h-4v2h6v-6h-2zm0-16h-4v2h4v4h2V1z'/%3E%3C/g%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
    --echo-icon-exitFullscreen-bg-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3E exit fullscreen %3C/title%3E%3Cg fill='%23C8AA6E'%3E%3Cpath d='M7 7V1H5v4H1v2zM5 19h2v-6H1v2h4zm10-4h4v-2h-6v6h2zm0-8h4V5h-4V1h-2v6z'/%3E%3C/g%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
}

.vector-user-menu-legacy #pt-userpage a,
.vector-user-menu-legacy #pt-anonuserpage {
    background-image: var(--echo-icon-person-bg-image);
    padding-top: 0;
    background-position-y: 0;
}

.vector-user-menu-legacy #pt-anonuserpage {
    color: var(--byline-color);
}

#pt-notifications-alert .mw-echo-notifications-badge,
#pt-notifications-notice .mw-echo-notifications-badge {
    background-size: 75%;
    background-position: center 80%;
    background-repeat: no-repeat;
    opacity: unset;
}

#pt-notifications-alert .mw-echo-notifications-badge.mw-echo-notifications-badge-all-read,
#pt-notifications-notice .mw-echo-notifications-badge.mw-echo-notifications-badge-all-read {
    opacity: unset;
}

#pt-notifications-alert .oo-ui-icon-bell {
    background-image: var(--echo-icon-bell-bg-image);
}

#pt-notifications-notice .oo-ui-icon-tray {
    background-image: var(--echo-icon-tray-bg-image);
}

#pt-fixed-width .oo-ui-icon-advanced {
    background-image: var(--echo-icon-exitFullscreen-bg-image);
}

body.wgl-fixedWidth #pt-fixed-width .oo-ui-icon-advanced {
    background-image: var(--echo-icon-fullscreen-bg-image);
}

#pt-theme-toggles .oo-ui-icon-advanced {
    background-image: var(--echo-icon-moon-bg-image);
}

#pt-anontalk {
    padding-top: 0.6em;
}

.ns-120 .mw-parser-output > ul,
.transcript > ul {
    margin: 5px 0 0 0;
}

.ns-120 .mw-parser-output > ul ul,
.transcript > ul ul,
.ns-120 .mw-parser-output > ul ol,
.transcript > ul ol {
    margin: 5px 0 0 15px;
}

.ns-120 .mw-parser-output > ul,
.transcript > ul,
.ns-120 .mw-parser-output > ul ul,
.transcript > ul ul,
.ns-120 .mw-parser-output > ul ol,
.transcript > ul ol {
    list-style: none;
    border-left: 1px dashed var(--transcript-border-color);
}

.ns-120 .mw-parser-output > ul:hover,
.transcript > ul:hover,
.ns-120 .mw-parser-output > ul ul:hover,
.transcript > ul ul:hover,
.ns-120 .mw-parser-output > ul ol:hover,
.transcript > ul ol:hover {
    border-color: var(--transcript-border-hover-color);
}

.ns-120 .mw-parser-output > ul li,
.transcript > ul li,
.ns-120 .mw-parser-output > ul ul li,
.transcript > ul ul li,
.ns-120 .mw-parser-output > ul ol li,
.transcript > ul ol li {
    flex-direction: column;
    padding-left: 15px;
    margin: 14px 0;
}

.ns-120 .mw-parser-output > ul li:last-of-type,
.transcript > ul li:last-of-type,
.ns-120 .mw-parser-output > ul ul li:last-of-type,
.transcript > ul ul li:last-of-type,
.ns-120 .mw-parser-output > ul ol li:last-of-type,
.transcript > ul ol li:last-of-type {
    margin-bottom: 0;
}

.nodesktop {
    display: none;
}

/* random left navigation alignment screen width fix */
#left-navigation {
    margin-left: 10rem;
}
.mw-body, #mw-data-after-content {
    margin-left: 10rem;
}
@media screen and (min-width: 982px){
	.mw-body, #mw-head-base, #left-navigation, #mw-data-after-content, .mw-footer {
		margin-left: 11rem;
	}	
}

/********************/
/*     Main page    */
/********************/
.mainpage-row {
	display: flex;
	gap: 3em;
	flex-wrap: wrap;
}




/* =============================
           Syntax highlighting
   ============================== */
.mw-highlight {
  background: none;
}
.mw-highlight pre {
  background-color: inherit;
}
.mw-highlight pre .hll {
  background-color: #49483e;
}
.mw-highlight pre .c {
  color: #949eaa;
}
/* Comment */
.mw-highlight pre .err {
  color: #960050;
}
/* Error */
.mw-highlight pre .k {
  color: #66d9ef;
}
/* Keyword */
.mw-highlight pre .l {
  color: #ae81ff;
}
/* Literal */
.mw-highlight pre .n {
  color: #f8f8f2;
}
/* Name */
.mw-highlight pre .o {
  color: #f92672;
}
/* Operator */
.mw-highlight pre .p {
  color: #f8f8f2;
}
/* Punctuation */
.mw-highlight pre .ch {
  color: #949eaa;
}
/* Comment.Hashbang */
.mw-highlight pre .cm {
  color: #949eaa;
}
/* Comment.Multiline */
.mw-highlight pre .cp {
  color: #949eaa;
}
/* Comment.Preproc */
.mw-highlight pre .cpf {
  color: #949eaa;
}
/* Comment.PreprocFile */
.mw-highlight pre .c1 {
  color: #949eaa;
}
/* Comment.Single */
.mw-highlight pre .cs {
  color: #949eaa;
}
/* Comment.Special */
.mw-highlight pre .gd {
  color: #f92672;
}
/* Generic.Deleted */
.mw-highlight pre .ge {
  font-style: italic;
}
/* Generic.Emph */
.mw-highlight pre .gi {
  color: #a6e22e;
}
/* Generic.Inserted */
.mw-highlight pre .gs {
  font-weight: bold;
}
/* Generic.Strong */
.mw-highlight pre .gu {
  color: #949eaa;
}
/* Generic.Subheading */
.mw-highlight pre .kc {
  color: #66d9ef;
}
/* Keyword.Constant */
.mw-highlight pre .kd {
  color: #66d9ef;
}
/* Keyword.Declaration */
.mw-highlight pre .kn {
  color: #f92672;
}
/* Keyword.Namespace */
.mw-highlight pre .kp {
  color: #66d9ef;
}
/* Keyword.Pseudo */
.mw-highlight pre .kr {
  color: #66d9ef;
}
/* Keyword.Reserved */
.mw-highlight pre .kt {
  color: #66d9ef;
}
/* Keyword.Type */
.mw-highlight pre .ld {
  color: #e6db74;
}
/* Literal.Date */
.mw-highlight pre .m {
  color: #ae81ff;
}
/* Literal.Number */
.mw-highlight pre .s {
  color: #e6db74;
}
/* Literal.String */
.mw-highlight pre .na {
  color: #a6e22e;
}
/* Name.Attribute */
.mw-highlight pre .nb {
  color: #f8f8f2;
}
/* Name.Builtin */
.mw-highlight pre .nc {
  color: #a6e22e;
}
/* Name.Class */
.mw-highlight pre .no {
  color: #66d9ef;
}
/* Name.Constant */
.mw-highlight pre .nd {
  color: #a6e22e;
}
/* Name.Decorator */
.mw-highlight pre .ni {
  color: #f8f8f2;
}
/* Name.Entity */
.mw-highlight pre .ne {
  color: #a6e22e;
}
/* Name.Exception */
.mw-highlight pre .nf {
  color: #a6e22e;
}
/* Name.Function */
.mw-highlight pre .nl {
  color: #f8f8f2;
}
/* Name.Label */
.mw-highlight pre .nn {
  color: #f8f8f2;
}
/* Name.Namespace */
.mw-highlight pre .nx {
  color: #a6e22e;
}
/* Name.Other */
.mw-highlight pre .py {
  color: #f8f8f2;
}
/* Name.Property */
.mw-highlight pre .nt {
  color: #f92672;
}
/* Name.Tag */
.mw-highlight pre .nv {
  color: #f8f8f2;
}
/* Name.Variable */
.mw-highlight pre .ow {
  color: #f92672;
}
/* Operator.Word */
.mw-highlight pre .w {
  color: #f8f8f2;
}
/* Text.Whitespace */
.mw-highlight pre .mb {
  color: #ae81ff;
}
/* Literal.Number.Bin */
.mw-highlight pre .mf {
  color: #ae81ff;
}
/* Literal.Number.Float */
.mw-highlight pre .mh {
  color: #ae81ff;
}
/* Literal.Number.Hex */
.mw-highlight pre .mi {
  color: #ae81ff;
}
/* Literal.Number.Integer */
.mw-highlight pre .mo {
  color: #ae81ff;
}
/* Literal.Number.Oct */
.mw-highlight pre .sa {
  color: #e6db74;
}
/* Literal.String.Affix */
.mw-highlight pre .sb {
  color: #e6db74;
}
/* Literal.String.Backtick */
.mw-highlight pre .sc {
  color: #e6db74;
}
/* Literal.String.Char */
.mw-highlight pre .dl {
  color: #e6db74;
}
/* Literal.String.Delimiter */
.mw-highlight pre .sd {
  color: #e6db74;
}
/* Literal.String.Doc */
.mw-highlight pre .s2 {
  color: #e6db74;
}
/* Literal.String.Double */
.mw-highlight pre .se {
  color: #ae81ff;
}
/* Literal.String.Escape */
.mw-highlight pre .sh {
  color: #e6db74;
}
/* Literal.String.Heredoc */
.mw-highlight pre .si {
  color: #e6db74;
}
/* Literal.String.Interpol */
.mw-highlight pre .sx {
  color: #e6db74;
}
/* Literal.String.Other */
.mw-highlight pre .sr {
  color: #e6db74;
}
/* Literal.String.Regex */
.mw-highlight pre .s1 {
  color: #e6db74;
}
/* Literal.String.Single */
.mw-highlight pre .ss {
  color: #e6db74;
}
/* Literal.String.Symbol */
.mw-highlight pre .bp {
  color: #f8f8f2;
}
/* Name.Builtin.Pseudo */
.mw-highlight pre .fm {
  color: #a6e22e;
}
/* Name.Function.Magic */
.mw-highlight pre .vc {
  color: #f8f8f2;
}
/* Name.Variable.Class */
.mw-highlight pre .vg {
  color: #f8f8f2;
}
/* Name.Variable.Global */
.mw-highlight pre .vi {
  color: #f8f8f2;
}
/* Name.Variable.Instance */
.mw-highlight pre .vm {
  color: #f8f8f2;
}
/* Name.Variable.Magic */
.mw-highlight pre .il {
  color: #ae81ff;
}
/* Literal.Number.Integer.Long */
.mw-highlight pre .lineno {
  color: #949eaa;
}
/* Line number */
.mw-json th {
  background-color: #222e45;
  border-color: #172136;
  font-size: inherit;
}
.mw-json td {
  background-color: #313e59;
  border-color: #172136;
  font-size: inherit;
}

/* --------------------------
           ACE EDITOR
   -------------------------- */
.ace-tm {
  background-color: var(--body-main);
  color: var(--text-color);
}
.ace-tm .ace_gutter {
  background: var(--body-mid);
  color: var(--text-color);
}
.ace-tm .ace_gutter-cell {
  color: var(--text-color);
}
.ace-tm .ace_gutter-active-line {
  background-color: var(--body-light);
}
.ace_search {
  background-color: var(--body-light);
  color: var(--text-color);
  border-color: var(--body-mid);
}
.ace_search_field {
  background-color: #384766;
  color: #cbd9f4;
  border-color: #475980;
}
.ace_searchbtn {
  border-color: #3f5073;
  background-color: var(--ooui-normal);
  color: #cbd9f4;
}
.ace_searchbtn:last-child {
  border-color: #3f5073;
}
.ace_searchbtn:hover {
  background-color: #384766;
}
.ace_searchbtn.prev:after,
.ace_searchbtn.next:after {
  border-color: #cbd9f4;
}
.ace_button {
  color: var(--text-color);
}
.ace_button:hover {
  background-color: rgba(0, 23, 70, 0.086);
}
.ace_button:active {
  background-color: rgba(0, 23, 70, 0.06);
}
.ace_button.checked {
  border-color: var(--link-color);
}

/* =======================================
       syntax highlight in less code view
   ======================================= */
.mw-highlight .linenos {
  background-color: #313e59;
}
.mw-content-ltr.mw-highlight-lines pre,
.mw-content-ltr.content .mw-highlight-lines pre {
  box-shadow: inset 2.75em 0 0 #313e59;
}
/* =======================================
       syntax highlight in ace editor
   ======================================= */
body .ace-tm .ace_gutter,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_gutter {
  background: #313e59;
  color: #cbd9f4;
}
body .ace-tm .ace_print-margin,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_print-margin {
  width: 1px;
  background: #555651;
}
body .ace-tm,
body .ve-ui-mwAceEditorWidget .ace-tm {
  background-color: #222e45;
  color: #f8f8f2;
}
body .ace-tm .ace_cursor,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_cursor {
  color: #f8f8f0;
}
body .ace-tm .ace_marker-layer .ace_selection,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_marker-layer .ace_selection {
  background: #334567;
}
body .ace-tm.ace_multiselect .ace_selection.ace_start,
body .ve-ui-mwAceEditorWidget .ace-tm.ace_multiselect .ace_selection.ace_start {
  box-shadow: 0 0 3px 0px #334567;
}
body .ace-tm .ace_marker-layer .ace_step,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_marker-layer .ace_step {
  background: #665200;
}
body .ace-tm .ace_marker-layer .ace_bracket,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_marker-layer .ace_bracket {
  margin: -1px 0 0 -1px;
  border: 1px solid #49483e;
}
body .ace-tm .ace_marker-layer .ace_active-line,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_marker-layer .ace_active-line {
  background: #2a3956;
}
body .ace-tm .ace_gutter-active-line,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_gutter-active-line {
  background-color: #43557a;
}
body .ace-tm .ace_marker-layer .ace_selected-word,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_marker-layer .ace_selected-word {
  border: 1px solid #49483e;
  background: #49483e;
}
body .ace-tm .ace_invisible,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_invisible {
  color: #52524d;
}
body .ace-tm .ace_entity.ace_name.ace_tag,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_entity.ace_name.ace_tag,
body .ace-tm .ace_keyword,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_keyword,
body .ace-tm .ace_meta.ace_tag,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_meta.ace_tag,
body .ace-tm .ace_storage,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_storage {
  color: #f92672;
}
body .ace-tm .ace_punctuation,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_punctuation,
body .ace-tm .ace_punctuation.ace_tag,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_punctuation.ace_tag {
  color: #fff;
}
body .ace-tm .ace_constant.ace_character,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_constant.ace_character,
body .ace-tm .ace_constant.ace_language,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_constant.ace_language,
body .ace-tm .ace_constant.ace_numeric,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_constant.ace_numeric,
body .ace-tm .ace_constant.ace_other,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_constant.ace_other {
  color: #ae81ff;
}
body .ace-tm .ace_invalid,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_invalid {
  color: #f8f8f0;
  background-color: #f92672;
}
body .ace-tm .ace_invalid.ace_deprecated,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_invalid.ace_deprecated {
  color: #f8f8f0;
  background-color: #ae81ff;
}
body .ace-tm .ace_support.ace_constant,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_support.ace_constant,
body .ace-tm .ace_support.ace_function,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_support.ace_function {
  color: #66d9ef;
}
body .ace-tm .ace_fold,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_fold {
  background-color: #a6e22e;
  border-color: #f8f8f2;
}
body .ace-tm .ace_storage.ace_type,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_storage.ace_type,
body .ace-tm .ace_support.ace_class,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_support.ace_class,
body .ace-tm .ace_support.ace_type,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_support.ace_type {
  color: #66d9ef;
}
body .ace-tm .ace_entity.ace_name.ace_function,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_entity.ace_name.ace_function,
body .ace-tm .ace_entity.ace_other,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_entity.ace_other,
body .ace-tm .ace_entity.ace_other.ace_attribute-name,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_entity.ace_other.ace_attribute-name,
body .ace-tm .ace_variable,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_variable {
  color: #a6e22e;
}
body .ace-tm .ace_variable.ace_parameter,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_variable.ace_parameter {
  color: #fd971f;
}
body .ace-tm .ace_string,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_string {
  color: #e6db74;
}
body .ace-tm .ace_keyword.ace_operator,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_keyword.ace_operator {
  color: #949eaa;
}
body .ace-tm .ace_comment,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_comment {
  color: #949eaa;
}
body .ace-tm .ace_indent-guide,
body .ve-ui-mwAceEditorWidget .ace-tm .ace_indent-guide {
  background: none;
  border-right: solid 1px #334567;
  margin-left: -1px;
}
/* ===========================
        Lua debug console
   =========================== */
#mw-scribunto-input {
  background-color: #384766;
  border: 1px solid #475980;
}
.mw-scribunto-console-fieldset {
  color: #cbd9f4;
  background-color: #222e45;
}
.mw-scribunto-normalOutput,
.mw-scribunto-print,
.mw-scribunto-error,
.mw-scribunto-propList,
.mw-scribunto-message,
.mw-scribunto-tabcomplete {
  background: none;
}
.mw-scribunto-input {
  color: #3ea6e6;
}
.mw-scribunto-normalOutput {
  color: #cbd9f4;
}
.mw-scribunto-print {
  color: #f9d000;
}
.mw-scribunto-error {
  color: #ee4231;
}
.mw-scribunto-propList,
.mw-scribunto-message {
  color: #6bc71f;
}
.mw-scribunto-tabcomplete {
  color: #855cd8;
}
.mw-scribunto-clear {
  color: #ee4231;
  border-bottom-color: #ee4231;
}

/*
==== <gallery mode="slideshow"> fixes =====
*/
/*wrapper*/
.gallery-float {
  float:right;
  width:300px;
  filter:drop-shadow(0.2em 0.2em 0.2em #000);
  background-color:var(--thumb-bg);
}
/*top/bottom margin*/
.gallery-float ul.gallery.gallery.gallery.mw-gallery-slideshow {
  margin:0;
}
/*thumbnails*/
.gallery-float .gallerybox {
  display: none;
}
/*thumbnail button*/
.gallery-float .mw-gallery-slideshow-buttons .oo-ui-buttonWidget:nth-child(2) {
  display:none;
}
/*cut padding down*/
.gallery-float .mw-gallery-slideshow .mw-gallery-slideshow-buttons {
  padding: 0.5em 0;
}
/*img size*/
.gallery-float .mw-gallery-slideshow img {
  width: 100%;
  height: auto;
}

/* ===========================
        Namespaces
   =========================== */
   
body.ns-3000 .mw-wiki-logo,
body.ns-3001 .mw-wiki-logo {
	background-image: url('filepath://Wiki_TFT.png');
}

body.ns-3002 .mw-wiki-logo,
body.ns-3003 .mw-wiki-logo {
	background-image: url('filepath://Wiki_LOR.png');
}

body.ns-3004 .mw-wiki-logo,
body.ns-3005 .mw-wiki-logo {
	background-image: url('filepath://Wiki_WR.png');
}

body.ns-3006 .mw-wiki-logo,
body.ns-3007 .mw-wiki-logo {
	background-image: url('filepath://Wiki_Universe.png');
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx), (min-resolution: 192dpi) {
	body.ns-3000 .mw-wiki-logo,
	body.ns-3001 .mw-wiki-logo {
		background-image: url('filepath://Wiki_TFT%402x.png');
		background-size: 135px auto;
	}
	
	body.ns-3002 .mw-wiki-logo,
	body.ns-3003 .mw-wiki-logo {
		background-image: url('filepath://Wiki_LOR%402x.png');
		background-size: 135px auto;
	}
	
	body.ns-3004 .mw-wiki-logo,
	body.ns-3005 .mw-wiki-logo {
		background-image: url('filepath://Wiki_WR%402x.png');
		background-size: 135px auto;
	}
	
	body.ns-3006 .mw-wiki-logo,
	body.ns-3007 .mw-wiki-logo {
		background-image: url('filepath://Wiki_Universe%402x.png');
		background-size: 135px auto;
	}
}