From e0ceddc2e6793dc1f3ef5b83d75db06ae1e2f2d9 Mon Sep 17 00:00:00 2001 From: Eliseu Amaro Date: Fri, 4 Feb 2022 21:10:21 +0000 Subject: [PATCH] [CSS] Replaced fooobar:not([foo=bar], [foo2=bar2]) rule, as Firefox ESR 78.x doesn't support that specific syntax --- public/assets/default_theme/css/widgets/buttons.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/assets/default_theme/css/widgets/buttons.css b/public/assets/default_theme/css/widgets/buttons.css index 6902126b25..24e9f1eb87 100644 --- a/public/assets/default_theme/css/widgets/buttons.css +++ b/public/assets/default_theme/css/widgets/buttons.css @@ -70,10 +70,15 @@ button, select, textarea { background: var(--gradient) !important; } -button, input:not([type=checkbox],[type=radio]) { +button, input { background: var(--gradient) !important; } +input[type=radio], +input[type=checkbox] { + background: initial; +} + select { background-repeat: no-repeat; border-radius: var(--s);