diff options
author | Elouan Martinet <exa@elou.world> | 2021-08-19 23:31:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 17:31:47 -0400 |
commit | 3b2ed4762e1f8e5b4e2b7f0c03b90d9fbcde5c19 (patch) | |
tree | 3b2893ee344cc05a4c121d6a79377f44fec86430 | |
parent | 03937891e2fae759ca3ea37d2080e9e320d7c38d (diff) | |
download | gitea-3b2ed4762e1f8e5b4e2b7f0c03b90d9fbcde5c19.tar.gz gitea-3b2ed4762e1f8e5b4e2b7f0c03b90d9fbcde5c19.zip |
Do not use thin scrollbars on Firefox (#16738)
In #7269, thin scrollbars were added in Arc Green theme. It got moved
in base theme in #13361.
This PR removes the use of thin scrollbars which causes an
accessibility issue. The scrollbars become too thin to be dragged.
Signed-off-by: Elouan Martinet <exa@elou.world>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
-rw-r--r-- | web_src/less/_base.less | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/web_src/less/_base.less b/web_src/less/_base.less index dac18f2bf6..8b951b2548 100644 --- a/web_src/less/_base.less +++ b/web_src/less/_base.less @@ -175,7 +175,6 @@ details summary > * { } * { - scrollbar-width: thin; scrollbar-color: var(--color-primary) transparent; caret-color: var(--color-caret); } |