Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<section class="form--section">
<h3 class="form--section-title">Text fields</h3>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Text areas</h3>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Checkboxes</h3>
<label class="form--label-with-check-box -required">
<div class="form--check-box-container">
<input type="checkbox" class="form--check-box">
</div>
Pera
</label>
<label class="form--label-with-check-box -required">
<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
</label>
<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>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Radio buttons</h3>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Select fields</h3>
<select class="form--select">
<option>one</option>
<option>two</option>
<option>three</option>
</select>
<select class="form--select" multiple>
<option>one</option>
<option>two</option>
<option>three</option>
</select>
<select class="form--select">
<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>
<form class="form">
<div class="form--field">
<label class="form--label">Oranges:</label>
<div class="form--field-container">
<div class="form--select-container">
<select class="form--select">
<option>one</option>
<option>two</option>
<option>three</option>
</select>
</div>
</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">
<div class="form--select-container">
<select class="form--select" multiple>
<option>one</option>
<option>two</option>
<option>three</option>
</select>
</div>
</div>
</div>
</form>
</section>
<section class="form--section">
<h3 class="form--section-title">Narrow select</h3>
<p>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.</p>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Checkbox matrices</h3>
<table class="form--matrix">
<thead>
<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>
</tr>
</thead>
<tbody>
<tr class="form--matrix-row">
<td class="form--matrix-cell">
Project
</td>
<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>
</td>
<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>
</td>
</tr>
<tr class="form--matrix-row">
<td class="form--matrix-cell">
Type
</td>
<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>
</td>
<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>
</td>
</tr>
<tr class="form--matrix-row">
<td class="form--matrix-cell">
Parent
</td>
<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>
</td>
<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>
</td>
</tr>
</tbody>
</table>
</section>
<section class="form--section">
<h3 class="form--section-title">Inline buttons</h3>
<div class="form--field">
<div class="form--field-container">
<div class="form--field-inline-buttons-container">
<button class="form--field-inline-button button -primary">Highlight</button>
<button class="form--field-inline-button button -highlight-inverted">Alternative 1</button>
<button class="form--field-inline-button button -highlight-inverted">Alternative 2</button>
</div>
</div>
</div>
</section>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<section class="form--section">
<h3 class="form--section-title">Text fields</h3>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Text areas</h3>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Checkboxes</h3>
<label class="form--label-with-check-box -required">
<div class="form--check-box-container">
<input type="checkbox" class="form--check-box">
</div>
Pera
</label>
<label class="form--label-with-check-box -required">
<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
</label>
<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>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Radio buttons</h3>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Select fields</h3>
<select class="form--select">
<option>one</option>
<option>two</option>
<option>three</option>
</select>
<select class="form--select" multiple>
<option>one</option>
<option>two</option>
<option>three</option>
</select>
<select class="form--select">
<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>
<form class="form">
<div class="form--field">
<label class="form--label">Oranges:</label>
<div class="form--field-container">
<div class="form--select-container">
<select class="form--select">
<option>one</option>
<option>two</option>
<option>three</option>
</select>
</div>
</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">
<div class="form--select-container">
<select class="form--select" multiple>
<option>one</option>
<option>two</option>
<option>three</option>
</select>
</div>
</div>
</div>
</form>
</section>
<section class="form--section">
<h3 class="form--section-title">Narrow select</h3>
<p>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.</p>
<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>
</section>
<section class="form--section">
<h3 class="form--section-title">Checkbox matrices</h3>
<table class="form--matrix">
<thead>
<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>
</tr>
</thead>
<tbody>
<tr class="form--matrix-row">
<td class="form--matrix-cell">
Project
</td>
<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>
</td>
<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>
</td>
</tr>
<tr class="form--matrix-row">
<td class="form--matrix-cell">
Type
</td>
<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>
</td>
<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>
</td>
</tr>
<tr class="form--matrix-row">
<td class="form--matrix-cell">
Parent
</td>
<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>
</td>
<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>
</td>
</tr>
</tbody>
</table>
</section>
<section class="form--section">
<h3 class="form--section-title">Inline buttons</h3>
<div class="form--field">
<div class="form--field-container">
<div class="form--field-inline-buttons-container">
<button class="form--field-inline-button button -primary">Highlight</button>
<button class="form--field-inline-button button -highlight-inverted">Alternative 1</button>
<button class="form--field-inline-button button -highlight-inverted">Alternative 2</button>
</div>
</div>
</div>
</section>