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

Fixes #11357: Vertically center sm and xs buttons in the navbar

parent 33160d50
Showing with 18 additions and 1 deletion
+18 -1
...@@ -4671,6 +4671,16 @@ textarea.input-group-sm > .input-group-btn > .btn { ...@@ -4671,6 +4671,16 @@ textarea.input-group-sm > .input-group-btn > .btn {
margin-bottom: 8px; margin-bottom: 8px;
} }
.navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px;
}
.navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px;
}
.navbar-text { .navbar-text {
margin-top: 15px; margin-top: 15px;
margin-bottom: 15px; margin-bottom: 15px;
......
This diff is collapsed.
...@@ -333,6 +333,13 @@ ...@@ -333,6 +333,13 @@
.navbar-btn { .navbar-btn {
.navbar-vertical-align(@input-height-base); .navbar-vertical-align(@input-height-base);
&.btn-sm {
.navbar-vertical-align(@input-height-small);
}
&.btn-xs {
.navbar-vertical-align(22);
}
} }
......
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