From 55f1c2a53ba9c51671ae27fef45dd45b9219efb0 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Mon, 10 Oct 2022 15:22:23 +0200 Subject: [PATCH] Fix tab's header flickering on hover (happens in FF only) --- pixelegg/css/pixelegg.css | 2 +- pixelegg/less/layout_raster_main.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pixelegg/css/pixelegg.css b/pixelegg/css/pixelegg.css index 81cf8b8e44..8bfa73a5ec 100644 --- a/pixelegg/css/pixelegg.css +++ b/pixelegg/css/pixelegg.css @@ -4552,7 +4552,7 @@ span.overlayContainer img.overlay { #egw_fw_main #egw_fw_tabs .egw_fw_ui_tabs_header .egw_fw_ui_tab_header:hover { background-color: rgba(153, 204, 255, 0.4); padding-bottom: 0px; - padding-top: 7px; + border-top: 7px solid transparent; transition: none; width: -webkit-fill-available; width: -moz-available; diff --git a/pixelegg/less/layout_raster_main.less b/pixelegg/less/layout_raster_main.less index b21184e6c0..91f58a7617 100644 --- a/pixelegg/less/layout_raster_main.less +++ b/pixelegg/less/layout_raster_main.less @@ -111,7 +111,7 @@ &:hover { background-color: @color_hover_row; padding-bottom: 0px; - padding-top: 7px; + border-top: 7px solid transparent; transition: none; width: -webkit-fill-available; width: -moz-available;