aboutsummaryrefslogtreecommitdiffstats
path: root/interface/css/rspamd.css
diff options
context:
space:
mode:
authormoisseev <moiseev@mezonplus.ru>2020-07-14 11:47:12 +0300
committermoisseev <moiseev@mezonplus.ru>2020-07-14 11:47:12 +0300
commit903b0905432ca4e160e482c4c9c3157f74762b1a (patch)
treebcaf647258a8580fd92f07c99ff7c0b96555413b /interface/css/rspamd.css
parentefd377128a2944900550cb08810878202e6808c5 (diff)
downloadrspamd-903b0905432ca4e160e482c4c9c3157f74762b1a.tar.gz
rspamd-903b0905432ca4e160e482c4c9c3157f74762b1a.zip
[WebUI] Add map editor (requires a modern browser)
Diffstat (limited to 'interface/css/rspamd.css')
-rw-r--r--interface/css/rspamd.css32
1 files changed, 29 insertions, 3 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css
index 4330962b0..5fefb4b9a 100644
--- a/interface/css/rspamd.css
+++ b/interface/css/rspamd.css
@@ -285,9 +285,6 @@ table#symbolsTable input[type="number"] {
background-color: #cddbff;
}
-#map-textarea {
- height: 360px;
-}
td.maps-cell {
vertical-align: middle;
}
@@ -536,3 +533,32 @@ td.maps-cell {
#clusterTable tr:last-child td:last-child {
border-radius: 0 0 calc(.25rem - 1px) 0;
}
+
+textarea#editor {
+ height: calc(100vh - 178px);
+}
+.codejar-wrap {
+ background: rgb(0, 47, 79);
+ border-radius: 6px;
+ max-height: calc(100vh - 178px);
+ overflow-y: auto;
+}
+.codejar-linenumbers {
+ background: rgba(255, 255, 255, 0.07) !important;
+ bottom: unset !important;
+ color: rgba(120, 120, 120, 1) !important;
+ mix-blend-mode: unset !important;
+ text-align: right;
+ overflow: unset !important;
+}
+.editor {
+ color: #fff;
+ font-family: monospace;
+ font-size: 14px;
+ font-weight: 400;
+ letter-spacing: normal;
+ min-height: 1.5em;
+ resize: unset !important;
+ tab-size: 4;
+ overflow-y: visible !important;
+}