mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 18:58:37 +00:00
c9c7c06e76
Change-Id: Ic9fad12fe4c20793dd54cb3169b9dffe3a6a18da
40 lines
588 B
Plaintext
40 lines
588 B
Plaintext
/*!
|
|
* VisualEditor MediaWiki UserInterface MWMetaDialog styles.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/* Language page */
|
|
|
|
.ve-ui-mwLanguagesPage-languages-table {
|
|
margin: 2em 0 0 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
border: 0;
|
|
border-collapse: collapse;
|
|
|
|
th {
|
|
border-bottom: 1px solid #c8ccd1;
|
|
text-align: left;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 0.75em 1em;
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
|
|
tr td:first-child {
|
|
width: 30%;
|
|
}
|
|
|
|
tr:nth-child( odd ) td {
|
|
background: #eaecf0;
|
|
}
|
|
|
|
tr:nth-child( even ) td {
|
|
background: #f8f9fa;
|
|
}
|
|
}
|