Commit 9ba70796 authored by Mark Otto's avatar Mark Otto

remove top 5px padding from first inline radio/checkbox

parent 33a969dd
...@@ -627,7 +627,7 @@ input[type="hidden"] { ...@@ -627,7 +627,7 @@ input[type="hidden"] {
margin-left: 10px; margin-left: 10px;
} }
.controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child { .controls > .radio.inline:first-child, .controls > .checkbox.inline:first-child {
padding-top: 5px; padding-top: 0;
} }
input, textarea { input, textarea {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
......
...@@ -178,7 +178,7 @@ input[type="hidden"] { ...@@ -178,7 +178,7 @@ input[type="hidden"] {
// But don't forget to remove their padding on first-child // But don't forget to remove their padding on first-child
.controls > .radio.inline:first-child, .controls > .radio.inline:first-child,
.controls > .checkbox.inline:first-child { .controls > .checkbox.inline:first-child {
padding-top: 5px; // has to be padding because margin collaspes padding-top: 0;
} }
......
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