forked from fa/breadcrumb-the-shire
CSS: - Remove duplicate li::before block in app-search.css - Fix typo: search-reuslt → search-result in app-search.css - Remove commented-out CSS rules in app-flash.css - Add descriptive header comment to all 27 CSS component files JS: - Complete WAI-ARIA Tabs pattern: generate IDs, add aria-controls on tab buttons and aria-labelledby on tab panels (app-tabs.js) - Add JSDoc header comments to ~33 JS files (core + components) - Add explanatory block comment to app-boot.js (why classic IIFE) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
156 lines
4.2 KiB
CSS
156 lines
4.2 KiB
CSS
@layer components {
|
|
/* Tab navigation — scrollable strip with chevron overflow, active/invalid states, no-JS fallback. */
|
|
.app-tabs {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--app-spacing);
|
|
}
|
|
|
|
/* No-JS fallback: show only first tab panel. */
|
|
html.no-js [data-tabs] [data-tab-panel] {
|
|
display: none;
|
|
}
|
|
|
|
html.no-js [data-tabs] [data-tab-panel]:first-of-type {
|
|
display: block;
|
|
}
|
|
|
|
/* JS mode: keep panels hidden until tab init completed (prevents flash). */
|
|
html.js [data-tabs]:not([data-tabs-ready="1"]) [data-tab-panel] {
|
|
display: none !important;
|
|
}
|
|
|
|
/* ------------------------------------------------------------------ */
|
|
/* Tab nav wrapper — holds optional chevron buttons + scrollable nav */
|
|
/* ------------------------------------------------------------------ */
|
|
.app-tabs-nav-wrap {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: stretch;
|
|
border-bottom: 1px solid var(--tabs-border);
|
|
}
|
|
|
|
/* Chevron scroll buttons — styled like .outline.secondary.small */
|
|
.app-tabs-nav-wrap > .app-tabs-chevron {
|
|
flex: 0 0 auto;
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid var(--app-border);
|
|
border-radius: var(--app-border-radius);
|
|
background-color: transparent;
|
|
color: var(--app-secondary);
|
|
font-size: 13px;
|
|
line-height: 1;
|
|
cursor: pointer;
|
|
z-index: 1;
|
|
margin-block: auto;
|
|
transition:
|
|
background-color var(--app-transition),
|
|
border-color var(--app-transition),
|
|
color var(--app-transition);
|
|
}
|
|
|
|
.app-tabs-nav-wrap > .app-tabs-chevron:hover,
|
|
.app-tabs-nav-wrap > .app-tabs-chevron:focus-visible {
|
|
border-color: var(--app-secondary-hover-border);
|
|
color: var(--app-secondary-hover);
|
|
}
|
|
|
|
.app-tabs-nav-wrap > .app-tabs-chevron[disabled] {
|
|
opacity: 0.25;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.app-tabs-nav-wrap > .app-tabs-chevron--start {
|
|
order: -1;
|
|
margin-inline-end: 4px;
|
|
}
|
|
|
|
.app-tabs-nav-wrap > .app-tabs-chevron--end {
|
|
order: 1;
|
|
margin-inline-start: 4px;
|
|
}
|
|
|
|
/* Show chevrons when overflow is detected */
|
|
.app-tabs-nav-wrap.has-overflow > .app-tabs-chevron {
|
|
display: flex;
|
|
}
|
|
|
|
/* ------------------------------------------------------------------ */
|
|
/* The scrollable tab strip */
|
|
/* ------------------------------------------------------------------ */
|
|
.app-tabs-nav {
|
|
display: flex;
|
|
border-bottom: 1px solid var(--tabs-border); /* No-JS fallback border */
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
padding-block-start: 2px;
|
|
padding-left: 2px;
|
|
white-space: nowrap;
|
|
flex: 1 1 0%;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
/* When wrapped by JS, the wrapper owns the border */
|
|
.app-tabs-nav-wrap > .app-tabs-nav {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* When JS is active: hide the native scrollbar (chevrons take over) */
|
|
html.js .app-tabs-nav {
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
|
|
html.js .app-tabs-nav::-webkit-scrollbar {
|
|
display: none; /* Chrome / Safari / Edge */
|
|
}
|
|
|
|
.app-tabs-nav button,
|
|
.app-tabs-nav a {
|
|
background: transparent;
|
|
border: 0;
|
|
padding: 5px 10px 5px 10px;
|
|
color: var(--tabs-muted) !important;
|
|
cursor: pointer;
|
|
border-bottom: 2px solid transparent;
|
|
text-decoration: none;
|
|
border-radius: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.app-tabs-nav button:hover,
|
|
.app-tabs-nav button:focus-visible,
|
|
.app-tabs-nav a:hover,
|
|
.app-tabs-nav a:focus-visible {
|
|
--app-color: inherit;
|
|
color: var(--app-color) !important;
|
|
}
|
|
|
|
.app-tabs-nav button.is-active,
|
|
.app-tabs-nav a.is-active {
|
|
--app-color: inherit;
|
|
color: var(--app-color) !important;
|
|
border-color: var(--tabs-active);
|
|
}
|
|
|
|
.app-tabs-nav button.has-invalid,
|
|
.app-tabs-nav a.has-invalid {
|
|
color: var(--app-danger, #dc3545) !important;
|
|
}
|
|
|
|
[data-tab-panel][hidden] {
|
|
display: none;
|
|
}
|
|
|
|
html.js [data-tabs][data-tabs-ready="1"] [data-tab-panel]:not([hidden]) {
|
|
display: block;
|
|
}
|
|
|
|
/* Safety fallback when JS is available but the ready marker is missing. */
|
|
html:not(.no-js) [data-tabs] [data-tab-panel]:not([hidden]) {
|
|
display: block;
|
|
}
|
|
}
|