kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1228 lines
42 KiB
1228 lines
42 KiB
10 years ago
|
# Forms
|
||
|
|
||
10 years ago
|
## Forms: Standard style
|
||
|
|
||
10 years ago
|
```
|
||
|
<form class="form">
|
||
10 years ago
|
<div class="form--field -required">
|
||
|
<label class="form--label">Text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<hr class="form--separator">
|
||
10 years ago
|
<button class="button -highlight">Save</button>
|
||
10 years ago
|
<button class="button">Cancel</button>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
|
## Forms: Bordered style
|
||
|
|
||
|
```
|
||
|
<form class="form -bordered">
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
10 years ago
|
<hr class="form--separator">
|
||
10 years ago
|
<button class="button -highlight">Save</button>
|
||
10 years ago
|
<button class="button">Cancel</button>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
|
## Forms: Standard layout
|
||
|
|
||
|
```
|
||
10 years ago
|
@full-width
|
||
|
|
||
10 years ago
|
<form class="form">
|
||
10 years ago
|
<section class="form--section">
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field-instructions">
|
||
|
Write anything you like.
|
||
10 years ago
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field">
|
||
10 years ago
|
<label class="form--label -required">Email:</label>
|
||
10 years ago
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="email" class="form--text-field" placeholder="a valid email">
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field-extra-actions">
|
||
|
<a href="#">Request new email</a>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field -required">
|
||
|
<label class="form--label">Number:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="number" class="form--text-field">
|
||
|
</div>
|
||
10 years ago
|
<a href="#" class="form--field-inline-action">
|
||
|
<span class="">Add 5</span>
|
||
|
</a>
|
||
10 years ago
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Any number from 1 to 10!
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field -required">
|
||
|
<label class="form--label">Long text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container">
|
||
|
<textarea class="form--text-area">El resto della concluían sayo de velarte, calzas de velludo para las fiestas, con sus pantuflos de lo mesmo, y los días de entresemana se honraba con su vellorí de lo más fino.</textarea>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Write more about anything.
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
10 years ago
|
<div class="form--field -required -no-label">
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
This field has no label, which means you really can write what you like.
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field -required -full-width">
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
This field also has no label, but takes up the full width.
|
||
|
</div>
|
||
|
</div>
|
||
10 years ago
|
</section>
|
||
10 years ago
|
</form>
|
||
|
```
|
||
|
|
||
|
## Forms: Standard layout, wide labels
|
||
|
|
||
|
```
|
||
10 years ago
|
@full-width
|
||
|
|
||
10 years ago
|
<form class="form -wide-labels">
|
||
10 years ago
|
<section class="form--section">
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field">
|
||
|
<label class="form--label">Email:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="email" class="form--text-field" placeholder="a valid email">
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field-instructions">
|
||
|
Your personal email address.
|
||
10 years ago
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field -required">
|
||
10 years ago
|
<label class="form--label">Amount:</label>
|
||
10 years ago
|
<div class="form--field-container">
|
||
10 years ago
|
<div class="form--field-affix">
|
||
|
<strong>€</strong>
|
||
|
</div>
|
||
10 years ago
|
<div class="form--text-field-container">
|
||
|
<input type="number" class="form--text-field">
|
||
|
</div>
|
||
10 years ago
|
<div class="form--field-affix">
|
||
|
per item
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
10 years ago
|
The more, the better
|
||
10 years ago
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field -required">
|
||
|
<label class="form--label">Long text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<textarea class="form--text-area">El resto della concluían sayo de velarte, calzas de velludo para las fiestas, con sus pantuflos de lo mesmo, y los días de entresemana se honraba con su vellorí de lo más fino.</textarea>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Write more about anything.
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field -required -no-label">
|
||
|
<div class="form--field-container">
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Option 1
|
||
|
</label>
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Option 2
|
||
|
</label>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Selecting these option might be considered a dangerous operation.
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
</section>
|
||
10 years ago
|
</form>
|
||
|
```
|
||
|
|
||
10 years ago
|
## Forms: Multiple fields per row
|
||
|
|
||
|
```
|
||
|
@full-width
|
||
|
|
||
|
<form class="form">
|
||
10 years ago
|
<fieldset class="form--fieldset">
|
||
|
<legend class="form--fieldset-legend">Wichtige Daten</legend>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Lieblingsstädte:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" value="Leipzig">
|
||
|
</div>
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Berlin">
|
||
|
</div>
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Zürich">
|
||
|
</div>
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Paris">
|
||
|
</div>
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Rom">
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
10 years ago
|
<div class="form--field -required">
|
||
|
<label class="form--label">Geburtsdatum:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container">
|
||
|
<select class="form--select">
|
||
|
<option>01</option><option>02</option><option>03</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="form--select-container">
|
||
|
<select class="form--select">
|
||
|
<option>Januar</option>
|
||
|
<option selected>Februar</option>
|
||
|
<option>März</option>
|
||
|
<option>April</option>
|
||
|
<option>Mai</option>
|
||
|
<option>Juni</option>
|
||
|
<option>Juli</option>
|
||
|
<option>August</option>
|
||
|
<option>September</option>
|
||
|
<option>Oktober</option>
|
||
|
<option>November</option>
|
||
|
<option>Dezember</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="number" class="form--text-field" placeholder="1984">
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field-instructions">
|
||
|
One never lies about one's age.
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
10 years ago
|
<div class="form--field">
|
||
|
<label class="form--label">Benzinverbrauch:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="number" class="form--text-field" value="9">
|
||
|
</div>
|
||
|
<div class="form--field-affix">Liter</div>
|
||
|
<div class="form--field-affix">pro</div>
|
||
|
<div class="form--select-container">
|
||
|
<select class="form--select">
|
||
|
<option selected>km</option>
|
||
|
<option>Meile</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="form--field-affix">auf</div>
|
||
|
<div class="form--select-container">
|
||
|
<select class="form--select">
|
||
|
<option selected>der Autobahn</option>
|
||
|
<option>der Stadt</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
10 years ago
|
<div class="form--grouping" role="group" aria-labelledby="form-grouping-label">
|
||
|
<div id="form-grouping-label" class="form--grouping-label">Colors:</div>
|
||
|
<div class="form--grouping-row">
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Most favorite first:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Green">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Most favorite second:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Blue">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--grouping-row">
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Least favorite first:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Magenta">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Least favorite second:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field" placeholder="Orange">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
10 years ago
|
</fieldset>
|
||
10 years ago
|
</form>
|
||
|
```
|
||
10 years ago
|
|
||
10 years ago
|
## Forms: Vertical layout
|
||
|
|
||
|
```
|
||
|
@full-width
|
||
|
|
||
|
<form class="form -vertical">
|
||
10 years ago
|
<section class="form--section">
|
||
|
<div class="grid-block">
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Write anything you like.
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
10 years ago
|
<div class="form--field">
|
||
|
<label class="form--label">Email:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="email" class="form--text-field" placeholder="a valid email">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-extra-actions">
|
||
|
<a href="#">Request new email</a>
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
10 years ago
|
<div class="form--field -required">
|
||
|
<label class="form--label">Number:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="number" class="form--text-field">
|
||
|
</div>
|
||
10 years ago
|
<div class="form--field-affix">
|
||
|
unit
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Any number from 1 to 10!
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
|
<div class="grid-block">
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Long text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container">
|
||
|
<textarea class="form--text-area">El resto della concluían sayo de velarte, calzas de velludo para las fiestas, con sus pantuflos de lo mesmo, y los días de entresemana se honraba con su vellorí de lo más fino.</textarea>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Write more about anything.
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
10 years ago
|
</section>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
10 years ago
|
## Forms: Sections and fieldsets
|
||
10 years ago
|
|
||
10 years ago
|
### standard
|
||
|
|
||
10 years ago
|
```
|
||
|
<form class="form -bordered">
|
||
|
<section class="form--section">
|
||
10 years ago
|
<div class="form--field -required">
|
||
10 years ago
|
<label class="form--label">Text:</label>
|
||
10 years ago
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
10 years ago
|
<input type="text" class="form--text-field">
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
10 years ago
|
</section>
|
||
|
<section class="form--section">
|
||
|
<h3 class="form--section-title">Advanced information</h3>
|
||
10 years ago
|
<div class="form--field -required">
|
||
10 years ago
|
<label class="form--label">More text:</label>
|
||
10 years ago
|
<div class="form--field-container">
|
||
10 years ago
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
10 years ago
|
</section>
|
||
10 years ago
|
<fieldset class="form--fieldset">
|
||
|
<legend class="form--fieldset-legend">
|
||
|
Even more advanced information
|
||
|
</legend>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Even more text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
10 years ago
|
### with controls
|
||
|
|
||
|
```
|
||
|
<form class="form -bordered">
|
||
|
<fieldset class="form--fieldset">
|
||
|
<legend class="form--fieldset-legend">
|
||
|
Various information
|
||
|
</legend>
|
||
|
<div class="form--fieldset-control">
|
||
|
<span class="form--fieldset-control-container">
|
||
|
(<a href="#">Check all</a> | <a href="#">Uncheck all</a>)
|
||
|
</span>
|
||
|
</div>
|
||
|
<div class="form--field -wide-label">
|
||
|
<label class="form--label">Multiple choices:</label>
|
||
|
<div class="form--field-container -vertical">
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Apple
|
||
|
</label>
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Grapefruit
|
||
|
</label>
|
||
|
</div>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
</form>
|
||
|
```
|
||
10 years ago
|
|
||
|
### collapsible
|
||
|
|
||
|
```
|
||
|
<form class="form -bordered">
|
||
|
<fieldset class="form--fieldset -collapsible -collapsed">
|
||
|
<legend class="form--fieldset-legend">
|
||
|
<a href="javascript:">Less important information</a>
|
||
|
</legend>
|
||
|
<div class="form--field -required" style="display:none">
|
||
|
<label class="form--label">Field:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
<fieldset class="form--fieldset -collapsible">
|
||
|
<legend class="form--fieldset-legend">
|
||
|
<a href="javascript:">More important information</a>
|
||
|
</legend>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Field:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</fieldset>
|
||
10 years ago
|
</form>
|
||
|
```
|
||
|
|
||
10 years ago
|
## Forms: Column layout
|
||
|
|
||
|
```
|
||
|
@full-width
|
||
|
|
||
|
<form class="form">
|
||
|
<div class="grid-block">
|
||
|
<div class="form--column">
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Write anything you like.
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Email:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="email" class="form--text-field" placeholder="a valid email">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-extra-actions">
|
||
|
<a href="#">Request new email</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Number:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="number" class="form--text-field">
|
||
|
</div>
|
||
|
<a href="#" class="form--field-inline-action">
|
||
|
<span class="">Add 5</span>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Any number from 1 to 10!
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--column">
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Long text:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container">
|
||
|
<textarea class="form--text-area">El resto della concluían sayo de velarte, calzas de velludo para las fiestas, con sus pantuflos de lo mesmo, y los días de entresemana se honraba con su vellorí de lo más fino.</textarea>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Write more about anything.
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required -no-label">
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
This field has no label, which means you really can write what you like.
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
10 years ago
|
## Forms: Width categories
|
||
|
|
||
|
The modifier classes **-middle**, **-wide**, ... can be applied to the form-[input type]-container to limit the width of the element. Please note, that this only limits the max-width of the element. The fields will become slimmer if less space is available. Also note, that the max-width is specified as an absolute value. Without a modifier, the form field will take the full width available.
|
||
|
|
||
|
```
|
||
|
@full-width
|
||
|
|
||
|
<form class="form">
|
||
|
<section class="form--section">
|
||
|
<h3 class="form--section-title">Input type "text-field"</h3>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Tiny:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container -tiny">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">XSlim:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container -xslim">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Slim:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container -slim">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Middle:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container -middle">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Wide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container -wide">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">XWide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container -xwide">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">XXWide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-field-container -xxwide">
|
||
|
<input type="text" class="form--text-field">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
|
||
|
<section class="form--section">
|
||
|
<h3 class="form--section-title">Input type "text-area"</h3>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Tiny:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container -tiny">
|
||
10 years ago
|
<textarea type="text-area" class="form--text-area"></textarea>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">XSlim:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container -xslim">
|
||
10 years ago
|
<textarea type="text-area" class="form--text-area"></textarea>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Slim:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container -slim">
|
||
10 years ago
|
<textarea type="text-area" class="form--text-area"></textarea>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Middle:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container -middle">
|
||
10 years ago
|
<textarea type="text-area" class="form--text-area"></textarea>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Wide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container -wide">
|
||
10 years ago
|
<textarea type="text-area" class="form--text-area"></textarea>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">XWide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container -xwide">
|
||
10 years ago
|
<textarea type="text-area" class="form--text-area"></textarea>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">XXWide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--text-area-container -xxwide">
|
||
10 years ago
|
<textarea type="text-area" class="form--text-area"></textarea>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
|
||
|
<section class="form--section">
|
||
|
<h3 class="form--section-title">Input type "select"</h3>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Tiny:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container -tiny">
|
||
|
<select class="form--select">
|
||
|
<option>1</option>
|
||
|
<option>2</option>
|
||
|
<option>3</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">XSlim:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container -xslim">
|
||
|
<select class="form--select">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Slim:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container -slim">
|
||
|
<select class="form--select">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Middle:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container -middle">
|
||
|
<select class="form--select">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">Wide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container -wide">
|
||
|
<select class="form--select">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">XWide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container -xwide">
|
||
|
<select class="form--select">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field -required">
|
||
|
<label class="form--label">XXWide:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--select-container -xxwide">
|
||
|
<select class="form--select">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
10 years ago
|
|
||
|
# Forms: Lists of fields
|
||
|
|
||
|
```
|
||
|
@full-width
|
||
|
|
||
|
<ul class="form--list">
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_1" lang="en">Quaerat Deleniti</label>
|
||
|
<span class="form--field-container"><span class="form--check-box-container"><input name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" id="project_work_package_custom_field_ids_1" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="1"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_2" lang="en">voluptatum similique</label><span class="form--field-container"><span class="form--check-box-container"><input name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" id="project_work_package_custom_field_ids_2" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="2"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_3" lang="en">voluptatem et</label><span class="form--field-container"><span class="form--check-box-container"><input name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" id="project_work_package_custom_field_ids_3" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="3"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_4" lang="en">int cf</label><span class="form--field-container"><span class="form--check-box-container"><input disabled="disabled" name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" disabled="disabled" id="project_work_package_custom_field_ids_4" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="4"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_5" lang="en">version CF</label><span class="form--field-container"><span class="form--check-box-container"><input disabled="disabled" name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" disabled="disabled" id="project_work_package_custom_field_ids_5" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="5"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_6" lang="en">jskldfjkdsljf</label><span class="form--field-container"><span class="form--check-box-container"><input name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" id="project_work_package_custom_field_ids_6" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="6"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_7" lang="en">My Custom field</label><span class="form--field-container"><span class="form--check-box-container"><input name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" id="project_work_package_custom_field_ids_7" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="7"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_8" lang="en">user cf</label><span class="form--field-container"><span class="form--check-box-container"><input disabled="disabled" name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" disabled="disabled" id="project_work_package_custom_field_ids_8" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="8"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_9" lang="en">bool cf</label><span class="form--field-container"><span class="form--check-box-container"><input disabled="disabled" name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" disabled="disabled" id="project_work_package_custom_field_ids_9" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="9"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_11" lang="en">Float cf</label><span class="form--field-container"><span class="form--check-box-container"><input disabled="disabled" name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" disabled="disabled" id="project_work_package_custom_field_ids_11" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="11"></span></span>
|
||
|
</li>
|
||
|
<li class="form--field -trailing-label">
|
||
|
<label class="form--label" for="project_work_package_custom_field_ids_19" lang="en">List cf</label><span class="form--field-container"><span class="form--check-box-container"><input disabled="disabled" name="project[work_package_custom_field_ids][]" type="hidden" value=""><input checked="checked" class="form--check-box" disabled="disabled" id="project_work_package_custom_field_ids_19" lang="en" name="project[work_package_custom_field_ids][]" type="checkbox" value="19"></span></span>
|
||
|
</li>
|
||
|
</ul>
|
||
|
```
|
||
|
|
||
|
|
||
10 years ago
|
# Forms: Attachment fieldsets
|
||
|
|
||
|
```
|
||
10 years ago
|
<fieldset id="attachments" class="form--fieldset -collapsible">
|
||
10 years ago
|
<legend class="form--fieldset-legend" title="Show/Hide attachments" onclick="toggleFieldset(this);">
|
||
10 years ago
|
<a href="javascript:">Files<span class="fieldset-toggle-state-label hidden-for-sighted">expanded</span></a>
|
||
|
</legend>
|
||
|
<div style="">
|
||
|
<div id="attachments_fields">
|
||
|
<div class="grid-block" id="attachment_template">
|
||
|
<div class="form--field">
|
||
|
<div class="attachment_field form--field-container -vertical -shrink">
|
||
|
<div class="form--file-container">
|
||
|
<input class="attachment_choose_file" name="attachments[1][file]" size="15" type="file"> </div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form-label">
|
||
|
Description
|
||
|
</label>
|
||
|
<div class="form--text-field-container">
|
||
|
<input name="attachments[1][description]" size="38" type="text" value="">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="grid-block" id="">
|
||
|
<div class="form--field">
|
||
|
<div class="attachment_field form--field-container -vertical -shrink">
|
||
|
<div class="form--file-container">
|
||
|
<input class="attachment_choose_file" name="attachments[2][file]" size="15" type="file"> </div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form-label">
|
||
|
Description
|
||
|
</label>
|
||
|
<div class="form--text-field-container">
|
||
|
<input name="attachments[2][description]" size="38" type="text" value="">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div></div>
|
||
|
<span class="add_another_file">
|
||
|
<a href="#" onclick="addFileField(); return false;">Add another file</a>
|
||
|
(Maximum size: 5 MB)
|
||
|
</span>
|
||
|
</div>
|
||
|
</fieldset>
|
||
10 years ago
|
```
|
||
10 years ago
|
|
||
10 years ago
|
# Forms: Text fields
|
||
|
|
||
|
## Default text fields
|
||
|
|
||
|
### Standalone
|
||
|
|
||
|
```
|
||
|
<label>Text:<input type="text" class="form--text-field"></label>
|
||
|
<label>Email:<input type="email" class="form--text-field" placeholder="a valid email"></label>
|
||
|
<label>Number:<input type="number" class="form--text-field"></label>
|
||
|
```
|
||
|
|
||
|
## Text field sizes
|
||
|
|
||
|
```
|
||
|
<label>Tiny:<input type="text" class="form--text-field -tiny" value="a tiny value"></label>
|
||
|
|
||
10 years ago
|
<label>Small:<input type="text" class="form--text-field -slim" value="a small value"></label>
|
||
10 years ago
|
|
||
|
<label>Large:<input type="text" class="form--text-field -large" value="a large value"></label>
|
||
|
```
|
||
|
|
||
|
## Plain text fields
|
||
|
|
||
|
_with no classes applied (uses default Foundation form styling)_
|
||
|
|
||
|
```
|
||
|
<label>Text:<input type="text"></label>
|
||
|
<label>Email:<input type="email" placeholder="a valid email"></label>
|
||
|
<label>Number:<input type="number"></label>
|
||
|
```
|
||
|
|
||
10 years ago
|
# Forms: Text areas
|
||
|
|
||
|
## Default text areas
|
||
|
|
||
|
### Standalone
|
||
|
|
||
|
```
|
||
|
<textarea class="form--text-area">
|
||
|
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
|
||
|
</textarea>
|
||
|
```
|
||
|
|
||
|
## Plain text areas
|
||
|
|
||
|
_with no classes applied (uses default Foundation form styling)_
|
||
|
|
||
|
```
|
||
|
<textarea>
|
||
|
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.
|
||
|
</textarea>
|
||
|
```
|
||
10 years ago
|
|
||
10 years ago
|
# Forms: Checkboxes
|
||
11 years ago
|
|
||
10 years ago
|
## Default checkboxes
|
||
|
|
||
|
### Standalone
|
||
|
|
||
|
```
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
10 years ago
|
Pera
|
||
|
</label>
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Maracujá
|
||
|
</label>
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Abacaxi
|
||
10 years ago
|
</label>
|
||
|
```
|
||
|
|
||
|
### Within a form
|
||
|
|
||
|
```
|
||
|
<form class="form">
|
||
|
<div class="form--field">
|
||
|
<label class="form--label" for="checkbox_example_choice2">Eat fruit:</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box" id="checkbox_example_choice2">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
|
### Multiple, within a form
|
||
|
|
||
|
```
|
||
|
<form class="form">
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Multiple choices:</label>
|
||
|
<div class="form--field-container -vertical">
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Apple
|
||
|
</label>
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Grapefruit
|
||
|
</label>
|
||
|
<label class="form--label-with-check-box">
|
||
|
<div class="form--check-box-container">
|
||
|
<input type="checkbox" class="form--check-box">
|
||
|
</div>
|
||
|
Banana
|
||
|
</label>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
|
## Styled checkboxes [TO BE REFACTORED]
|
||
|
|
||
11 years ago
|
```
|
||
|
<label class="checkbox-label">
|
||
|
<input type="checkbox">
|
||
|
<div class="styled-checkbox"></div>
|
||
|
</label>
|
||
|
|
||
|
<br>
|
||
|
<br>
|
||
|
|
||
|
<label class="checkbox-label">
|
||
|
checkbox label
|
||
|
<input type="checkbox">
|
||
|
<div class="styled-checkbox"></div>
|
||
|
</label>
|
||
|
|
||
|
<br>
|
||
|
<br>
|
||
|
|
||
|
<label class="checkbox-label">
|
||
|
<input type="checkbox">
|
||
|
<div class="styled-checkbox"></div>
|
||
|
checkbox label
|
||
|
</label>
|
||
|
```
|
||
10 years ago
|
|
||
10 years ago
|
# Forms: Radio buttons
|
||
|
|
||
|
## Within a form, multiple
|
||
|
|
||
|
```
|
||
|
<form class="form">
|
||
|
<div class="form--field">
|
||
|
<label class="form--label" for="radio_button_example_choice1">Foo</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--radio-button-container">
|
||
|
<input type="radio" class="form--radio-button" id="radio_button_example_choice1" value="foo" name="choice">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label" for="radio_button_example_choice2">Bar</label>
|
||
|
<div class="form--field-container">
|
||
|
<div class="form--radio-button-container">
|
||
|
<input type="radio" class="form--radio-button" id="radio_button_example_choice2" value="bar" name="choice">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
```
|
||
10 years ago
|
|
||
10 years ago
|
# Forms: Select
|
||
|
|
||
10 years ago
|
## Default selects
|
||
10 years ago
|
|
||
10 years ago
|
### Standalone
|
||
10 years ago
|
|
||
|
```
|
||
10 years ago
|
<select class="form--select">
|
||
10 years ago
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
```
|
||
|
|
||
|
```
|
||
10 years ago
|
<select class="form--select" multiple>
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
10 years ago
|
```
|
||
|
|
||
|
```
|
||
10 years ago
|
<select class="form--select">
|
||
10 years ago
|
<optgroup label="group one">
|
||
|
<option>one dot one</option>
|
||
|
</optgroup>
|
||
|
<optgroup label="group two">
|
||
|
<option>two dot one</option>
|
||
|
<option>two dot two</option>
|
||
|
</optgroup>
|
||
|
</select>
|
||
|
```
|
||
|
|
||
10 years ago
|
### Within a form
|
||
|
|
||
|
```
|
||
|
<form class="form">
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Oranges:</label>
|
||
|
<div class="form--field-container">
|
||
10 years ago
|
<div class="form--select-container">
|
||
|
<select class="form--select">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
|
<div class="form--field-instructions">
|
||
|
Oranges are rich in Vitamin C. Eat more than two!
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form--field">
|
||
|
<label class="form--label">Apples:</label>
|
||
|
<div class="form--field-container">
|
||
10 years ago
|
<div class="form--select-container">
|
||
|
<select class="form--select" multiple>
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
</div>
|
||
10 years ago
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
```
|
||
|
|
||
10 years ago
|
## Select Sizes
|
||
|
|
||
|
```
|
||
|
<select class="form--select -tiny">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
|
||
|
<select class="form--select -small">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
|
||
|
<select class="form--select -large">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
```
|
||
10 years ago
|
|
||
10 years ago
|
## Narrow select
|
||
|
|
||
|
_By default, a `form--select` will take the full width of its container element.
|
||
|
In most cases it is recommended to apply a width to the container element, but
|
||
|
in certain circumstances the `-narrow` variant may be preferable._
|
||
|
|
||
|
```
|
||
|
<select class="form--select -narrow">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
|
||
|
<select class="form--select -small -narrow">
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
|
```
|
||
|
|
||
10 years ago
|
## Plain selects
|
||
10 years ago
|
|
||
10 years ago
|
_with no classes applied (uses default Foundation form styling)_
|
||
10 years ago
|
|
||
|
```
|
||
10 years ago
|
<select>
|
||
|
<option>one</option>
|
||
|
<option>two</option>
|
||
|
<option>three</option>
|
||
|
</select>
|
||
10 years ago
|
```
|
||
10 years ago
|
|
||
10 years ago
|
# Forms: Checkbox Matrices
|
||
10 years ago
|
|
||
|
```
|
||
10 years ago
|
<table class="form--matrix">
|
||
10 years ago
|
<thead>
|
||
10 years ago
|
<tr class="form--matrix-header-row">
|
||
|
<th class="form--matrix-header-cell">Attribute name</th>
|
||
|
<th class="form--matrix-header-cell">User access</th>
|
||
|
<th class="form--matrix-header-cell">Admin access</th>
|
||
10 years ago
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
10 years ago
|
<tr class="form--matrix-row">
|
||
|
<td class="form--matrix-cell">
|
||
10 years ago
|
Project
|
||
|
</td>
|
||
10 years ago
|
<td class="form--matrix-checkbox-cell">
|
||
|
<span class="form--check-box-container"><input class="form--check-box" id="attributes_project" name="settings[attributes][]" type="checkbox" value="project"></span>
|
||
10 years ago
|
</td>
|
||
10 years ago
|
<td class="form--matrix-checkbox-cell">
|
||
|
<span class="form--check-box-container"><input class="form--check-box" id="admin_attributes_project" name="settings[admin_attributes][]" type="checkbox" value="project"></span>
|
||
10 years ago
|
</td>
|
||
|
</tr>
|
||
10 years ago
|
<tr class="form--matrix-row">
|
||
|
<td class="form--matrix-cell">
|
||
10 years ago
|
Type
|
||
|
</td>
|
||
10 years ago
|
<td class="form--matrix-checkbox-cell">
|
||
|
<span class="form--check-box-container"><input checked="checked" class="form--check-box" id="attributes_type" name="settings[attributes][]" type="checkbox" value="type"></span>
|
||
10 years ago
|
</td>
|
||
10 years ago
|
<td class="form--matrix-checkbox-cell">
|
||
|
<span class="form--check-box-container"><input class="form--check-box" id="admin_attributes_type" name="settings[admin_attributes][]" type="checkbox" value="type"></span>
|
||
10 years ago
|
</td>
|
||
|
</tr>
|
||
10 years ago
|
<tr class="form--matrix-row">
|
||
|
<td class="form--matrix-cell">
|
||
10 years ago
|
Parent
|
||
|
</td>
|
||
10 years ago
|
<td class="form--matrix-checkbox-cell">
|
||
|
<span class="form--check-box-container"><input class="form--check-box" id="attributes_parent" name="settings[attributes][]" type="checkbox" value="parent"></span>
|
||
10 years ago
|
</td>
|
||
10 years ago
|
<td class="form--matrix-checkbox-cell">
|
||
|
<span class="form--check-box-container"><input class="form--check-box" id="admin_attributes_parent" name="settings[admin_attributes][]" type="checkbox" value="parent"></span>
|
||
10 years ago
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
```
|