diff options
Diffstat (limited to 'interface/css/rspamd.css')
-rw-r--r-- | interface/css/rspamd.css | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 4a8c6eaeb..8fb54ab7c 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -218,7 +218,10 @@ table#symbolsTable input[type="number"] { /* stylelint-disable-next-line function-name-case */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#eaeaea', GradientType=0); /* IE6-9 */ } -.card-header h6 { +.card-header > .icon > svg { + vertical-align: middle; +} +.card-header .h6 { font-size: 0.857rem; } @@ -333,17 +336,14 @@ td.maps-cell { text-decoration: underline; } -/* Glyphicons animated spinners */ -.loading .glyphicon-spin { - animation: spin 1000ms infinite linear; +/* Font Awesome icons size */ +.svg-inline--fa { + font-size: 16px; } -@keyframes spin { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(359deg); - } +/* Increase refresh button spinner speed */ +#refresh .fa-spin { + -webkit-animation: fa-spin 1s linear infinite; + animation: fa-spin 1s linear infinite; } /* Some spacing tweaks */ @@ -434,12 +434,12 @@ td.maps-cell { background: rgba(100, 230, 80, 0.1) !important; } -.glyphicon-ok { - color: #468847; -} -.glyphicon-remove { +.danger .icon { color: #b94a48; } +.success .icon { + color: #468847; +} #nprogress .bar { height: 1px; |