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

fix overflow issue on tabbed content per #2079

parent 91fe8bc0
...@@ -2367,7 +2367,7 @@ button.btn.btn-small, input[type="submit"].btn.btn-small { ...@@ -2367,7 +2367,7 @@ button.btn.btn-small, input[type="submit"].btn.btn-small {
clear: both; clear: both;
} }
.tab-content { .tab-content {
overflow: hidden; display: table;
} }
.tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs { .tabs-below .nav-tabs, .tabs-right .nav-tabs, .tabs-left .nav-tabs {
border-bottom: 0; border-bottom: 0;
......
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
.clearfix(); .clearfix();
} }
.tab-content { .tab-content {
overflow: hidden; // prevent content from running below tabs display: table; // prevent content from running below tabs
} }
// Remove border on bottom, left, right // Remove border on bottom, left, right
......
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