4.1 KiB
layout | title |
---|---|
page | Forms |
Style individual form controls and utilize common layouts.
Contents
- Will be replaced with the ToC, excluding the "Contents" header {:toc}
Overview
- We reset several elements' default styles for cross browser consistency and easier manipulation later. This includes
<fieldset>
s, WebKit validation bubbles, and most textual<input>
s. - Specific types of textual
<input>
s are styled automatically, but.form-control
is available should you need it. - Always declare a
type
on your<button>
s. - Form layouts rely on form groups.
Example form
Form controls in Primer currently have no basic layout specified (this is by design). You'll need to use <fieldset>
s, <div>
s, or other elements and styles to rearrange them.
{% example html %}
Remember me Herp Derp
Submit
{% endexample %}Form contrast
Textual form controls have a white background by default. You can change this to a light gray with .input-contrast
.
{% example html %}
{% endexample %}Sizing
Make inputs smaller, larger, or full-width with an additional class.
Mini
{% example html %}
{% endexample %}Large
{% example html %}
{% endexample %}Block
{% example html %}
{% endexample %}Form groups
{% example html %}
- Example Text
- Example Label
- Choose an option Git Subversion Social Coding Beets Bears Battlestar Galactica
Notes
Checkboxes and radios
Utilities to spice up the alignment and styling of checkbox and radio controls.
{% example html %}
This will do insanely awesome and amazing things!
You may also add emphasis to the label:
{% example html %}
Input group
Attached an input and button to one another.
{% example html %}
Form actions
Align buttons to the right—via float: right
on the buttons—in forms with .form-actions
. The floats are automatically cleared for you.
{% example html %}