diff options
author | Joas Schilling <coding@schilljs.com> | 2024-09-12 16:37:27 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-09-12 16:53:13 +0200 |
commit | 599a94fc9a848f63dae2fc0623d6f446a993d6ed (patch) | |
tree | 69cd37469fcd973dfb8a01db45366183c2df40aa /apps/theming | |
parent | 2480567005776cc96d543b52992c83a41d75d1a6 (diff) | |
download | nextcloud-server-599a94fc9a848f63dae2fc0623d6f446a993d6ed.tar.gz nextcloud-server-599a94fc9a848f63dae2fc0623d6f446a993d6ed.zip |
fix(a11y): Update OpenDyslexic from 0.920 to 2.001
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/fonts/OpenDyslexic-Bold.otf | bin | 230716 -> 42408 bytes | |||
-rw-r--r-- | apps/theming/fonts/OpenDyslexic-Bold.ttf | bin | 311772 -> 0 bytes | |||
-rw-r--r-- | apps/theming/fonts/OpenDyslexic-Bold.woff | bin | 135076 -> 0 bytes | |||
-rw-r--r-- | apps/theming/fonts/OpenDyslexic-Regular.otf | bin | 215772 -> 41088 bytes | |||
-rw-r--r-- | apps/theming/fonts/OpenDyslexic-Regular.ttf | bin | 308524 -> 0 bytes | |||
-rw-r--r-- | apps/theming/fonts/OpenDyslexic-Regular.woff | bin | 128784 -> 0 bytes | |||
-rw-r--r-- | apps/theming/lib/Themes/DyslexiaFont.php | 14 |
7 files changed, 3 insertions, 11 deletions
diff --git a/apps/theming/fonts/OpenDyslexic-Bold.otf b/apps/theming/fonts/OpenDyslexic-Bold.otf Binary files differindex 7d074cbddee..4c492e2fcc2 100644 --- a/apps/theming/fonts/OpenDyslexic-Bold.otf +++ b/apps/theming/fonts/OpenDyslexic-Bold.otf diff --git a/apps/theming/fonts/OpenDyslexic-Bold.ttf b/apps/theming/fonts/OpenDyslexic-Bold.ttf Binary files differdeleted file mode 100644 index 25cf37f99e2..00000000000 --- a/apps/theming/fonts/OpenDyslexic-Bold.ttf +++ /dev/null diff --git a/apps/theming/fonts/OpenDyslexic-Bold.woff b/apps/theming/fonts/OpenDyslexic-Bold.woff Binary files differdeleted file mode 100644 index 41886ae9dda..00000000000 --- a/apps/theming/fonts/OpenDyslexic-Bold.woff +++ /dev/null diff --git a/apps/theming/fonts/OpenDyslexic-Regular.otf b/apps/theming/fonts/OpenDyslexic-Regular.otf Binary files differindex ebef13c4ce3..1226d2ab281 100644 --- a/apps/theming/fonts/OpenDyslexic-Regular.otf +++ b/apps/theming/fonts/OpenDyslexic-Regular.otf diff --git a/apps/theming/fonts/OpenDyslexic-Regular.ttf b/apps/theming/fonts/OpenDyslexic-Regular.ttf Binary files differdeleted file mode 100644 index 4b0cb8c46b7..00000000000 --- a/apps/theming/fonts/OpenDyslexic-Regular.ttf +++ /dev/null diff --git a/apps/theming/fonts/OpenDyslexic-Regular.woff b/apps/theming/fonts/OpenDyslexic-Regular.woff Binary files differdeleted file mode 100644 index 26a2934d640..00000000000 --- a/apps/theming/fonts/OpenDyslexic-Regular.woff +++ /dev/null diff --git a/apps/theming/lib/Themes/DyslexiaFont.php b/apps/theming/lib/Themes/DyslexiaFont.php index 2552fc65724..2448de7b3c8 100644 --- a/apps/theming/lib/Themes/DyslexiaFont.php +++ b/apps/theming/lib/Themes/DyslexiaFont.php @@ -43,30 +43,22 @@ class DyslexiaFont extends DefaultTheme implements ITheme { } public function getCustomCss(): string { - $fontPathWoff = $this->urlGenerator->linkTo('theming', 'fonts/OpenDyslexic-Regular.woff'); $fontPathOtf = $this->urlGenerator->linkTo('theming', 'fonts/OpenDyslexic-Regular.otf'); - $fontPathTtf = $this->urlGenerator->linkTo('theming', 'fonts/OpenDyslexic-Regular.ttf'); - $boldFontPathWoff = $this->urlGenerator->linkTo('theming', 'fonts/OpenDyslexic-Bold.woff'); $boldFontPathOtf = $this->urlGenerator->linkTo('theming', 'fonts/OpenDyslexic-Bold.otf'); - $boldFontPathTtf = $this->urlGenerator->linkTo('theming', 'fonts/OpenDyslexic-Bold.ttf'); return " @font-face { font-family: 'OpenDyslexic'; font-style: normal; font-weight: 400; - src: url('$fontPathWoff') format('woff'), - url('$fontPathOtf') format('opentype'), - url('$fontPathTtf') format('truetype'); + src: url('$fontPathOtf') format('opentype'); } - + @font-face { font-family: 'OpenDyslexic'; font-style: normal; font-weight: 700; - src: url('$boldFontPathWoff') format('woff'), - url('$boldFontPathOtf') format('opentype'), - url('$boldFontPathTtf') format('truetype'); + src: url('$boldFontPathOtf') format('opentype'); } "; } |