Commit 805ca034 authored by Mark Otto's avatar Mark Otto

fix #3179: cut off radios and checkboxes

parent 7f6f3ff4
...@@ -873,8 +873,8 @@ input[type="hidden"] { ...@@ -873,8 +873,8 @@ input[type="hidden"] {
.radio, .radio,
.checkbox { .checkbox {
min-height: 18px;
padding-left: 18px; padding-left: 18px;
overflow: auto;
} }
.radio input[type="radio"], .radio input[type="radio"],
......
...@@ -173,8 +173,8 @@ input[type="hidden"] { ...@@ -173,8 +173,8 @@ input[type="hidden"] {
// Indent the labels to position radios/checkboxes as hanging // Indent the labels to position radios/checkboxes as hanging
.radio, .radio,
.checkbox { .checkbox {
min-height: 18px; // clear the floating input if there is no label text
padding-left: 18px; padding-left: 18px;
overflow: auto; // clear the floating input if there is no label text
} }
.radio input[type="radio"], .radio input[type="radio"],
.checkbox input[type="checkbox"] { .checkbox input[type="checkbox"] {
......
Markdown is supported
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