From 5a7f07a3c25921cb1b6d1e91097c1a972dfdeb46 Mon Sep 17 00:00:00 2001 From: tophf Date: Tue, 29 Jun 2021 05:53:08 +0300 Subject: [PATCH] fix flicker when hovering buttons in popup [Firefox] --- popup/popup.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/popup/popup.css b/popup/popup.css index 7de1e71e..9ae12e80 100644 --- a/popup/popup.css +++ b/popup/popup.css @@ -21,6 +21,10 @@ body { background-color: #fff; } +.firefox button { + transition: none; /* FF borks subpixel AA during transitions in popup */ +} + body > div:not(#installed):not(#message-box):not(.colorpicker-popup) { padding-left: var(--outer-padding); padding-right: var(--outer-padding);