Commit 3e00c126 authored by Mark Otto's avatar Mark Otto

allow .input-prepend/.input-append to work in .navbar per #1681

parent be6fdd9a
...@@ -2530,6 +2530,13 @@ button.btn.small, input[type="submit"].btn.small { ...@@ -2530,6 +2530,13 @@ button.btn.small, input[type="submit"].btn.small {
.navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] { .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] {
margin-top: 3px; margin-top: 3px;
} }
.navbar-form .input-append, .navbar-form .input-prepend {
margin-top: 6px;
white-space: nowrap;
}
.navbar-form .input-append input, .navbar-form .input-prepend input {
margin-top: 0;
}
.navbar-search { .navbar-search {
position: relative; position: relative;
float: left; float: left;
......
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
margin-top: 5px; // make buttons vertically centered in navbar margin-top: 5px; // make buttons vertically centered in navbar
} }
.btn-group .btn { .btn-group .btn {
margin-top: 0; margin-top: 0; // then undo the margin here so we don't accidentally double it
} }
} }
...@@ -104,6 +104,14 @@ ...@@ -104,6 +104,14 @@
input[type="radio"] { input[type="radio"] {
margin-top: 3px; margin-top: 3px;
} }
.input-append,
.input-prepend {
margin-top: 6px;
white-space: nowrap; // preven two items from separating within a .navbar-form that has .pull-left
input {
margin-top: 0; // remove the margin on top since it's on the parent
}
}
} }
// Navbar search // Navbar search
......
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