Commit 33fa705c authored by Mark Otto's avatar Mark Otto
Browse files

fix #2811: left and right aligned tabbable tabs fixes so that .tab-content...

fix #2811: left and right aligned tabbable tabs fixes so that .tab-content grows to match parent's width
parent d652af10
Showing with 2 additions and 12 deletions
+2 -12
No preview for this file type
...@@ -2780,8 +2780,7 @@ input[type="submit"].btn.btn-mini { ...@@ -2780,8 +2780,7 @@ input[type="submit"].btn.btn-mini {
clear: both; clear: both;
} }
.tab-content { .tab-content {
display: table; overflow: auto;
width: 100%;
} }
.tabs-below .nav-tabs, .tabs-below .nav-tabs,
.tabs-right .nav-tabs, .tabs-right .nav-tabs,
...@@ -2816,10 +2815,6 @@ input[type="submit"].btn.btn-mini { ...@@ -2816,10 +2815,6 @@ input[type="submit"].btn.btn-mini {
.tabs-below .nav-tabs .active > a:hover { .tabs-below .nav-tabs .active > a:hover {
border-color: transparent #ddd #ddd #ddd; border-color: transparent #ddd #ddd #ddd;
} }
.tabs-left .tab-content,
.tabs-right .tab-content {
width: auto;
}
.tabs-left .nav-tabs > li, .tabs-left .nav-tabs > li,
.tabs-right .nav-tabs > li { .tabs-right .nav-tabs > li {
float: none; float: none;
......
...@@ -266,8 +266,7 @@ ...@@ -266,8 +266,7 @@
.clearfix(); .clearfix();
} }
.tab-content { .tab-content {
display: table; // prevent content from running below tabs overflow: auto; // prevent content from running below tabs
width: 100%;
} }
// Remove border on bottom, left, right // Remove border on bottom, left, right
...@@ -314,10 +313,6 @@ ...@@ -314,10 +313,6 @@
// ------------ // ------------
// Common styles // Common styles
.tabs-left .tab-content,
.tabs-right .tab-content {
width: auto;
}
.tabs-left .nav-tabs > li, .tabs-left .nav-tabs > li,
.tabs-right .nav-tabs > li { .tabs-right .nav-tabs > li {
float: none; float: none;
......
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