|
|
| Línea 1: |
Línea 1: |
| /* WikimediaUI Dark Mode
| |
| *
| |
| * Wikimedia Design Team 2019-2021
| |
| * Original authors:
| |
| * - Volker E. – [[User:Volker_E._(WMF)]]
| |
| * - Alex Hollender
| |
| * - MusikAnimal
| |
| * - Carolyn Li-Madeo
| |
| * - Jdlrobson
| |
| *
| |
| * Original at https://en.wikipedia.org/wiki/User:Volker_E._(WMF)/dark-mode.css
| |
| * Version for Gadget CSS skin override usage only.
| |
| * Basically removed of all interaction element styles and
| |
| * set to `html` instead of JS injected `.client-dark-mode` class.
| |
| *
| |
| * Last updated: 2021-04-20
| |
| *
| |
| */
| |
|
| |
| /** To prevent 'jumping' effect within #p-personal in Vector/Monobook. Overrides [[MediaWiki:Gadget-dark-mode-toggle-pagestyles.css]] **/
| |
| body.skin-vector-legacy :not(#pt-darkmode) + #pt-watchlist::before,
| |
| body.skin-monobook :not(#pt-darkmode) + #pt-watchlist::before {
| |
| content: "Light mode";
| |
| }
| |
|
| |
| @media screen { | | @media screen { |
|
| |
| /* set height for monobook and timeless, because the filter in FF needs dimensions to get it to apply */
| |
| html {
| |
| height: 100%;
| |
| }
| |
|
| |
|
| /* Filter needs to reside on `html`, see https://phabricator.wikimedia.org/T221425#5153917 */ | | /* Filter needs to reside on `html`, see https://phabricator.wikimedia.org/T221425#5153917 */ |
| Línea 122: |
Línea 92: |
| } | | } |
|
| |
|
| /* Links */
| |
| /* Links: normal */
| |
| html a,
| |
| html .vector-menu-tabs li a,
| |
| /* Backwards compatible VectorTabs, deprecated in MW v1.35. */
| |
| html .vectorTabs li a,
| |
| html .toctogglelabel,
| |
| html .mw-parser-output a.external,
| |
| html .mw-parser-output a.extiw,
| |
| html .mw-parser-output a.extiw:active,
| |
| html #mw-panel .portal .body li a {
| |
| /* color: #69f; Proposal below for level AA conformance, see also https://phabricator.wikimedia.org/T233266
| |
| `#36c` is transformed by :root `filter` to be closer to chosen `#69f`. */
| |
| color: #36c;
| |
| }
| |
|
| |
| /* Links: visited */
| |
| html a:visited,
| |
| html .mw-parser-output a.extiw:visited,
| |
| html #mw-panel .portal .body li a:visited {
| |
| /* color: #709bbd; Proposal below uses to-be-standardized color from https://phabricator.wikimedia.org/T213778 */
| |
| color: #6b4ba1;
| |
| }
| |
|
| |
| /* Links: red */
| |
| html a.new,
| |
| html .vector-menu-tabs li.new a,
| |
| html .vectorTabs li.new a {
| |
| color: #ff6e6e;
| |
| }
| |
|
| |
|
| /* ::: Special Element Treatments ::: */ | | /* ::: Special Element Treatments ::: */ |