|
|
| (4 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
| |
|
| |
|
|
| |
| /* All CSS here will be loaded for users of the Vector skin */
| |
|
| |
| /**
| |
| * See [[MediaWiki:Common.css]] for desktop and mobile styles, e.g. templates.
| |
| *
| |
| * See [[MediaWiki:Vector-theme-dark.css]] for desktop dark theme related styles.
| |
| *
| |
| * See [[MediaWiki:Minerva.css]] for mobile theme related styles.
| |
| */
| |
| :root {
| |
| /* Vector menu */
| |
| --personal-links-bg: var(--body-main);
| |
|
| |
| /* Vector search */
| |
| --search-box-color: #2e2d2d;
| |
|
| |
| /* Vector tabs */
| |
| --vector-tab-background: var(--body-light);
| |
| --vector-tab-background--hover: var(--body-mid);
| |
| --vector-tab-link-color: var(--background-link-color);
| |
|
| |
| /* Table of Contents */
| |
| --toc-bg: var(--body-light);
| |
| --toc-border-color: var(--body-border);
| |
| --toc-list-border-color: var(--link-color);
| |
|
| |
| /* External links icon */
| |
|
| |
| /* Lua debug console */
| |
| --scribuntoconsole-input: #0b5884;
| |
| --scibuntoconsole-print: #a48900;
| |
| --scribuntoconsole-error: #9f261e;
| |
| --scribuntoconsole-message: #3c780a;
| |
| --scribuntoconsole-tabcomplete: #4f348b;
| |
| --scribuntoconsole-clear: #9f261e;
| |
|
| |
| /* Template:Navbox */
| |
| --navbox-background: var(--body-light);
| |
| --navbox-border: var(--body-border);
| |
| --navbox-title-background: var(--body-dark);
| |
| --navbox-footer-background: var(--body-dark);
| |
| --navbox-group-title-background: var(--body-mid);
| |
|
| |
| /* Echo and skin switcher icons */
| |
| }
| |
|
| |
| /* ===================
| |
| Page elements
| |
| =================== */
| |
| html {
| |
| /* Prevent weird font scaling in Safari - is also in minerva */
| |
| /* TODO: Still needed? Move to common.css? */
| |
| -webkit-text-size-adjust: 100%;
| |
| }
| |
|
| |
| body {
| |
| background: url('https://i.imgur.com/CUQN34l.png') no-repeat;
| |
| background-size: contain, 55px;
| |
| background-color: #190608;
| |
| }
| |
|
| |
| /* Override the default font size to make it slightly bigger */
| |
| @media screen {
| |
| .vector-body {
| |
| font-size: calc(1em * 0.9);
| |
| }
| |
| }
| |
|
| |
| /* Page title */
| |
| .firstHeading {
| |
| font-weight: bold;
| |
| }
| |
|
| |
| pre,
| |
| code,
| |
| .mw-code {
| |
| color: inherit;
| |
| background-color: var(--mw-code-background-color);
| |
| border: 1px solid var(--body-border);
| |
| }
| |
|
| |
| /* lists bold line margins */
| |
| 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);
| |
| }
| |
|
| |
| #content .pull-quote__text::before,
| |
| #content .pull-quote__text::after {
| |
| color: var(--messagebox-notice-border);
| |
| }
| |
|
| |
| /* ===================
| |
| Vector menu
| |
| =================== */
| |
|
| |
| .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 {
| |
| opacity: 1;
| |
| filter: invert(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(--text-color);
| |
| }
| |
|
| |
| /* Top links */
| |
| #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;
| |
| }
| |
|
| |
| /* ===================
| |
| Vector search
| |
| =================== */
| |
| .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;
| |
| filter: invert(1);
| |
| }
| |
|
| |
| .vector-search-box-vue input.cdx-text-input__input,
| |
| .vector-search-box-vue input.cdx-text-input__input:enabled {
| |
| background: var(--search-box-color);
| |
| 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;
| |
| min-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);
| |
| }
| |
|
| |
| /* ===================
| |
| Vector sidebar
| |
| =================== */
| |
|
| |
| #mw-panel {
| |
| padding-top: 2.5em;
| |
| }
| |
|
| |
| /* Sidebar links */
| |
| div#mw-panel .vector-menu-portal .vector-menu-heading {
| |
| font-weight: bold;
| |
| background: none;
| |
| text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
| |
| color: #eebb5b;
| |
| }
| |
|
| |
| @media screen {
| |
| .vector-legacy-sidebar .vector-menu-portal .vector-menu-content li {
| |
| font-size: 0.8em;
| |
| }
| |
| }
| |
|
| |
| 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);
| |
| }
| |
|
| |
| /* Logo */
| |
| #p-logo {
| |
| filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
| |
| margin: -1.5em 0 0;
| |
| }
| |
|
| |
| #p-logo a {
| |
| background-size: contain;
| |
| }
| |
|
| |
| #n-Discord {
| |
| font-size: 10px;
| |
| line-height: 1.5em;
| |
| margin: -0.5em 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 3px calc(14px + 6.5px * 2);
| |
| box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
| |
| transition: 0.2s;
| |
| margin-left: -.875em;
| |
| margin-top: -1em;
| |
| }
| |
|
| |
| #n-Discord a::before {
| |
| content: 'Chat on ';
| |
| font-weight: normal;
| |
| opacity: 0.85;
| |
| margin-left: 1.25em
| |
| }
| |
|
| |
| #n-Discord a::after {
| |
| content: '';
| |
| background: url('filepath://Discord_logo_icon.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: #7885ff;
| |
| border-color: #6c77f0;
| |
| transition: .3s;
| |
| }
| |
|
| |
| .wgl-theme-dark #n-Discord a {
| |
| background-color: #525ee0;
| |
| }
| |
|
| |
| .wgl-theme-dark #n-Discord a:hover {
| |
| background-color: #4c57d0;
| |
| }
| |
|
| |
| #p-Poncle-label {
| |
| display: none;
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content {
| |
| background: none !important;
| |
| border-image: none !important;
| |
| box-shadow: none !important;
| |
| padding: 0 !important;
| |
| margin: 0 !important;
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content-list {
| |
| display: flex;
| |
| justify-content: center;
| |
| gap: .5em;
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content span {
| |
| font-size: 0;
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content span::before {
| |
| content: ' ';
| |
| display: inline-block;
| |
| width: 17.5px;
| |
| height: 17.5px;
| |
| background-size: contain;
| |
| background-position: center;
| |
| background-repeat: no-repeat;
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content #n-X span::before {
| |
| background-image: url('filepath://X_logo.svg');
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content #n-TikTok span::before {
| |
| background-image: url('filepath://TikTok_logo.svg');
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content #n-YouTube span::before {
| |
| background-image: url('filepath://YouTube_logo.svg');
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content #n-Instagram span::before {
| |
| background-image: url('filepath://Instagram_logo.png');
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content #n-Bluesky span::before {
| |
| background-image: url('filepath://Bluesky_logo.svg');
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal#p-Poncle .vector-menu-content #n-Website span::before {
| |
| background-image: url('filepath://Poncle.png');
| |
| }
| |
|
| |
| #p-navigation .vector-menu-content,
| |
| #p-Vampire_Survivors .vector-menu-content {
| |
| position: relative;
| |
| }
| |
|
| |
| #p-navigation .vector-menu-content::after {
| |
| content: '';
| |
| display: block;
| |
| position: absolute;
| |
| background-image: url('filepath://Sprite-Zombie.png');
| |
| width: 50px;
| |
| height: 50px;
| |
| top: -25px;
| |
| right: -16px;
| |
| background-size: 50px;
| |
| background-repeat: no-repeat;
| |
| background-position: center;
| |
| image-rendering: pixelated;
| |
| }
| |
|
| |
| #p-Vampire_Survivors .vector-menu-content::after {
| |
| content: '';
| |
| width: 50px;
| |
| height: 60px;
| |
| display: block;
| |
| position: absolute;
| |
| bottom: -20px;
| |
| right: -15px;
| |
| background-image: url('filepath://Sprite-Antonio Belpaese.png');
| |
| background-size: contain;
| |
| background-repeat: no-repeat;
| |
| }
| |
|
| |
| #p-tb .vector-menu-content::after {
| |
| content: '';
| |
| width: 50px;
| |
| height: 50px;
| |
| display: block;
| |
| position: absolute;
| |
| bottom: -5px;
| |
| right: -5px;
| |
| background-image: url('filepath://Sprite-Gennaro Belpaese.png');
| |
| background-size: contain;
| |
| background-repeat: no-repeat;
| |
| }
| |
|
| |
| .vector-legacy-sidebar #p-lang {
| |
| display: none;
| |
| }
| |
|
| |
|
| |
| /* ===================
| |
| Vector tabs
| |
| =================== */
| |
| .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;
| |
| }
| |
|
| |
| /* TODO: Probably not needed? */
| |
| 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;
| |
| }
| |
| /* End TODO */
| |
|
| |
| /* ===================
| |
| Table of Contents
| |
| =================== */
| |
| .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 {
| |
| padding: 0.5em 1em 0 1em;
| |
| }
| |
|
| |
| .toc .toctitle h2 {
| |
| font-family: inherit;
| |
| }
| |
|
| |
| .toc > ul {
| |
| line-height: 1.8em;
| |
| padding: 0.25em .75em;
| |
| margin: 0;
| |
| }
| |
|
| |
| .toc ul ul {
| |
| border-left: 1px dotted var(--link-color);
| |
| padding-left: .5em;
| |
| }
| |
|
| |
| .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;
| |
| }
| |
|
| |
| .tocnumber {
| |
| display: none;
| |
| }
| |
|
| |
| /* External links icon */
| |
| .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;
| |
| }
| |
|
| |
| /* TODO maybe not needed? */
| |
| .mw-collapsible.mw-collapsed {
| |
| min-width: 250px;
| |
| }
| |
|
| |
| .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);
| |
| }
| |
|
| |
| /* Popups */
| |
| .mwe-popups {
| |
| background: var(--search-box-color);
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-container {
| |
| color: var(--text-color);
| |
| background: var(--search-box-color);
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-container.flipped-x-y:before,
| |
| .mwe-popups .mwe-popups-container.flipped-y:before {
| |
| border-top: none;
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-container.mwe-popups-no-image-tri:before {
| |
| border-bottom: none;
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-container.flipped-x-y:after,
| |
| .mwe-popups .mwe-popups-container.flipped-y:after {
| |
| border-top-color: var(--search-box-color);
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-container.mwe-popups-no-image-tri:after {
| |
| border-bottom-color: var(--search-box-color);
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-settings-icon:hover,
| |
| .mwe-popups .mwe-popups-settings-icon:active {
| |
| background-color: var(--ooui-normal--hover);
| |
| }
| |
|
| |
| .mwe-popups .mw-ui-icon-element:not(.disabled):hover {
| |
| background: none;
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-extract {
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .mwe-popups .mwe-popups-extract[dir='ltr']:after {
| |
| background-image: linear-gradient(to right, rgba(49, 62, 89, 0), var(--search-box-color) 50%);
| |
| }
| |
|
| |
| .mwe-popups-overlay {
| |
| background-color: var(--ooui-window-background);
| |
| }
| |
|
| |
| #mwe-popups-settings {
| |
| background: var(--ooui-interface);
| |
| border-color: var(--ooui-interface-border);
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| #mwe-popups-settings header {
| |
| border-color: var(--ooui-interface-border);
| |
| }
| |
|
| |
| #mwe-popups-settings main#mwe-popups-settings-form p {
| |
| color: var(--byline-color);
| |
| }
| |
|
| |
| #mwe-popups-settings main#mwe-popups-settings-form form label > span {
| |
| color: var(--ooui-text);
| |
| }
| |
|
| |
|
| |
| /* =============================
| |
| Source editor
| |
| TODO: Where used?
| |
| ============================== */
| |
| .wikiEditor-ui .wikiEditor-ui-view,
| |
| .wikiEditor-ui .wikiEditor-ui-top {
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar {
| |
| background-color: var(--sourceeditor-background);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .tabs span.tab > a,
| |
| .wikiEditor-ui-toolbar .tabs span.tab > a:visited {
| |
| color: var(--link-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .tabs span.tab a.current,
| |
| .wikiEditor-ui-toolbar .tabs span.tab a.current:visited {
| |
| color: var(--text-colour);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .group,
| |
| .wikiEditor-ui-toolbar .section-secondary .group {
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .group .tool-select {
| |
| background-color: var(--sourceeditor-background);
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .group .tool-select .options {
| |
| border-color: var(--sourceeditor-border);
| |
| background-color: var(--body-main);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .group .tool-select .options .option {
| |
| color: var(--link-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .group .tool-select .menu .options .option:hover {
| |
| background-color: var(--ooui-normal--hover);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .group-search {
| |
| border-left-color: var(--body-mid);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .page-table td {
| |
| border-color: var(--body-mid);
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .page-table th {
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .sections .section {
| |
| border-color: var(--body-mid);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .sections .toolbar .group > .label {
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .sections .toolbar .tool > .label {
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .booklet > .index > :hover {
| |
| background-color: var(--body-mid);
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .booklet .index > .current {
| |
| background-color: var(--body-mid);
| |
| color: var(--link-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .page-characters div span {
| |
| border-color: var(--body-mid);
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .page-characters div span:hover {
| |
| border-color: var(--body-dark);
| |
| background-color: transparent;
| |
| }
| |
|
| |
| .wikiEditor-ui-toolbar .tabs span.tab a:before,
| |
| .wikiEditor-ui-toolbar .group .tool-select .label:after {
| |
| background: var(--text-color);
| |
| }
| |
|
| |
| .ext-WikiEditor-ResizingDragBar,
| |
| .ext-WikiEditor-ResizingDragBar-ew {
| |
| background-color: var(--sourceeditor-background-secondary);
| |
| }
| |
|
| |
| .ext-WikiEditor-ResizingDragBar-ns {
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| .ext-WikiEditor-ResizingDragBar span {
| |
| background-color: var(--byline-color);
| |
| }
| |
|
| |
| .ext-WikiEditor-ResizingDragBar span:hover {
| |
| background-color: var(--text-color);
| |
| }
| |
|
| |
| .ext-WikiEditor-twopanes-TwoPaneLayout .ext-WikiEditor-twopanes-pane1,
| |
| .ext-WikiEditor-twopanes-TwoPaneLayout .ext-WikiEditor-twopanes-pane2 {
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| .ext-WikiEditor-realtimepreview-loadingbar div {
| |
| background-color: var(--ooui-accent);
| |
| }
| |
|
| |
| .ext-WikiEditor-realtimepreview-button:hover {
| |
| background-color: var(--ooui-normal--hover);
| |
| }
| |
|
| |
| .ext-WikiEditor-realtimepreview-button.oo-ui-toggleWidget-on .oo-ui-labelElement-label {
| |
| color: var(--ooui-accent);
| |
| }
| |
|
| |
| /* --------------------------
| |
| ACE EDITOR
| |
| TODO where is ACE used
| |
| -------------------------- */
| |
| .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-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: 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);/* TODO Color */
| |
| }
| |
|
| |
| .ace_button:active {
| |
| background-color: rgba(0, 23, 70, 0.06);/* TODO Color */
| |
| }
| |
|
| |
| .ace_button.checked {
| |
| border-color: var(--ooui-accent);
| |
| }
| |
|
| |
| /* ---------------------------
| |
| CodeMirror adjustments
| |
| TODO where is CodeMirror used
| |
| --------------------------- */
| |
| .CodeMirror {
| |
| background: var(--sourceeditor-input-background);
| |
| }
| |
|
| |
| .CodeMirror pre {
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .codeEditor-status {
| |
| border-color: var(--sourceeditor-border);
| |
| background-color: var(--sourceeditor-background);
| |
| }
| |
|
| |
| .codeEditor-status-message {
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| .CodeMirror-gutters {
| |
| background-color: var(--codemirror-gutter-background);
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| .CodeMirror-linenumber {
| |
| color: var(--text-color);
| |
| }
| |
|
| |
| .ve-init-mw-desktopArticleTarget .CodeMirror-linenumber {
| |
| color: var(--byline-color);
| |
| }
| |
|
| |
| /* ===========================
| |
| source editor without
| |
| CodeMirror turned on
| |
| =========================== */
| |
| .mw-editform #wpTextbox1 {
| |
| color: var(--text-color);
| |
| background: var(--sourceeditor-input-background);
| |
| border-color: var(--sourceeditor-border);
| |
| }
| |
|
| |
| /* Make code-editors 100px (~11 lines of code) taller than the default 400px (~19.9 lines) */
| |
| 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;*/
| |
| /*}*/
| |
|
| |
| /* Abusefilter editor */
| |
| #wpAceFilterEditor {
| |
| resize: horizontal;
| |
| }
| |
|
| |
| /*.warn-userupload,*/
| |
| /*.ns-2 .upload-own-work {*/
| |
| /* display: none;*/
| |
| /*}*/
| |
|
| |
| /*.ns-2 .warn-userupload {*/
| |
| /* display: inline;*/
| |
| /*}*/
| |
|
| |
| /* Batch Upload boxes */
| |
| textarea[name="wfUploadDescription"] {
| |
| height: 3em;
| |
| }
| |
|
| |
| /* Space between edit box and mediawiki warnings */
| |
| #editform {
| |
| margin-top: 1.25em;
| |
| }
| |
|
| |
| /* ===========================
| |
| Lua debug console
| |
| =========================== */
| |
| #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);
| |
| }
| |
|
| |
| .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);
| |
| }
| |
|
| |
| /**
| |
| * jQuery UI stuff - slowly getting replaced with OOUI
| |
| * current known uses are in:
| |
| * * search&replace/file/link insertion modal in source editor
| |
| * * Lua error popup
| |
| */
| |
| /* TODO is this actually used anywhere? */
| |
| .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);
| |
| }
| |
|
| |
| /* ===========================
| |
| [[Template:Navbox]]
| |
| =========================== */
| |
| .navbox {
| |
| font-size: 0.85em;
| |
| background: var(--navbox-background);
| |
| border: 1px solid var(--navbox-border);
| |
| border-collapse: collapse;
| |
| margin: 1em auto 0;
| |
| width: 100%;
| |
| clear: both;
| |
| box-shadow: 0 0.25rem 0.35rem -0.25rem rgba(0, 0, 0, 0.1);
| |
| }
| |
|
| |
| /* Retina support */
| |
| @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
| |
| .navbox img {
| |
| image-rendering: pixelated;
| |
| image-rendering: crisp-edges;
| |
| }
| |
| }
| |
|
| |
| /* Nested navboxes */
| |
| .navbox .navbox {
| |
| font-size: 100%;
| |
| margin: 0.5em auto 0;
| |
| box-shadow: none;
| |
| border: 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: '• ';
| |
| }
| |
|
| |
| body:not(.show-beta-content) .navbox-list li:has(.beta-content-item) + 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;
| |
| }
| |
|
| |
| /* Infobox */
| |
| @media screen and (max-width: 720px) {
| |
| .infobox-root {
| |
| width: 100%;
| |
| }
| |
| }
| |
|
| |
| /* ===========================
| |
| Echo and skinswitcher icons
| |
| =========================== */
| |
| /* User profile icon */
| |
| .vector-user-menu-legacy #pt-userpage a,
| |
| .vector-user-menu-legacy #pt-anonuserpage {
| |
| padding-top: 0;
| |
| background-position-y: 0;
| |
| background-image: var(--echo-icon-person-bg-image);
| |
| }
| |
|
| |
| /* "Not logged in" text */
| |
| .vector-user-menu-legacy #pt-anonuserpage {
| |
| color: var(--byline-color);
| |
| }
| |
|
| |
| /* Echo boxes */
| |
| #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;
| |
| }
| |
|
| |
| /* Alterts */
| |
| #pt-notifications-alert .oo-ui-icon-bell {
| |
| background-image: var(--echo-icon-bell-bg-image);
| |
| }
| |
|
| |
| /* Notifications */
| |
| #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);
| |
| }
| |
|
| |
| /* Hack so that personal urls are at final vertical position when added to by JS. */
| |
| #pt-anontalk {
| |
| padding-top: 0.6em;
| |
| }
| |
|
| |
| /* =============
| |
| This class is the desktop equivalent of the "nomobile" class.
| |
| Any element with class="nodesktop" will be hidden on desktop but not
| |
| on mobile.
| |
| ============= */
| |
| .nodesktop {
| |
| display: none;
| |
| }
| |
|
| |
| .tabber {
| |
| display: inline-grid;
| |
| }
| |
|
| |
| /* --------------------------
| |
| 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: 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-accent);
| |
| }
| |
| .ace_searchbtn:hover {
| |
| background-color: var(--ooui-normal--hover);
| |
| }
| |
| .ace_searchbtn.prev:after,
| |
| .ace_searchbtn.next:after {
| |
| border-color: var(--ooui-accent);
| |
| }
| |
| .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: var(--sourceeditor-background);
| |
| }
| |
| .mw-content-ltr.mw-highlight-lines pre,
| |
| .mw-content-ltr.content .mw-highlight-lines pre {
| |
| box-shadow: inset 2.75em 0 0 var(--sourceeditor-background);
| |
| }
| |
|
| |
| /* Sidebar */
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal:not(#p-Discord) .vector-menu-content {
| |
| background: #1c1b1b;
| |
| border-image: url('filepath://Container_border.png') 10;
| |
| border-image-width: auto;
| |
| margin: 0.25em 0em;
| |
| padding: 0.5em 1em;
| |
| box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.5);
| |
| }
| |
|
| |
| body .vector-legacy-sidebar .vector-menu-portal .vector-menu-content ul {
| |
| padding: .25em 0;
| |
| }
| |
|
| |
| #n-X:hover,
| |
| #n-TikTok:hover,
| |
| #n-YouTube:hover,
| |
| #n-Instagram:hover,
| |
| #n-Bluesky:hover,
| |
| #n-Website:hover
| |
| {
| |
| transform: scale(1.1);
| |
| transition: .1s;
| |
| }
| |
|
| |
| /* Icons */
| |
| body .oo-ui-iconElement-icon:not(.oo-ui-image-destructive, .oo-ui-image-warning, .oo-ui-image-progressive, .oo-ui-checkboxInputWidget-checkIcon, .oo-ui-image-invert, .mw-no-invert),
| |
| body .oo-ui-indicatorElement-indicator,
| |
| body .mwe-math-element img,
| |
| body .mw-ui-icon:before,
| |
| body .cdx-button__icon,
| |
| body .popups-icon,
| |
| body .soft-redirect > div:nth-child(1) img {
| |
| filter: invert(1) hue-rotate(180deg);
| |
| }
| |
|
| |
| /* File icon is inverted in here in particular. Applying black will make it white */
| |
| .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-primary.cdx-button--action-progressive:hover .cdx-button__icon,
| |
| .cdx-button:enabled.cdx-button--weight-primary.cdx-button--action-progressive:hover .cdx-button__icon,
| |
| .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-primary.cdx-button--action-progressive:hover .cdx-button__icon,
| |
| .cdx-button.cdx-button--fake-button--enabled.cdx-button--weight-primary.cdx-button--action-progressive .cdx-button__icon {
| |
| background: #000 !important;
| |
| }
| |
|
| |
| /* These icons were particularly blue, let's change that */
| |
| .oo-ui-image-progressive.oo-ui-icon-reload,
| |
| .mw-ui-icon-reload-progressive::before {
| |
| background-image: var(--reload-icon);
| |
| }
| |
|
| |
| .mw-parser-output a.external {
| |
| background-image: var(--external-icon);
| |
| }
| |
|
| |
| /* Change watchlist icon to make it look consistent with the wiki's theme */
| |
| .vector-menu-tabs #ca-watch.icon a::before,
| |
| .vector-menu-tabs #ca-watch.icon a:hover::before,
| |
| .vector-menu-tabs #ca-watch.icon a:active::before,
| |
| .vector-menu-tabs #ca-watch.icon a:focus::before {
| |
| background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22%3E %3Cpath fill=%22transparent%22 stroke=%22%23c8aa6e%22 stroke-width=%22.99992%22 d=%22M8.103 1.146l2.175 4.408 4.864.707-3.52 3.431.831 4.845-4.351-2.287-4.351 2.287.831-4.845-3.52-3.431 4.864-.707z%22/%3E %3C/svg%3E");
| |
| }
| |
|
| |
|
| |
| .vector-menu-tabs #ca-unwatch.icon a::before,
| |
| .vector-menu-tabs #ca-unwatch.icon a:hover::before,
| |
| .vector-menu-tabs #ca-unwatch.icon a:active::before,
| |
| .vector-menu-tabs #ca-unwatch.icon a:focus::before {
| |
| background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22%3E %3Cpath fill=%22%23c8aa6e%22 stroke=%22%23c8aa6e%22 stroke-width=%22.99992%22 d=%22M8.103 1.146l2.175 4.408 4.864.707-3.52 3.431.831 4.845-4.351-2.287-4.351 2.287.831-4.845-3.52-3.431 4.864-.707z%22/%3E %3C/svg%3E");
| |
| }
| |
|
| |
| :root {
| |
| --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");
| |
| --reload-icon: 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%3E reload %3C/title%3E%3Cg fill=%22%23ffffff%22%3E%3Cpath d=%22M15.65 4.35A8 8 0 1 0 17.4 13h-2.22a6 6 0 1 1-1-7.22L11 9h7V2z%22/%3E%3C/g%3E%3C/svg%3E");
| |
| --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");
| |
| --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='%23cbd9f4'/%3E%3C/svg%3E");
| |
| }
| |
|
| |
| /* Preload */
| |
| ul.preload-list {
| |
| margin-left: 0;
| |
| }
| |
|
| |
| ul.preload-list li {
| |
| list-style: none;
| |
| display: inline-block;
| |
| margin: 0.3em;
| |
| }
| |
|
| |
| .button {
| |
| background: var(--ooui-progressive);
| |
| border: 1px solid var(--button-border);
| |
| color: white;
| |
| cursor: pointer;
| |
| display: inline-block;
| |
| font-size: 12px;
| |
| height: 19px;
| |
| line-height: 20px;
| |
| padding: 0 10px;
| |
| }
| |
|
| |
| .button:hover {
| |
| background: var(--ooui-progressive--hover);
| |
| border-color: var(--ooui-progressive--hover);
| |
| }
| |
|
| |
| /* Character select list head */
| |
| @media screen and (max-width: 720px) {
| |
| .character-select-list-head {
| |
| display: inline-grid;
| |
| grid-template-columns: repeat(4, 75px);
| |
| gap: 8px;
| |
| }
| |
|
| |
| .character-select-list-head .character-tooltip {
| |
| transform: scale(.5);
| |
| width: 75px;
| |
| height: 90px;
| |
| transform-origin: top left;
| |
| }
| |
| }
| |