blob: 09ec6ca139353190547ca633de5e9dbfe77a3257 (
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
35
36
37
38
39
40
41
|
.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");
}
}
.action-menu.filter {
margin-left: 1em;
}
.action-menu.filter:not(.is-open) .action-menu-icon {
@include background-icon(settings, clickable, 20);
span {
display: none;
}
}
|