blob: 32d8c2ee46190ec075cfaa491a0356e4063bbfc1 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/* Glyphicons Icons - We're not actually using Glyphicons classes but instead provide a simple mapping from Glyphicons to FooTable class names. */
.fooicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings' !important; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
font-style: normal;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.fooicon::before,
.fooicon::after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.fooicon-loader::before {
content: "\e030";
}
.fooicon-plus::before {
content: "\2b";
}
.fooicon-minus::before {
content: "\2212";
}
.fooicon-search::before {
content: "\e003";
}
.fooicon-remove::before {
content: "\e014";
}
.fooicon-sort::before {
content: "\e150";
}
.fooicon-sort-asc::before {
content: "\e155";
}
.fooicon-sort-desc::before {
content: "\e156";
}
.fooicon-pencil::before {
content: "\270f";
}
.fooicon-trash::before {
content: "\e020";
}
.fooicon-eye-close::before {
content: "\e106";
}
.fooicon-flash::before {
content: "\e162";
}
.fooicon-cog::before {
content: "\e019";
}
.fooicon-stats::before {
content: "\e185";
}
|