From fa43c6d94d99087ae68635ee93d0607c2202b8c8 Mon Sep 17 00:00:00 2001 From: tophf Date: Tue, 29 Jun 2021 12:37:30 +0300 Subject: [PATCH] fix flicker when hovering buttons in popup [Firefox] (#1267) --- 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);