summaryrefslogtreecommitdiffstats
path: root/web_src
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2020-12-24 23:34:49 +0100
committerGitHub <noreply@github.com>2020-12-24 22:34:49 +0000
commit04ae0f2f3f4556c6d0b4adc5f2cffd0cc7d25151 (patch)
tree58a0df0b80dde3bfc684cf507344b2a466adefbb /web_src
parent2c8d302eb17e330624dad5f6cf1bcbf5ccf4917d (diff)
downloadgitea-04ae0f2f3f4556c6d0b4adc5f2cffd0cc7d25151.tar.gz
gitea-04ae0f2f3f4556c6d0b4adc5f2cffd0cc7d25151.zip
Disable Fomantic's custom scrollbars (#14109)
We already have custom scrollbars in our own CSS which are superior to Fomantic's so diable them to save a few bytes and prevent interference.
Diffstat (limited to 'web_src')
-rw-r--r--web_src/fomantic/_site/globals/site.variables1
-rw-r--r--web_src/fomantic/build/semantic.css63
2 files changed, 1 insertions, 63 deletions
diff --git a/web_src/fomantic/_site/globals/site.variables b/web_src/fomantic/_site/globals/site.variables
index 550d44b3b5..dd29751be8 100644
--- a/web_src/fomantic/_site/globals/site.variables
+++ b/web_src/fomantic/_site/globals/site.variables
@@ -3,3 +3,4 @@
@headerFont: var(--fonts-regular);
@pageFont: var(--fonts-regular);
@bold: 500;
+@useCustomScrollbars: false;
diff --git a/web_src/fomantic/build/semantic.css b/web_src/fomantic/build/semantic.css
index c2cc6356ef..eaab660796 100644
--- a/web_src/fomantic/build/semantic.css
+++ b/web_src/fomantic/build/semantic.css
@@ -7723,22 +7723,6 @@ a.inverted.ui.card:hover,
/* Scrollbars */
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-track {
- background: rgba(255, 255, 255, 0.1);
-}
-
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb {
- background: rgba(255, 255, 255, 0.25);
-}
-
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:window-inactive {
- background: rgba(255, 255, 255, 0.15);
-}
-
-.ui.dimmer:not(.inverted)::-webkit-scrollbar-thumb:hover {
- background: rgba(255, 255, 255, 0.35);
-}
-
/*******************************
States
*******************************/
@@ -39175,53 +39159,6 @@ input::selection {
color: rgba(0, 0, 0, 0.87);
}
-/* Force Simple Scrollbars */
-
-body ::-webkit-scrollbar {
- -webkit-appearance: none;
- width: 10px;
- height: 10px;
-}
-
-body ::-webkit-scrollbar-track {
- background: rgba(0, 0, 0, 0.1);
- border-radius: 0;
-}
-
-body ::-webkit-scrollbar-thumb {
- cursor: pointer;
- border-radius: 5px;
- background: rgba(0, 0, 0, 0.25);
- -webkit-transition: color 0.2s ease;
- transition: color 0.2s ease;
-}
-
-body ::-webkit-scrollbar-thumb:window-inactive {
- background: rgba(0, 0, 0, 0.15);
-}
-
-body ::-webkit-scrollbar-thumb:hover {
- background: rgba(128, 135, 139, 0.8);
-}
-
-/* Inverted UI */
-
-body .ui.inverted:not(.dimmer)::-webkit-scrollbar-track {
- background: rgba(255, 255, 255, 0.1);
-}
-
-body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb {
- background: rgba(255, 255, 255, 0.25);
-}
-
-body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb:window-inactive {
- background: rgba(255, 255, 255, 0.15);
-}
-
-body .ui.inverted:not(.dimmer)::-webkit-scrollbar-thumb:hover {
- background: rgba(255, 255, 255, 0.35);
-}
-
/*******************************
Global Overrides
*******************************/