mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 18:58:37 +00:00
c9c7c06e76
Change-Id: Ic9fad12fe4c20793dd54cb3169b9dffe3a6a18da
37 lines
589 B
Plaintext
37 lines
589 B
Plaintext
/*!
|
|
* VisualEditor MediaWiki UserInterface expandable error element styles.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwExpandableErrorElement {
|
|
&-label {
|
|
display: block;
|
|
margin-right: 2.5em;
|
|
color: #d73333;
|
|
}
|
|
|
|
&-label-collapsed {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
&-label-expanded {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
&-label-not-expandable {
|
|
white-space: nowrap;
|
|
overflow: visible;
|
|
text-overflow: clip;
|
|
margin-right: 0;
|
|
}
|
|
|
|
&-button {
|
|
float: right;
|
|
margin-top: -0.3em;
|
|
}
|
|
}
|