2023-11-16 23:23:24 +00:00
|
|
|
/*
|
2022-11-14 21:09:14 +00:00
|
|
|
* Citizen
|
|
|
|
*
|
2023-11-16 23:23:24 +00:00
|
|
|
* Core MediaWiki skin tokens
|
|
|
|
* Used by supported extensions and other UI in the MW ecosystem
|
|
|
|
* @see https://phabricator.wikimedia.org/T349359
|
2022-11-14 21:09:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
@import 'mediawiki.skin.defaults.less';
|
|
|
|
|
2024-02-26 22:14:19 +00:00
|
|
|
/*
|
|
|
|
* Codex design tokens
|
|
|
|
* @see https://github.com/wikimedia/mediawiki/blob/master/resources/lib/codex-design-tokens/theme-wikimedia-ui.less
|
|
|
|
* TODO: Revisit on the next LTS release
|
|
|
|
*/
|
|
|
|
// @import 'mediawiki.skin.codex-design-tokens/theme-wikimedia-ui.less';
|
|
|
|
|
2023-11-16 23:23:24 +00:00
|
|
|
/*
|
|
|
|
* Backported variables
|
|
|
|
* @see https://github.com/wikimedia/mediawiki/blob/master/resources/src/mediawiki.less/mediawiki.skin.defaults.less
|
|
|
|
* TODO: Remove unused variables on the next LTS release
|
|
|
|
*/
|
|
|
|
|
|
|
|
// @since 1.41
|
|
|
|
@min-width-breakpoint-mobile: 320px;
|
|
|
|
@min-width-breakpoint-tablet: 640px;
|
|
|
|
@min-width-breakpoint-desktop: 1120px;
|
|
|
|
@min-width-breakpoint-desktop-wide: 1680px;
|
|
|
|
@max-width-breakpoint-mobile: @min-width-breakpoint-tablet - 1px;
|
|
|
|
@max-width-breakpoint-tablet: @min-width-breakpoint-desktop - 1px;
|
|
|
|
@max-width-breakpoint-desktop: @min-width-breakpoint-desktop-wide - 1px;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Polyfill deprecated variables
|
|
|
|
* @see https://github.com/wikimedia/mediawiki/blob/REL1_39/resources/src/mediawiki.less/mediawiki.skin.defaults.less
|
|
|
|
* TODO: Remove unused variables on the next LTS release
|
|
|
|
*/
|
|
|
|
|
|
|
|
// deprecated since 1.41
|
|
|
|
@width-breakpoint-mobile: @min-width-breakpoint-mobile;
|
|
|
|
@width-breakpoint-tablet: @min-width-breakpoint-tablet;
|
|
|
|
@width-breakpoint-desktop: @min-width-breakpoint-desktop;
|
|
|
|
@width-breakpoint-desktop-wide: @min-width-breakpoint-desktop-wide;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Citizen variables override
|
|
|
|
*/
|
2024-02-26 22:14:19 +00:00
|
|
|
|
|
|
|
// @since 1.39
|
2022-11-14 21:09:14 +00:00
|
|
|
@color-link: var( --color-link );
|
|
|
|
@color-link--visited: var( --color-link );
|
|
|
|
@color-link--active: var( --color-link--active );
|
|
|
|
@color-link-new: var( --color-link-new );
|
|
|
|
@color-link-new--visited: var( --color-link-new );
|
|
|
|
@color-link-external: var( --color-link );
|
|
|
|
@color-link-external--visited: var( --color-link );
|
2022-11-14 21:10:14 +00:00
|
|
|
@color-link-external--active: var( --color-link--active );
|
2024-02-26 22:00:31 +00:00
|
|
|
|
|
|
|
// @since 1.41
|
|
|
|
@font-size-x-small: var( --font-size-x-small );
|
|
|
|
@font-size-small: var( --font-size-small );
|
|
|
|
@font-size-medium: var( --font-size-medium );
|
|
|
|
@font-size-large: var( --font-size-large );
|
|
|
|
@font-size-x-large: var( --font-size-x-large );
|
|
|
|
@font-size-xx-large: var( --font-size-xx-large );
|
2024-04-16 05:28:45 +00:00
|
|
|
@font-size-xxx-large: var( --font-size-xxx-large );
|