mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
2d9b089e16
Fix inconsistent use of tabs and spaces in less files GitOrigin-RevId: c69667f0dc6bc70ea3623890e2b2b741e358d454
27 lines
609 B
Text
27 lines
609 B
Text
//
|
|
// 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
|
|
del::before,
|
|
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 {
|
|
content: ' [deletion start] ';
|
|
}
|
|
|
|
del::after {
|
|
content: ' [deletion end] ';
|
|
}
|