From c32d4f988800596ccb3ad772e92fa32a0399e003 Mon Sep 17 00:00:00 2001 From: ThaUnknown <6506529+ThaUnknown@users.noreply.github.com> Date: Thu, 11 Jul 2024 21:24:38 +0200 Subject: [PATCH] fix: don't scale bars --- common/css.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/css.css b/common/css.css index 98831f3..80d45b1 100644 --- a/common/css.css +++ b/common/css.css @@ -49,7 +49,7 @@ -webkit-tap-highlight-color: transparent; } -a[href]:active, button:not([disabled]):active, fieldset:not([disabled]):active, input:not([disabled]):active, optgroup:not([disabled]):active, option:not([disabled]):active, select:not([disabled]):active, textarea:not([disabled]):active, details:active, [tabindex]:not([tabindex="-1"]):active, [contenteditable]:active, [controls]:active { +a[href]:active, button:not([disabled]):active, fieldset:not([disabled]):active, input:not([disabled], [type='range']):active, optgroup:not([disabled]):active, option:not([disabled]):active, select:not([disabled]):active, textarea:not([disabled]):active, details:active, [tabindex]:not([tabindex="-1"], .seekbar):active, [contenteditable]:active, [controls]:active { transition: transform 0.1s ease-in-out; transform: scale(0.95) !important; }