-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.less
41 lines (37 loc) · 1012 Bytes
/
icons.less
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
//
// TEF components - icons
// This file needs fontawesome font
//
[icon],
[data-icon] {
text-align: center;
&:before {
font-family:"FontAwesome";
font-weight:normal;
font-style:normal;
speak:none;
letter-spacing: 0;
text-decoration:inherit;
text-transform:none;
text-rendering:optimizeLegibility;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}
}
// Icons
[icon="check"]:before,
[data-icon="check"]:before { content:"\f00c"; }
[icon="down"]:before,
[data-icon="down"]:before { content:"\f107"; }
[icon="up"]:before,
[data-icon="up"]:before { content:"\f106"; }
[icon="search"]:before,
[data-icon="search"]:before { content:"\f002"; }
[icon="close_circle"],
[data-icon="close_circle"]:before { content:"\f057"; }
[icon="plus"]:before,
[data-icon="plus"]:before { content:"\f067"; }
[icon="user"]:before,
[data-icon="user"]:before { content:"\f007"; }
[icon="help_circle"]:before,
[data-icon="help_circle"]:before { content:"\f059"; }