blob: 8b8b736bd1a9786f9f9b0bfdb18c82cfd39c1ab1 (
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
32
33
34
|
.button.has-notice,
.button.has-no-notice {
&::before {
display: inline-block;
height: 16px;
vertical-align: sub;
width: 16px;
}
&::before {
margin-right: 0.5ex;
}
}
.button.has-notice {
&::before {
content: url("#{$image-path}/icons/blue/file-text.svg");
}
&:hover::before {
content: url("#{$image-path}/icons/white/file-text.svg");
}
}
.button.has-no-notice {
&::before {
content: url("#{$image-path}/icons/blue/file.svg");
}
&:hover::before {
content: url("#{$image-path}/icons/white/file.svg");
}
}
#admin-filter-widget .label-text {
display: block;
}
|