Files
Styleguide/components/gridfield.html
T
2026-06-10 13:22:40 +02:00

43 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Styleguide Gridfield</title>
<link rel="stylesheet" href="../styleguide.css">
</head>
<body class="sg-page-gridfield">
<h1 class="sg-main-heading">Components Gridfield</h1>
<section id="component-gridfield">
<p class="sg-preview-label">Component: Gridfield</p>
<div class="sg-gridfield-demo" data-component="gridfield">
<div class="sg-gridfield-row" data-gridfield-state="normal">
<p class="sg-table-label">Komponente normal</p>
<span class="sg-label">Label</span>
<select class="sg-interaction-element sg-pulldown" aria-label="Gridfield Pulldown">
<option selected>Auswahl</option>
</select>
</div>
<div class="sg-gridfield-row" data-gridfield-state="input">
<p class="sg-table-label">Eingabefeld</p>
<span class="sg-label">Label</span>
<input class="sg-interaction-element sg-input-single-line" type="text" placeholder="Einzeiliges Eingabefeld" aria-label="Gridfield Eingabefeld">
</div>
<div class="sg-gridfield-row" data-gridfield-state="disabled">
<p class="sg-table-label">form-disabled</p>
<span class="sg-label">Label</span>
<select class="sg-interaction-element sg-pulldown sg-pulldown--disabled" aria-label="Gridfield deaktivierter Pulldown" disabled>
<option>Nicht verfügbar</option>
</select>
</div>
</div>
</section>
</body>
</html>