diff options
author | moisseev <moiseev@mezonplus.ru> | 2020-07-01 13:12:18 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2020-07-01 13:12:18 +0300 |
commit | fb28a563f9f1b777d94de42e0babcb27fac30cc8 (patch) | |
tree | 17e7984abd6235ab10a1b755e16a86f0b107c80f /interface/css/FooTable.Glyphicons.css | |
parent | c9b7bcc6cc802d53e2860ec0e88e46a2a78bccae (diff) | |
download | rspamd-fb28a563f9f1b777d94de42e0babcb27fac30cc8.tar.gz rspamd-fb28a563f9f1b777d94de42e0babcb27fac30cc8.zip |
[WebUI] Migrate to Bootstrap 4.5
Diffstat (limited to 'interface/css/FooTable.Glyphicons.css')
-rw-r--r-- | interface/css/FooTable.Glyphicons.css | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/interface/css/FooTable.Glyphicons.css b/interface/css/FooTable.Glyphicons.css new file mode 100644 index 000000000..32d8c2ee4 --- /dev/null +++ b/interface/css/FooTable.Glyphicons.css @@ -0,0 +1,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"; +} |