diff options
author | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-02-18 13:47:22 +0300 |
---|---|---|
committer | Alexander Moisseev <moiseev@mezonplus.ru> | 2017-02-18 13:47:22 +0300 |
commit | eaf1a977282a8bbb8b26a042e0e43ff864ff1feb (patch) | |
tree | 92d17ce0c4ab955625ec152d80f01bd5bef20ab6 /interface/css | |
parent | 16038903c3a2f712ecbcbba92a4f130fbd115c28 (diff) | |
download | rspamd-eaf1a977282a8bbb8b26a042e0e43ff864ff1feb.tar.gz rspamd-eaf1a977282a8bbb8b26a042e0e43ff864ff1feb.zip |
[WebUI] Fix mouse events on throughput summary table area
Diffstat (limited to 'interface/css')
-rw-r--r-- | interface/css/rspamd.css | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/interface/css/rspamd.css b/interface/css/rspamd.css index 15ca4afac..1dad20f7e 100644 --- a/interface/css/rspamd.css +++ b/interface/css/rspamd.css @@ -549,20 +549,31 @@ td.maps-cell { } /* RRD summary */ +#summary-row { + padding-left: 80px; + padding-right: 80px; +} .col-fixed, .col-fluid { position: relative; float: left; - padding-left: 80px; - padding-right: 80px; } .col-fixed { width: 200px; - z-index: 1; + min-height: 1px; /* make an empty div take space */ } .col-fluid { width: calc(100% - 200px); } +#rrd-table_toggle { + position: absolute; + top: 0; + height: 100%; + width: 100%; +} +#rrd-table_wrapper { + z-index: 100; +} #rrd-table { width: 100% !important; text-align: left; |