bd35a360ca
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
13 lines
263 B
CSS
13 lines
263 B
CSS
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;
|
|
}
|
|
/** */ |