2017-06-09 18:01:37 +00:00
|
|
|
/*!
|
2019-08-05 20:15:58 +00:00
|
|
|
* VisualEditor MediaWiki UserInterface language variant context item styles.
|
2017-06-09 18:01:37 +00:00
|
|
|
*
|
2023-12-01 16:06:11 +00:00
|
|
|
* @copyright See AUTHORS.txt
|
2017-06-09 18:01:37 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
2024-06-07 18:18:01 +00:00
|
|
|
@import 'mediawiki.skin.variables.less';
|
2017-06-09 18:01:37 +00:00
|
|
|
|
|
|
|
.ve-ui-mwLanguageVariantNodeContextItem-rule-table {
|
|
|
|
width: 100%;
|
|
|
|
border: 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
th {
|
|
|
|
white-space: nowrap;
|
2024-06-07 18:18:01 +00:00
|
|
|
border-bottom: 1px solid @border-color-subtle;
|
2024-03-16 00:45:14 +00:00
|
|
|
text-align: left;
|
|
|
|
}
|
2017-06-09 18:01:37 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 0.75em 1em;
|
2024-06-07 18:18:01 +00:00
|
|
|
border-bottom: 1px solid @background-color-base;
|
2024-03-16 00:45:14 +00:00
|
|
|
}
|
2017-06-09 18:01:37 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
tr:nth-child( odd ) td {
|
2024-06-07 18:18:01 +00:00
|
|
|
background: @background-color-neutral;
|
2024-03-16 00:45:14 +00:00
|
|
|
}
|
2017-06-09 18:01:37 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
tr:nth-child( even ) td {
|
2024-06-07 18:18:01 +00:00
|
|
|
background: @background-color-neutral-subtle;
|
2024-03-16 00:45:14 +00:00
|
|
|
}
|
2017-06-09 18:01:37 +00:00
|
|
|
}
|