Files
5chan/src/components/mod-empty-state/mod-empty-state.module.css
T
Tommaso CasaburiandGitHub e082c7b428 fix(react): address Doctor findings (#1143)
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).
2026-05-29 17:09:07 +07:00

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);
}