Merge branch '41814-text-decoration-skip' into 'master'
Resolve "introduce skip-ink underlines to improve readability dyslexic users" Closes #41814 See merge request gitlab-org/gitlab-ce!16569
This commit is contained in:
commit
8bea2a70ac
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
|
||||||
|
// scss-lint:disable PropertySpelling
|
||||||
|
text-decoration-skip: ink;
|
||||||
|
// scss-lint:enable PropertySpelling
|
||||||
&.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