Remove "@author Umherirrender" annotations
[lhc/web/wiklou.git] / resources / src / mediawiki.rcfilters / styles / mw.rcfilters.ui.ItemMenuOptionWidget.less
1 @import 'mediawiki.mixins';
2
3 .mw-rcfilters-ui-itemMenuOptionWidget {
4 padding: 0 0.5em;
5 .box-sizing( border-box );
6
7 &:not( :last-child ) {
8 border-bottom: solid 1px #eaecf0; // Base 80 AAA
9 }
10
11 &:hover {
12 background-color: #fbfbfb;
13 }
14
15 .mw-rcfilters-ui-table {
16 padding-top: 0.5em;
17 }
18
19 &.oo-ui-optionWidget-selected {
20 background-color: #eaf3ff; // Accent90 AAA
21 }
22
23 &-label {
24 &-title {
25 font-weight: bold;
26 font-size: 1.15em;
27 color: #222;
28 }
29 &-desc {
30 color: #464a4f;
31 white-space: normal;
32 }
33 }
34
35 &-itemCheckbox {
36 .oo-ui-fieldLayout.oo-ui-fieldLayout-align-inline {
37 // Override margin-top and -bottom rules from FieldLayout
38 margin: 0 !important; /* stylelint-disable-line declaration-no-important */
39 }
40
41 .oo-ui-checkboxInputWidget {
42 // Workaround for IE11 rendering issues. T162098
43 display: block;
44 }
45 }
46
47 &-highlightButton {
48 width: 4em;
49 padding-left: 1em;
50 }
51 }