diff options
author | Simon L <szaimen@e.mail.de> | 2022-09-28 20:35:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-28 20:35:07 +0200 |
commit | fafc1ee8076fe4124c50869b0a7422896666931d (patch) | |
tree | f8007c4d7aa91a08d92755229547697b1d49caa4 /apps/theming/lib | |
parent | 1aa76e5968d8881daa4b9e72c0b9b0d4966ef934 (diff) | |
parent | c9a372034f9aafcc074ac6b34d2af264c3f58ee4 (diff) | |
download | nextcloud-server-fafc1ee8076fe4124c50869b0a7422896666931d.tar.gz nextcloud-server-fafc1ee8076fe4124c50869b0a7422896666931d.zip |
Merge pull request #34287 from nextcloud/enh/33836/fix-theme
fix highcontrast theme
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Themes/HighContrastTheme.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Themes/HighContrastTheme.php b/apps/theming/lib/Themes/HighContrastTheme.php index c7d3b2e8c7f..fda02058446 100644 --- a/apps/theming/lib/Themes/HighContrastTheme.php +++ b/apps/theming/lib/Themes/HighContrastTheme.php @@ -29,7 +29,7 @@ use OCA\Theming\ITheme; class HighContrastTheme extends DefaultTheme implements ITheme { public function getId(): string { - return 'highcontrast'; + return 'light-highcontrast'; } public function getMediaQuery(): string { |