en:
style_guide:
bootstrap_base:
button_disabled_anchor: >
Make <a>
buttons look unclickable by adding
the .disabled
class
button_disabled_element: >
Make <button>
buttons look unclickable by adding
the .disabled
class
button_sizes: >
Fancy larger or smaller buttons?
Add .btn-large
, .btn-small
, or
.btn-mini
for additional sizes.
button_types: >
Need different buttons for different occasions? Add a class!
code_inline: >
Use <code>
for inline snippets of code.
code_blocks: >
Use <pre>
for multiple lines of code.
Be sure to escape any angle brackets in the code for proper rendering.
forms_default_styles: >
Individual form controls receive styling, but without any required base
class on the <form>
or large changes in markup.
Results in stacked, left-aligned labels on top of form controls.
forms_search: >
Add .form-search
to the form and .search-query
to the <input>
for an extra-rounded text input.
forms_inline: >
Add .form-inline
for left-aligned labels and inline-block
controls for a compact layout.
forms_horizontal: >
Right align labels and float them to the left to make them appear on
the same line as controls.
Requires the most markup changes from a default form:
.form-horizontal
to the form.control-group
.control-label
to the label.controls
for proper alignmenttype
at all times.
form_controls_textarea: >
Form control which supports multiple lines of text.
Change rows
attribute as necessary.
form_controls_checkbox_and_radio: >
Checkboxes are for selecting one or several options in a list while
radios are for selecting one option from many.
Add the .inline
class to a series of checkboxes or radios
for controls to appear on the same line.
form_controls_select: >
Use the default option or specify a multiple="multiple"
to show multiple options at once.