From: Alexander Moisseev Date: Sat, 18 Feb 2017 10:47:22 +0000 (+0300) Subject: [WebUI] Fix mouse events on throughput summary table area X-Git-Tag: 1.5.0~84^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=eaf1a977282a8bbb8b26a042e0e43ff864ff1feb;p=rspamd.git [WebUI] Fix mouse events on throughput summary table area --- 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; diff --git a/interface/index.html b/interface/index.html index 71b9d5754..3fd348206 100644 --- a/interface/index.html +++ b/interface/index.html @@ -107,7 +107,7 @@ -
+
Loading.. @@ -115,6 +115,7 @@
+
diff --git a/interface/js/app/graph.js b/interface/js/app/graph.js index 62452d367..86f7ca352 100644 --- a/interface/js/app/graph.js +++ b/interface/js/app/graph.js @@ -148,6 +148,16 @@ function($, D3Evolution, unused) { }); } + // Handling mouse events on overlapping elements + $("#rrd-pie").mouseover(function () { + $("#rrd-pie").css("z-index", "200"); + $("#rrd-table_toggle").css("z-index", "300"); + }); + $("#rrd-table_toggle").mouseover(function () { + $("#rrd-pie").css("z-index", "0"); + $("#rrd-table_toggle").css("z-index", "0"); + }); + var interface = {}; interface.draw = function(rspamd, graphs, neighbours, checked_server, type) {