diff options
author | Joas Schilling <coding@schilljs.com> | 2024-09-12 16:37:27 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-09-16 09:26:51 +0200 |
commit | 74fa3693f801f3e3cce177171417bcf062f7c73d (patch) | |
tree | c81a725e97ce3baa7d6054083f42540cefc4acc9 | |
parent | 6e576e1fbdefd22384532e51944f952211018eb7 (diff) | |
download | nextcloud-server-74fa3693f801f3e3cce177171417bcf062f7c73d.tar.gz nextcloud-server-74fa3693f801f3e3cce177171417bcf062f7c73d.zip |
fix(a11y): Update OpenDyslexic from 0.920 to 2.001
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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 3275a005c8d..9f8a0a048d6 100644 --- a/apps/theming/lib/Themes/DyslexiaFont.php +++ b/apps/theming/lib/Themes/DyslexiaFont.php @@ -61,30 +61,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'); } "; } |