aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorprotoclown <ornano@felinn.org>2024-08-31 15:55:41 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-09-02 17:04:37 +0200
commitb711da739376438197d207edfd46f1eccbac9f98 (patch)
tree3a74caa5adcacdd49f3726d2c3e18ca5a489e101 /apps
parentdf7db817b8f549bc3e566046de06af0d2dc7d47b (diff)
downloadnextcloud-server-b711da739376438197d207edfd46f1eccbac9f98.tar.gz
nextcloud-server-b711da739376438197d207edfd46f1eccbac9f98.zip
fix(css): refine css cleanup
Signed-off-by: protoclown <ornano@felinn.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/theming/css/default.css1
-rw-r--r--apps/theming/lib/Themes/DarkHighContrastTheme.php2
2 files changed, 3 insertions, 0 deletions
diff --git a/apps/theming/css/default.css b/apps/theming/css/default.css
index 5c0b3ec337c..ad5b27530c3 100644
--- a/apps/theming/css/default.css
+++ b/apps/theming/css/default.css
@@ -22,6 +22,7 @@
--color-text-light: var(--color-main-text);
/** @deprecated use `--color-text-maxcontrast` instead */
--color-text-lighter: var(--color-text-maxcontrast);
+ --color-scrollbar: var(--color-border-maxcontrast) transparent;
--color-error: #DB0606;
--color-error-rgb: 219,6,6;
--color-error-hover: #df2525;
diff --git a/apps/theming/lib/Themes/DarkHighContrastTheme.php b/apps/theming/lib/Themes/DarkHighContrastTheme.php
index cff1f1f9a14..127a0bd464c 100644
--- a/apps/theming/lib/Themes/DarkHighContrastTheme.php
+++ b/apps/theming/lib/Themes/DarkHighContrastTheme.php
@@ -89,6 +89,8 @@ class DarkHighContrastTheme extends DarkTheme implements ITheme {
'--color-info-hover' => $this->util->lighten($colorInfo, 10),
'--color-info-text' => $this->util->lighten($colorInfo, 20),
+ '--color-scrollbar' => 'auto',
+
// used for the icon loading animation
'--color-loading-light' => '#000000',
'--color-loading-dark' => '#dddddd',