Commit e40df7cf authored by Mark Otto's avatar Mark Otto
Browse files

fixes #13912: make radios/checkboxes work with inline forms again

parent 32bde78e
4 merge requests!28721Hot test,!16605Test pull please ignore,!22103test,!25326Adjust examples
Showing with 5 additions and 5 deletions
+5 -5
...@@ -2676,7 +2676,7 @@ select[multiple].input-lg { ...@@ -2676,7 +2676,7 @@ select[multiple].input-lg {
} }
.form-inline .radio input[type="radio"], .form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] { .form-inline .checkbox input[type="checkbox"] {
float: none; position: relative;
margin-left: 0; margin-left: 0;
} }
.form-inline .has-feedback .form-control-feedback { .form-inline .has-feedback .form-control-feedback {
...@@ -4029,7 +4029,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn { ...@@ -4029,7 +4029,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
} }
.navbar-form .radio input[type="radio"], .navbar-form .radio input[type="radio"],
.navbar-form .checkbox input[type="checkbox"] { .navbar-form .checkbox input[type="checkbox"] {
float: none; position: relative;
margin-left: 0; margin-left: 0;
} }
.navbar-form .has-feedback .form-control-feedback { .navbar-form .has-feedback .form-control-feedback {
......
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This source diff could not be displayed because it is too large. You can view the blob instead.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -449,7 +449,7 @@ input[type="checkbox"] { ...@@ -449,7 +449,7 @@ input[type="checkbox"] {
} }
.radio input[type="radio"], .radio input[type="radio"],
.checkbox input[type="checkbox"] { .checkbox input[type="checkbox"] {
float: none; position: relative;
margin-left: 0; margin-left: 0;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment