Commit a0ec4224 authored by Mark Otto's avatar Mark Otto

fix #1954: icons in tabs add jank border

parent b86969f7
...@@ -2346,8 +2346,9 @@ button.btn.btn-small, input[type="submit"].btn.btn-small { ...@@ -2346,8 +2346,9 @@ button.btn.btn-small, input[type="submit"].btn.btn-small {
margin-bottom: -1px; margin-bottom: -1px;
} }
.nav-tabs > li > a { .nav-tabs > li > a {
padding-top: 9px; padding-top: 8px;
padding-bottom: 9px; padding-bottom: 8px;
line-height: 18px;
border: 1px solid transparent; border: 1px solid transparent;
-webkit-border-radius: 4px 4px 0 0; -webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0;
......
...@@ -106,8 +106,9 @@ ...@@ -106,8 +106,9 @@
// Actual tabs (as links) // Actual tabs (as links)
.nav-tabs > li > a { .nav-tabs > li > a {
padding-top: 9px; padding-top: 8px;
padding-bottom: 9px; padding-bottom: 8px;
line-height: @baseLineHeight;
border: 1px solid transparent; border: 1px solid transparent;
.border-radius(4px 4px 0 0); .border-radius(4px 4px 0 0);
&:hover { &:hover {
......
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