mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-19 09:21:06 +00:00
fix overflow issue on tabbed content per #2079
This commit is contained in:
parent
91fe8bc0f4
commit
9c74f21966
3 changed files with 2 additions and 2 deletions
Binary file not shown.
2
docs/assets/css/bootstrap.css
vendored
2
docs/assets/css/bootstrap.css
vendored
|
|
@ -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 @@
|
||||||
.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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue