2014-03-18 20:52:39 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor MediaWiki UserInterface MWMetaDialog styles.
|
|
|
|
*
|
2023-12-01 16:06:11 +00:00
|
|
|
* @copyright See AUTHORS.txt
|
2014-03-18 20:52:39 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2014-07-28 12:07:49 +00:00
|
|
|
/* Language page */
|
2024-06-07 18:18:01 +00:00
|
|
|
@import 'mediawiki.skin.variables.less';
|
2014-07-28 12:07:49 +00:00
|
|
|
|
|
|
|
.ve-ui-mwLanguagesPage-languages-table {
|
2014-03-18 20:52:39 +00:00
|
|
|
margin: 2em 0 0 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
2016-05-24 12:41:13 +00:00
|
|
|
border: 0;
|
2014-03-18 20:52:39 +00:00
|
|
|
border-collapse: collapse;
|
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
th {
|
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;
|
|
|
|
}
|
2014-03-18 20:52:39 +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 @border-color-inverted;
|
2024-03-16 00:45:14 +00:00
|
|
|
}
|
2014-03-18 20:52:39 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
tr td:first-child {
|
|
|
|
width: 30%;
|
|
|
|
}
|
2014-03-18 20:52:39 +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
|
|
|
}
|
2014-03-18 20:52:39 +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
|
|
|
}
|
2014-03-18 20:52:39 +00:00
|
|
|
}
|