mediawiki-extensions-Visual.../modules/ve-mw/ui/styles/dialogs/ve.ui.MWMetaDialog.less
Jan Drewniak 2fc809dc17 Replace hardcoded colors with Codex design tokens
Replaces hardcoded color hex values with their equivalent
values from Codex, via the "mediawiki.skin.variables" system.

Bug: T366197
Change-Id: Ia929a1a8d6351222acb454c8ec750e920ae6d072
2024-06-07 14:40:07 -04:00

41 lines
703 B
Plaintext

/*!
* VisualEditor MediaWiki UserInterface MWMetaDialog styles.
*
* @copyright See AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/* Language page */
@import 'mediawiki.skin.variables.less';
.ve-ui-mwLanguagesPage-languages-table {
margin: 2em 0 0 0;
padding: 0;
width: 100%;
border: 0;
border-collapse: collapse;
th {
border-bottom: 1px solid @border-color-subtle;
text-align: left;
}
th,
td {
padding: 0.75em 1em;
border-bottom: 1px solid @border-color-inverted;
}
tr td:first-child {
width: 30%;
}
tr:nth-child( odd ) td {
background: @background-color-neutral;
}
tr:nth-child( even ) td {
background: @background-color-neutral-subtle;
}
}