mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
64e75dac76
* A11y improvements * fix: Accessibility improvements for sidebar, layout, and emoji icons - Add role="main" to content area and role="contentinfo" to right sidebar - Add aria-expanded to sidebar Disclosure toggle button - Add nav landmark with aria-label to shared sidebar navigation - Render SidebarLink as button instead of div when no link target - Hide decorative emoji icons from screen readers (aria-hidden) - Add aria-hidden to EmojiIcon SVG element Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: Restore PopoverTrigger in FindAndReplace, add role to span PopoverAnchor broke the find/replace popover. Revert to PopoverTrigger and instead add role="button" and aria-label to the span so ARIA attributes from Radix are valid on the element. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: Sidebar button styling * fix: Use semantic list elements for References document list Change the References list container from div to ul and wrap each ReferenceListItem in an li element for proper screen reader semantics. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: Address PR review feedback for accessibility changes - Heading buttons: switch from mousedown to click for keyboard access - Heading fold: add aria-expanded attribute - FindAndReplace: use real button element instead of span with role - SidebarLink: branch render to avoid passing NavLink props to button - Right sidebar: use role=complementary instead of contentinfo Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: Use translation hook for FindAndReplace, revert anchor click handler - Use t() for aria-label in FindAndReplace button - Revert heading anchor from click back to mousedown to avoid side effects Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: Add ts-expect-error for styled NavLink overload mismatch The spread props on the NavLink branch cause a TypeScript overload mismatch that was previously suppressed. Re-add the suppression. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
49 lines
916 B
HTML
49 lines
916 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Error - //inject-status//</title>
|
|
<meta
|
|
name="viewport"
|
|
content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"
|
|
/>
|
|
|
|
<style>
|
|
body {
|
|
font:
|
|
16px "Helvetica Neue",
|
|
Helvetica,
|
|
sans-serif;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0;
|
|
margin: 0;
|
|
height: 100vh;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
p {
|
|
color: #394351;
|
|
}
|
|
|
|
pre {
|
|
font-size: 0.8em;
|
|
border-radius: 8px;
|
|
padding: 12px 16px;
|
|
background: #dae1e9;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="error">
|
|
<h1>//inject-status//</h1>
|
|
<p>//inject-message//</p>
|
|
<pre>//inject-stack//</pre>
|
|
</div>
|
|
</body>
|
|
</html>
|