2021-10-19 18:45:43 +00:00
|
|
|
@import '../../../minerva.less/minerva.variables.less';
|
2023-08-17 21:21:20 +00:00
|
|
|
@import '../../../minerva.less/minerva.mixins.less';
|
|
|
|
@import 'mediawiki.mixins.less';
|
|
|
|
|
|
|
|
.toggle-list-item {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-list-item__anchor {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 0.75em 0.875em;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-list-item__label {
|
|
|
|
color: @color-subtle;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: @font-size-minerva-small;
|
|
|
|
// Overflow text is ellipsized in one line.
|
|
|
|
.text-overflow( @visible: false );
|
|
|
|
}
|
2019-06-20 19:17:50 +00:00
|
|
|
|
|
|
|
.toggle-list__checkbox {
|
|
|
|
// Always occlude the checkbox. The checkbox display cannot be none since its focus state is used
|
|
|
|
// for other selectors.
|
|
|
|
position: absolute;
|
2023-05-26 15:29:03 +00:00
|
|
|
z-index: @z-indexOccluded;
|
2019-06-20 19:17:50 +00:00
|
|
|
opacity: 0;
|
|
|
|
}
|