If the "Select Nodes" (top right) select button is over a graph zoom area, a user can not click the "select" button because the graph zoom area has a higher z-index. To fix the issue, modify the div.css style sheet.
/*********** Node Tree ****************/
div #div_node_tree {
background-color: gray;
position: absolute;
border: 2px solid black;
right: 0px;
z-index: 1000;
Here is the patch to fix the css style sheets:
/*********** Node Tree ****************/
div #div_node_tree {
background-color: gray;
position: absolute;
border: 2px solid black;
right: 0px;
z-index: 1000;
Here is the patch to fix the css style sheets:
Code:
diff -ruN /root/zabbix-original/frontends/php/styles/div.css /root/zabbix/frontends/php/styles/div.css
--- /root/zabbix-original/frontends/php/styles/div.css 2009-10-20 01:13:44.000000000 -0400
+++ /root/zabbix/frontends/php/styles/div.css 2009-10-20 01:34:48.000000000 -0400
@@ -440,4 +459,5 @@
position: absolute;
border: 2px solid black;
right: 0px;
+ z-index: 1000;
}