diff options
Diffstat (limited to 'interface/css/rspamd.css')
-rw-r--r-- | interface/css/rspamd.css | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 896f92008..54310049b 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -95,6 +95,15 @@ fieldset[disabled] .btn { pointer-events: auto; cursor: not-allowed; } +.card.disabled, +.input-group.disabled { + cursor: not-allowed; + opacity: 0.65; +} +.card.disabled *, +.input-group.disabled * { + pointer-events: none; +} .w-1 { width: 1%; } @@ -411,26 +420,33 @@ table#symbolsTable input[type="number"] { display: none; } +#history-from, +#history-count, #history_page_size { - width: 6em !important; + width: 6em; text-align: center; } .outline-dashed-primary { outline: 2px dashed var(--bs-primary); } -#scanMsgSource:placeholder-shown { +#scanMsgSource:placeholder-shown, +#selectorsMsgArea:placeholder-shown { background-image: url("../img/drop-area.svg"); background-repeat: no-repeat; background-position: center; opacity: 0.8; } -#scanMsgSource:not(:placeholder-shown) { background-image: none;} + +#scanMsgSource:not(:placeholder-shown), +#selectorsMsgArea:not(:placeholder-shown) { + background-image: none; +} .scorebar-spam { - background-color: rgba(240 0 0 / 0.1) !important; + background-color: rgb(240 0 0 / 0.1) !important; } .scorebar-ham { - background: rgba(100 230 80 / 0.1) !important; + background: rgb(100 230 80 / 0.1) !important; } .danger .icon { @@ -588,10 +604,10 @@ table#symbolsTable input[type="number"] { bottom: unset; } .codejar-linenumbers { - background: rgba(255 255 255 / 0.07) !important; + background: rgb(255 255 255 / 0.07) !important; } .codejar-linenumber { - color: rgba(120 120 120 / 1) !important; + color: rgb(120 120 120 / 1) !important; text-align: right; } .editor { |