2019-01-07 10:57:48 -05:00
|
|
|
//
|
|
|
|
// Accessibility
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// For improving accessibility.
|
|
|
|
// If possible, add accessibiity styling to stylesheet where selector is
|
|
|
|
// defined. Otherwise, add here.
|
|
|
|
|
|
|
|
// <del> styling taken from:
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del#Accessibility_concerns
|
2019-12-05 14:09:31 -05:00
|
|
|
del::before,
|
2019-01-07 10:57:48 -05:00
|
|
|
del::after {
|
|
|
|
clip-path: inset(100%);
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
del::before {
|
2019-12-05 14:09:31 -05:00
|
|
|
content: ' [deletion start] ';
|
2019-01-07 10:57:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
del::after {
|
2019-12-05 14:09:31 -05:00
|
|
|
content: ' [deletion end] ';
|
|
|
|
}
|