diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2019-04-03 09:57:29 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2019-04-03 09:57:29 +0300 |
commit | a8875bd228800e51e5fc24e357991ae89d3f9966 (patch) | |
tree | 1f792ae497f71e7a9b1f95be2b201c6f4a290243 /interface/css | |
parent | 186c9a09975de2644e3674a43f6dbb28bc0159c8 (diff) | |
download | rspamd-a8875bd228800e51e5fc24e357991ae89d3f9966.tar.gz rspamd-a8875bd228800e51e5fc24e357991ae89d3f9966.zip |
[WebUI] Fix symbol score input type
Diffstat (limited to 'interface/css')
-rw-r--r-- | interface/css/rspamd.css | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 2c4e40ab8..e0e14bb3a 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -63,14 +63,18 @@ textarea { display:inline; } -input[type="number"] { - width:4em !important; +input.form-control[type="number"] { + width:4em; padding:2px 0; text-align:center; } input.action-scores { margin:5px -7em 5px 0; } +table#symbolsTable input[type="number"] { + width:6em; + font-size:11px; +} /* history table */ .table-log { @@ -553,13 +557,11 @@ td.maps-cell { .scorebar-spam { background-color: rgba(240, 0, 0, 0.1); - font-size:11px; } - .scorebar-ham { background: rgba(100, 230, 80, 0.1); - font-size:11px; } + /*btn-file for upload file button*/ .btn-file { position: relative; |