|
|
| (119 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| /* default vector theme */
| |
| :root {
| |
| --theme-body-bg: #f8f9fa;
| |
| --theme-body-color: #202122;
| |
| --theme-header-bg: #fff;
| |
| --theme-header-color: #202122;
| |
|
| |
| --theme-icon-color: #202122;
| |
| --theme-icon-filter: invert(100%);
| |
|
| |
| --theme-dropdown-bg: #fff;
| |
| }
| |
|
| |
|
| @media screen {
| |
| .vector-feature-zebra-design-disabled body {
| |
| background: var(--theme-body-bg);
| |
| color: var(--theme-body-color);
| |
| }
| |
|
| |
| .vector-feature-zebra-design-disabled .vector-header-container {
| |
| background: var(--theme-header-bg);
| |
| }
| |
|
| |
| .vector-feature-zebra-design-disabled .vector-dropdown .vector-dropdown-content {
| |
| background: var(--theme-dropdown-bg);
| |
| }
| |
| }
| |
|
| |
| .cdx-icon {
| |
| color: var(--theme-icon-color);
| |
| }
| |
|
| |
| .cdx-button:enabled, .cdx-button.cdx-button--fake-button--enabled {
| |
| color: var(--theme-header-color);
| |
| }
| |
|
| |
| .vector-icon.mw-ui-icon-wikimedia-watchlist {
| |
| filter: var(--theme-icon-filter);
| |
| }
| |
|
| |
| /* light vector theme */
| |
| :root {
| |
| --theme-body-bg: #072207;
| |
| --theme-body-color: #202122;
| |
| --theme-header-bg: #151;
| |
| --theme-header-color: #fff;
| |
|
| |
| --theme-icon-color: #202122;
| |
| --theme-icon-filter: invert(20%);
| |
|
| |
| --theme-dropdown-bg: #151;
| |
| }
| |