2026-04-20 19:55:49 +02:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Core CSS framework entrypoint for the default admin shell.
|
|
|
|
|
* Keep imports in deterministic order; file-level @layer declarations define precedence.
|
|
|
|
|
*/
|
|
|
|
|
@import url("app-layers.css");
|
|
|
|
|
|
|
|
|
|
/* Shared foundation used by multiple templates */
|
|
|
|
|
@import url("components/app-badges.css");
|
|
|
|
|
@import url("layout/app-shell.css");
|
|
|
|
|
@import url("components/app-dialog.css");
|
|
|
|
|
@import url("components/app-blockquote.css");
|
|
|
|
|
@import url("components/app-forms.css");
|
|
|
|
|
@import url("components/app-flash.css");
|
|
|
|
|
@import url("components/app-brand.css");
|
|
|
|
|
@import url("components/app-file-upload.css");
|
feat(responsive): mobile polish — topbar, drawer, footer, tabs, notification dropdown
Unifies the breakpoint system and fixes cross-layer CSS bugs that kept
the old mobile hide rules from ever taking effect.
Breakpoints:
- Document canonical xs/sm/md/lg/xl/2xl scale in variables.base.css
- Replace 968px one-offs with 1024px (app-details, app-page-editor)
- Make details tab-panel max-width responsive (min(70ch, 100%))
Topbar (< md):
- Hide breadcrumb in components layer so cross-layer overrides actually win
- Dock search icon alongside right-column icons via flex layout
- Add xs (400px) tightening for hit-area preservation
- Hide brand divider alongside hidden brand name
- Switch hover states to theme-aware --app-dropdown-hover-background-color
Mobile drawer:
- Icon-bar now vertical like desktop (was horizontal top strip, effectively invisible)
- Sidebar shifted 52px right so icon-bar and sidebar slide in as one 280px unit
- Add breathing room above first nav item (20px top padding)
List tabs:
- Rewrite .app-list-tabs to horizontal scroll with hidden scrollbar, snap,
and mask-image gradient fades; add initListTabs to scroll active into view
- Register as runtime component in app-init.js
List toolbar:
- Stack wide controls (multi-select, search/text inputs) full-width below sm,
keep compact controls at natural width
Footer:
- New dedicated app-footer.css with mobile-first stacking, border-top separator,
theme-aware hover; remove redundant rules from app-shell.css
Notification dropdown:
- Width with min(360px, 100vw - 2rem) and min-width: 0 override global
details > ul rule; switch to position: fixed below md so it hugs the
viewport right edge instead of the non-rightmost bell button
Content spacing:
- Add padding-block-start to .app-main-content on mobile (was 0)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-23 23:50:59 +02:00
|
|
|
@import url("components/app-footer.css");
|
2026-04-20 19:55:49 +02:00
|
|
|
|
|
|
|
|
/* Default admin experience */
|
|
|
|
|
@import url("vendor-overrides/multi-select.css");
|
|
|
|
|
@import url("components/app-icon-button.css");
|
|
|
|
|
@import url("components/app-buttons.css");
|
|
|
|
|
@import url("vendor-overrides/gridjs.css");
|
|
|
|
|
@import url("layout/app-topbar.css");
|
|
|
|
|
@import url("layout/app-sidebar.css");
|
|
|
|
|
@import url("components/app-search.css");
|
|
|
|
|
@import url("components/app-list-titlebar.css");
|
|
|
|
|
@import url("components/app-details-titlebar.css");
|
|
|
|
|
@import url("components/app-dashboard-titlebar.css");
|
|
|
|
|
@import url("components/app-empty-state.css");
|
|
|
|
|
@import url("components/app-details.css");
|
|
|
|
|
@import url("components/app-details-card.css");
|
|
|
|
|
@import url("components/app-form-info-tile.css");
|
|
|
|
|
@import url("components/app-list-table.css");
|
|
|
|
|
@import url("components/app-list-tabs.css");
|
|
|
|
|
@import url("components/app-tabs.css");
|
|
|
|
|
@import url("components/app-list-toolbar.css");
|
|
|
|
|
@import url("components/app-filter-drawer.css");
|
2026-04-22 15:22:26 +02:00
|
|
|
@import url("components/app-detail-drawer.css");
|
2026-04-20 19:55:49 +02:00
|
|
|
@import url("components/app-active-filter-chips.css");
|
|
|
|
|
@import url("components/app-confirm-dialog.css");
|
|
|
|
|
@import url("components/app-breadcrumb.css");
|
|
|
|
|
@import url("components/app-tile.css");
|
|
|
|
|
@import url("components/app-tooltips.css");
|
|
|
|
|
@import url("components/app-lookup-field.css");
|
feat(responsive): mobile polish — topbar, drawer, footer, tabs, notification dropdown
Unifies the breakpoint system and fixes cross-layer CSS bugs that kept
the old mobile hide rules from ever taking effect.
Breakpoints:
- Document canonical xs/sm/md/lg/xl/2xl scale in variables.base.css
- Replace 968px one-offs with 1024px (app-details, app-page-editor)
- Make details tab-panel max-width responsive (min(70ch, 100%))
Topbar (< md):
- Hide breadcrumb in components layer so cross-layer overrides actually win
- Dock search icon alongside right-column icons via flex layout
- Add xs (400px) tightening for hit-area preservation
- Hide brand divider alongside hidden brand name
- Switch hover states to theme-aware --app-dropdown-hover-background-color
Mobile drawer:
- Icon-bar now vertical like desktop (was horizontal top strip, effectively invisible)
- Sidebar shifted 52px right so icon-bar and sidebar slide in as one 280px unit
- Add breathing room above first nav item (20px top padding)
List tabs:
- Rewrite .app-list-tabs to horizontal scroll with hidden scrollbar, snap,
and mask-image gradient fades; add initListTabs to scroll active into view
- Register as runtime component in app-init.js
List toolbar:
- Stack wide controls (multi-select, search/text inputs) full-width below sm,
keep compact controls at natural width
Footer:
- New dedicated app-footer.css with mobile-first stacking, border-top separator,
theme-aware hover; remove redundant rules from app-shell.css
Notification dropdown:
- Width with min(360px, 100vw - 2rem) and min-width: 0 override global
details > ul rule; switch to position: fixed below md so it hugs the
viewport right edge instead of the non-rightmost bell button
Content spacing:
- Add padding-block-start to .app-main-content on mobile (was 0)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-23 23:50:59 +02:00
|
|
|
@import url("components/app-token-select.css");
|
2026-04-20 19:55:49 +02:00
|
|
|
@import url("components/app-page-editor.css");
|
|
|
|
|
@import url("vendor-overrides/editorjs.css");
|
|
|
|
|
@import url("components/app-page-copy.css");
|
|
|
|
|
@import url("layout/app-aside-icon-bar.css");
|