mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-17 11:23:03 +00:00
2fc6423070
Since "nbsp" is hard to translate, it is removed from the current text of visualeditor-mwlanguagevariantcontextitem-rule-code-label, which was "Language code" - now changed to "Language code". Instead the table headings (where this message is used) are defined as non-breaking in CSS. Bug: T173181 Change-Id: I9794fa010ad908fe772fa6858c25acc6beb973d5
33 lines
822 B
CSS
33 lines
822 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface alien extension inspector styles.
|
|
*
|
|
* @copyright 2011-2017 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwLanguageVariantNodeContextItem-rule-table {
|
|
width: 100%;
|
|
border: 0;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.ve-ui-mwLanguageVariantNodeContextItem-rule-table th {
|
|
white-space: nowrap;
|
|
border-bottom: 1px solid #c8ccd1;
|
|
text-align: left;
|
|
}
|
|
|
|
.ve-ui-mwLanguageVariantNodeContextItem-rule-table th,
|
|
.ve-ui-mwLanguageVariantNodeContextItem-rule-table td {
|
|
padding: 0.75em 1em;
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
|
|
.ve-ui-mwLanguageVariantNodeContextItem-rule-table tr:nth-child( odd ) td {
|
|
background: #eaecf0;
|
|
}
|
|
|
|
.ve-ui-mwLanguageVariantNodeContextItem-rule-table tr:nth-child( even ) td {
|
|
background: #f8f9fa;
|
|
}
|