From 032a5ab72f8a7f0e786cb1d796ef895395b86e1f Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 27 Oct 2014 15:00:30 -0700 Subject: add clearfix divs to customizer input rows --- docs/_jade/customizer-variables.jade | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs/_jade') diff --git a/docs/_jade/customizer-variables.jade b/docs/_jade/customizer-variables.jade index 3c74573be..39d3f9f19 100644 --- a/docs/_jade/customizer-variables.jade +++ b/docs/_jade/customizer-variables.jade @@ -8,7 +8,9 @@ each section in sections if subsection.heading h3(id=subsection.id)= subsection.heading div.row - each variable in subsection.variables + each variable, index in subsection.variables + if index > 0 && index % 3 === 0 + div.clearfix div.bs-customizer-input label(for="input-" + variable.name)= variable.name input.form-control( -- cgit v1.2.3 From a43d4767ba7a1d8d313f9c418a378b6749dd6040 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 27 Oct 2014 15:02:21 -0700 Subject: .bs-customizer-input => .col-xs-4 --- docs/_jade/customizer-variables.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/_jade') diff --git a/docs/_jade/customizer-variables.jade b/docs/_jade/customizer-variables.jade index 39d3f9f19..bd0df1d13 100644 --- a/docs/_jade/customizer-variables.jade +++ b/docs/_jade/customizer-variables.jade @@ -11,7 +11,7 @@ each section in sections each variable, index in subsection.variables if index > 0 && index % 3 === 0 div.clearfix - div.bs-customizer-input + div.col-xs-4 label(for="input-" + variable.name)= variable.name input.form-control( id="input-" + variable.name -- cgit v1.2.3