2015-10-07 10:12:47 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor MediaWiki UserInterface expandable error element styles.
|
|
|
|
*
|
2023-12-01 16:06:11 +00:00
|
|
|
* @copyright See AUTHORS.txt
|
2015-10-07 10:12:47 +00:00
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
2024-06-07 18:18:01 +00:00
|
|
|
@import 'mediawiki.skin.variables.less';
|
2015-10-07 10:12:47 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
.ve-ui-mwExpandableErrorElement {
|
|
|
|
&-label {
|
|
|
|
display: block;
|
|
|
|
margin-right: 2.5em;
|
2024-06-07 18:18:01 +00:00
|
|
|
color: @color-error;
|
2024-03-16 00:45:14 +00:00
|
|
|
}
|
2015-10-07 10:12:47 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
&-label-collapsed {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2015-10-07 10:12:47 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
&-label-expanded {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
2015-10-07 10:12:47 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
&-label-not-expandable {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: visible;
|
|
|
|
text-overflow: clip;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2015-10-07 10:12:47 +00:00
|
|
|
|
2024-03-16 00:45:14 +00:00
|
|
|
&-button {
|
|
|
|
float: right;
|
|
|
|
margin-top: -0.3em;
|
|
|
|
}
|
2015-10-07 10:12:47 +00:00
|
|
|
}
|