diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
commit | 133a45c109da5310add55824db21af5239951f93 (patch) | |
tree | ba6ac4c0a950a0dda56451944315d66409923918 /interface/css/FooTable.Glyphicons.css | |
parent | Initial commit. (diff) | |
download | rspamd-133a45c109da5310add55824db21af5239951f93.tar.xz rspamd-133a45c109da5310add55824db21af5239951f93.zip |
Adding upstream version 3.8.1.upstream/3.8.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'interface/css/FooTable.Glyphicons.css')
-rw-r--r-- | interface/css/FooTable.Glyphicons.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/interface/css/FooTable.Glyphicons.css b/interface/css/FooTable.Glyphicons.css new file mode 100644 index 0000000..c68f66e --- /dev/null +++ b/interface/css/FooTable.Glyphicons.css @@ -0,0 +1,62 @@ +/* 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"; +} |