gruene-seele/resources/views/admin/inventory/notices/index.blade.php
Kevin Adametz a8f6fef38e Warenwirtschaft: einheitliches UI-Design (AP-19)
- Zentrale, wiederverwendbare Design-Partial wawi-ui.blade.php (gescoptes Inline-CSS, kein Build noetig)
- Bausteine: Seitenkopf, Kennzahlen-Kacheln, Karten, Toolbar/Suche, aufgeraeumte Tabellen, Status-Pills, Datenblatt-Definitionsliste, Name-Zelle mit fester Icon-Spalte, Leer-Zustaende
- Umgestellt: alle Uebersicht-/Listen- und Detailseiten unter admin/inventory
- Responsive: Detail-Datenblaetter brechen unter 768px gestapelt um (Label oben, Wert linksbuendig); Icon-Spalte verhindert Versatz bei Zeilenumbruch
- Entwicklungsplan um AP-19 + UI-Konvention ergaenzt

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-03 13:09:55 +00:00

51 lines
1.2 KiB
PHP

@extends('layouts.layout-2')
@section('content')
@include('admin.inventory.partials.wawi-ui')
<div class="wawi-page">
<div class="wawi-page-head">
<div>
<h1 class="wawi-page-head__title">{{ __('Hinweise') }}</h1>
<p class="wawi-page-head__subtitle">{{ __('Allgemeine Hinweise zur Warenwirtschaft') }}</p>
</div>
</div>
<div class="card wawi-card">
<div class="card-body wawi-notices">
{!! $content !!}
</div>
</div>
</div>
@endsection
@section('styles')
<style>
.wawi-notices h1 {
font-size: 1.5rem;
}
.wawi-notices h2 {
font-size: 1.25rem;
margin-top: 1.5rem;
}
.wawi-notices h3 {
font-size: 1.05rem;
margin-top: 1rem;
}
.wawi-notices blockquote {
border-left: 3px solid #d4d8dd;
padding: 0.25rem 0 0.25rem 1rem;
color: #6c757d;
}
.wawi-notices hr {
margin: 1.5rem 0;
}
.wawi-notices ul {
padding-left: 1.25rem;
}
</style>
@endsection