mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
Accessibility/semantics pass aligned with React Doctor: role-based spans/divs become real buttons, role=status becomes <output>, modals use native <dialog>, author/peer flags render as <img>, and embed/challenge iframes are sandboxed. Includes review follow-ups: correct button chrome/centering/themed dialog colors and focus rings, the missing aria-label i18n keys (all languages), the Yandex image-search URL, clearer .bso setup steps, a keyboard-accessible image-search dropdown, and removal of the post-edit ('comment edited') display (mod edits unchanged).
30 lines
524 B
CSS
30 lines
524 B
CSS
.modEmptyState {
|
|
display: block;
|
|
padding: 1em 0;
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.modEmptyStateTitle {
|
|
color: red;
|
|
display: block;
|
|
margin: 0;
|
|
font-size: x-large;
|
|
font-weight: bold;
|
|
line-height: normal;
|
|
}
|
|
|
|
.modEmptyStateAction {
|
|
color: var(--post-mobile-abbr-text-color);
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.modEmptyStateAction a {
|
|
text-decoration: var(--button-text-decoration);
|
|
color: var(--button-desktop-text-color);
|
|
}
|
|
|
|
.modEmptyStateAction a:hover {
|
|
color: var(--button-desktop-text-color-hover);
|
|
}
|