MDL-76825 tiny: restyling link on focus for sufficient colour contrast.

Text elements must have sufficient colour contrast against the background,
restyling the link element when it is focused is to ensure colour contrast of at least 4.5:1
This commit is contained in:
Meirza 2023-02-16 09:46:59 +07:00
parent 854f67cf65
commit 75f729911e

View File

@ -2,3 +2,12 @@ body.mce-content-body {
margin: revert;
text-align: initial;
}
/** Web Accessibility - color contrast. */
body.mce-content-body a[data-mce-selected="inline-boundary"] {
background-color: unset;
}
body.mce-content-body a {
color: #0f6cbf;
}
/** */