Add text-decoration-skip: ink to all underlined elements
This commit is contained in:
parent
91374baf86
commit
e88cde4883
2 changed files with 12 additions and 1 deletions
|
@ -1,10 +1,16 @@
|
||||||
html {
|
html {
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
|
|
||||||
&.touch .tooltip { display: none !important; }
|
&.touch .tooltip {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
// Improves readability for dyslexic users
|
||||||
|
// Supported only in Chrome/Safari so far
|
||||||
|
text-decoration-skip: ink;
|
||||||
|
|
||||||
&.navless {
|
&.navless {
|
||||||
background-color: $white-light !important;
|
background-color: $white-light !important;
|
||||||
}
|
}
|
||||||
|
|
5
changelogs/unreleased/41814-text-decoration-skip.yml
Normal file
5
changelogs/unreleased/41814-text-decoration-skip.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Improve readability of underlined links for dyslexic users
|
||||||
|
merge_request:
|
||||||
|
author:
|
||||||
|
type: other
|
Loading…
Reference in a new issue