coolify/resources/views/layouts/simple.blade.php

12 lines
367 B
PHP
Raw Normal View History

2023-08-29 14:31:46 +00:00
@extends('layouts.base')
@section('body')
{{-- Manual @livewireScripts disables Livewire's asset auto-injection, so the
styles (e.g. [wire\:loading] { display: none }) must be rendered manually too. --}}
@livewireStyles
@livewireScripts
feat(ui): WCAG contrast, neutral oklch surface system, and mobile nav overhaul Design tokens - Fix WCAG AA text failures: darken light muted text and lighten dark tertiary text so 13-14px copy clears 4.5:1 on every surface. - Rebuild the dark surface ladder in correct values (oklch compresses to near-black below ~15%), giving visible steps: content, chrome, cards. - Establish a 3-layer shell (deep content, lighter sidebar/topbar chrome, lifted cards) with crisp hairline rings and a restrained card shadow. - Unify every surface to one neutral temperature (pure gray); neutralize the cool-tinted sidebar text and legacy surface tokens. - Convert all color tokens to oklch (neutrals + brand). - Unify inputs to the recessed token; fix invisible dark placeholders. - One shared --shadow-dropdown for all menus/listboxes/command palette. Settings sidebar - Sticky contained-card rail with subtle scrollbar; collapsible sub-section groups (active open by default), cross-page section links. - Mobile: collapsible disclosure with animated open, outside/Escape dismiss, press feedback, and reduced-motion support. Mobile - Consolidate the resource header (title + status + links on one row). - Tighten settings-page vertical rhythm. - Rebuild the main sidebar as an animated shadcn-style sheet (slide/fade, Escape, scroll lock, in-panel close, close-on-navigate). Fixes - #11532: selected server invisible in the light-mode terminal toolbar. Docs: update DESIGN.md tokens, shell layering, and temperature rules.
2026-09-07 02:35:56 +00:00
<main class="h-full bg-neutral-50 dark:bg-base">
2023-08-29 14:31:46 +00:00
{{ $slot }}
</main>
2024-03-25 13:23:32 +00:00
@parent
2023-08-29 14:31:46 +00:00
@endsection