From c4c8f260967132e44d7f5a4c828388341466a671 Mon Sep 17 00:00:00 2001 From: Alex P Date: Wed, 22 Feb 2017 18:48:54 -0800 Subject: [PATCH] Block text selection on graph heading & hosts graph --- ui/src/style/pages/dashboards.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ui/src/style/pages/dashboards.scss b/ui/src/style/pages/dashboards.scss index 05ae2adc02..979a31cf57 100644 --- a/ui/src/style/pages/dashboards.scss +++ b/ui/src/style/pages/dashboards.scss @@ -69,6 +69,10 @@ $dashboard-item-heading: 30px; left: 0; } .hosts-graph { + user-select: none !important; + -o-user-select: none !important; + -moz-user-select: none !important; + -webkit-user-select: none !important; background-color: transparent; position: absolute; width: 100%; @@ -97,6 +101,10 @@ $dashboard-item-heading: 30px; } .hosts-graph-heading { + user-select: none !important; + -o-user-select: none !important; + -moz-user-select: none !important; + -webkit-user-select: none !important; background-color: transparent; position: absolute; top: 0;