2020-09-25 18:17:15 +00:00
|
|
|
/**
|
2022-08-16 14:32:52 +00:00
|
|
|
* ###IMPORTANT:##
|
|
|
|
* If editing this file, please also edit the respective file in the Vector skin.
|
|
|
|
* ####
|
|
|
|
*
|
2020-09-25 18:17:15 +00:00
|
|
|
* This file is a LESS @import match for 'mediawiki.skin.variables.less'
|
|
|
|
* when MinervaNeue is the active skin.
|
2022-08-16 14:32:52 +00:00
|
|
|
*
|
|
|
|
* Please also note, that both current Wikimedia Design Style Guide based skins,
|
|
|
|
* MinervaNeue and Vector 2022 are using the same variable values respectively in their
|
|
|
|
* repositories.
|
2020-09-25 18:17:15 +00:00
|
|
|
*/
|
|
|
|
@import 'mediawiki.skin.defaults.less';
|
|
|
|
|
2024-02-27 19:17:07 +00:00
|
|
|
/**
|
|
|
|
* Codex experiment design tokens.
|
|
|
|
* This is imported using the "(reference)" option to avoid duplicating the :root block which
|
|
|
|
* contains CSS custom properties. However, it still imports the Less variables, which are
|
|
|
|
* then propagated to anyone using `@import 'mediawiki.skin.variables.less'`;
|
|
|
|
*/
|
|
|
|
@import ( reference ) 'mediawiki.skin.codex-design-tokens/theme-wikimedia-ui-experimental.less';
|
2023-02-06 18:12:49 +00:00
|
|
|
|
|
|
|
// Overrides for Codex tokens:
|
|
|
|
|
|
|
|
@font-size-base: 1em; // Codex: 16px
|
|
|
|
|
|
|
|
// == Typography ==
|
|
|
|
// Body content uses the user setting in browser / the system default sans-serif font:
|
|
|
|
// Arial on Windows, Roboto on Android.
|
|
|
|
// FIXME: Use WikimediaUI Base's OS specific default sans-serif fonts.
|
|
|
|
@font-family-sans: @font-family-sans--fallback;
|
|
|
|
|
2024-02-01 17:33:08 +00:00
|
|
|
/**
|
2024-02-27 19:17:07 +00:00
|
|
|
* == Non-standard variable names ==
|
|
|
|
* These variables don't correspond to Codex variables.
|
|
|
|
* TODO: Determine whether any of these are actually used in practice.
|
2024-02-01 17:33:08 +00:00
|
|
|
**/
|
2024-02-27 19:17:07 +00:00
|
|
|
@color-link: var( --color-progressive );
|
2024-02-01 17:33:08 +00:00
|
|
|
@color-link--visited: var( --color-visited);
|
|
|
|
@color-link--active: var(--color-progressive--active);
|
|
|
|
@color-link-new: var(--color-link-red);
|
|
|
|
@color-link-new--visited: var(--color-link-red--visited);
|
2024-02-27 19:17:07 +00:00
|
|
|
@color-link-external: var( --color-progressive );
|
|
|
|
@color-link-external--visited: var( --color-visited );
|
|
|
|
@color-link-external--active: var(--color-progressive--active);
|