blob: 90b27687ba701af8377edf3cb3f7deb2aedef9c3 (
plain) (
blame)
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
|
@use 'iro-sass/src/props';
@use 'core';
@mixin styles {
.wbbBoardNode__unreadIcon {
background-image: url(../images/style-6/custom/boardNewM.png);
background-position: center center;
background-repeat: no-repeat;
fa-icon {
visibility: hidden;
}
}
.wbbBoardNode__defaultIcon {
background-image: url(../images/style-6/custom/boardM.png);
background-position: center center;
background-repeat: no-repeat;
fa-icon {
visibility: hidden;
}
}
.tabularListColumns {
&::before {
content: "";
inline-size: 4px;
align-self: stretch;
margin-inline-end: 10px;
border-radius: 1em;
}
&.new {
&::before {
background-color: props.get(core.$theme, --base, --700);
}
}
}
}
|