mirror of https://github.com/rspamd/rspamd.git
Rapid spam filtering system
https://rspamd.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.3 KiB
62 lines
1.3 KiB
/* 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;
|
|
/* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
|
|
font-family: "Glyphicons Halflings" !important;
|
|
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";
|
|
}
|