diff options
| author | Chris Rebert <[email protected]> | 2014-10-27 16:36:03 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-10-27 16:36:03 -0700 |
| commit | de62dcaf53218943b0c9b02400742b6ca06129dc (patch) | |
| tree | d9fa50f8d8baf47820df10f0b80ba332e86435c4 /docs/_jade | |
| parent | 5e1af10ecb076f21a17a5d5f1c5737e4e33d63a1 (diff) | |
| parent | a43d4767ba7a1d8d313f9c418a378b6749dd6040 (diff) | |
| download | bootstrap-de62dcaf53218943b0c9b02400742b6ca06129dc.tar.xz bootstrap-de62dcaf53218943b0c9b02400742b6ca06129dc.zip | |
Merge pull request #14886 from twbs/customizer-clearfix
Customizer: add clearfixes to rows and simplify .bs-customizer-input to .col-xs-4
Diffstat (limited to 'docs/_jade')
| -rw-r--r-- | docs/_jade/customizer-variables.jade | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/_jade/customizer-variables.jade b/docs/_jade/customizer-variables.jade index 3c74573be..bd0df1d13 100644 --- a/docs/_jade/customizer-variables.jade +++ b/docs/_jade/customizer-variables.jade @@ -8,8 +8,10 @@ each section in sections if subsection.heading h3(id=subsection.id)= subsection.heading div.row - each variable in subsection.variables - div.bs-customizer-input + each variable, index in subsection.variables + if index > 0 && index % 3 === 0 + div.clearfix + div.col-xs-4 label(for="input-" + variable.name)= variable.name input.form-control( id="input-" + variable.name |
