Rebrand Hub+Flux
This commit is contained in:
parent
0a3e52d603
commit
9b47296cea
130 changed files with 9357 additions and 3345 deletions
|
|
@ -1,11 +1,15 @@
|
|||
<div class="grid gap-6 lg:grid-cols-[1fr,320px]">
|
||||
<div class="space-y-6">
|
||||
<flux:card>
|
||||
<flux:heading size="lg" class="mb-4">{{ __('Basisdaten') }}</flux:heading>
|
||||
|
||||
<div class="space-y-4">
|
||||
<article class="panel">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Basisdaten') }}</span>
|
||||
</div>
|
||||
<div class="p-5 space-y-4">
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Key') }} <span class="text-red-500">*</span></flux:label>
|
||||
<flux:label>
|
||||
{{ __('Key') }}
|
||||
<span class="text-[color:var(--color-err)]">*</span>
|
||||
</flux:label>
|
||||
<flux:input wire:model="key" placeholder="press_releases.deleted_published_text" />
|
||||
<flux:description>{{ __('Technischer Schlüssel. Erlaubt sind Kleinbuchstaben, Zahlen, Punkt, Unterstrich und Bindestrich.') }}</flux:description>
|
||||
<flux:error name="key" />
|
||||
|
|
@ -13,13 +17,19 @@
|
|||
|
||||
<div class="grid gap-4 sm:grid-cols-2">
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Bereich') }} <span class="text-red-500">*</span></flux:label>
|
||||
<flux:label>
|
||||
{{ __('Bereich') }}
|
||||
<span class="text-[color:var(--color-err)]">*</span>
|
||||
</flux:label>
|
||||
<flux:input wire:model="area" placeholder="press_releases" />
|
||||
<flux:error name="area" />
|
||||
</flux:field>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Typ') }} <span class="text-red-500">*</span></flux:label>
|
||||
<flux:label>
|
||||
{{ __('Typ') }}
|
||||
<span class="text-[color:var(--color-err)]">*</span>
|
||||
</flux:label>
|
||||
<flux:select wire:model="type">
|
||||
<option value="text">{{ __('Text') }}</option>
|
||||
<option value="number">{{ __('Zahl') }}</option>
|
||||
|
|
@ -31,17 +41,21 @@
|
|||
</div>
|
||||
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Bezeichnung') }} <span class="text-red-500">*</span></flux:label>
|
||||
<flux:label>
|
||||
{{ __('Bezeichnung') }}
|
||||
<span class="text-[color:var(--color-err)]">*</span>
|
||||
</flux:label>
|
||||
<flux:input wire:model="label" placeholder="{{ __('Ersatztext für gelöschte veröffentlichte Pressemitteilungen') }}" />
|
||||
<flux:error name="label" />
|
||||
</flux:field>
|
||||
</div>
|
||||
</flux:card>
|
||||
</article>
|
||||
|
||||
<flux:card>
|
||||
<flux:heading size="lg" class="mb-4">{{ __('Werte') }}</flux:heading>
|
||||
|
||||
<div class="space-y-4">
|
||||
<article class="panel">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Werte') }}</span>
|
||||
</div>
|
||||
<div class="p-5 space-y-4">
|
||||
<flux:field>
|
||||
<flux:label>{{ __('Wert') }}</flux:label>
|
||||
<flux:textarea wire:model="value" rows="10" />
|
||||
|
|
@ -56,18 +70,20 @@
|
|||
<flux:error name="payload" />
|
||||
</flux:field>
|
||||
</div>
|
||||
</flux:card>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<div class="space-y-6">
|
||||
<flux:card>
|
||||
<flux:heading size="lg" class="mb-4">{{ __('Status') }}</flux:heading>
|
||||
|
||||
<flux:checkbox wire:model="isActive" label="{{ __('Aktiv') }}" />
|
||||
|
||||
<flux:text class="mt-3 text-sm text-zinc-500">
|
||||
{{ __('Nur aktive Presets werden von der Anwendung automatisch verwendet.') }}
|
||||
</flux:text>
|
||||
</flux:card>
|
||||
<article class="panel">
|
||||
<div class="panel-head">
|
||||
<span class="section-eyebrow">{{ __('Status') }}</span>
|
||||
</div>
|
||||
<div class="p-5">
|
||||
<flux:checkbox wire:model="isActive" label="{{ __('Aktiv') }}" />
|
||||
<p class="mt-3 text-[12px] text-[color:var(--color-ink-3)] m-0">
|
||||
{{ __('Nur aktive Presets werden von der Anwendung automatisch verwendet.') }}
|
||||
</p>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue