From 5a76895105775e886d88084ee437087fecfd1a72 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 25 Feb 2016 13:04:26 +0100 Subject: [PATCH] CSS: Disable :hover transition on tr (WIP) If any tr is hovered and auto-refresh kicks in, the tr will be hovered again which leads to "flickering". We should find good a way to use transitions w/o flickering. refs #11073 --- modules/monitoring/public/css/tables.less | 2 -- public/css/icinga/main.less | 2 -- 2 files changed, 4 deletions(-) diff --git a/modules/monitoring/public/css/tables.less b/modules/monitoring/public/css/tables.less index 7644f3297..bb2027c95 100644 --- a/modules/monitoring/public/css/tables.less +++ b/modules/monitoring/public/css/tables.less @@ -207,8 +207,6 @@ } tr[href]:hover { - .transition(background 0.2s ease); - background-color: @tr-hover-color; cursor: pointer; } diff --git a/public/css/icinga/main.less b/public/css/icinga/main.less index 54f51860c..82e4456bd 100644 --- a/public/css/icinga/main.less +++ b/public/css/icinga/main.less @@ -168,8 +168,6 @@ a:hover > .icon-cancel { } tr[href]:hover { - .transition(background 0.2s ease); - background-color: @tr-hover-color; cursor: pointer; }