blob: 726b931041002a6d9bc06fa1e672c307c1fd0a3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
@import '../common';
.oo-ui-fieldsetLayout {
position: relative;
&.oo-ui-iconElement > .oo-ui-iconElement-icon {
display: block;
position: absolute;
background-position: center center;
background-repeat: no-repeat;
}
&.oo-ui-labelElement > .oo-ui-labelElement-label {
display: inline-block;
}
> .oo-ui-fieldsetLayout-help {
float: right;
> .oo-ui-popupWidget > .oo-ui-popupWidget-popup {
z-index: 1;
}
.oo-ui-fieldsetLayout-help-content {
padding: 0.5em 0.75em;
line-height: 1.5em;
}
}
.theme-oo-ui-fieldsetLayout();
}
|