2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-30 15:24:08 +03:00

Fixes #14348: Add visibility styles to collapse and tab content to match .hidden

This commit is contained in:
Mark Otto
2014-08-23 12:25:27 -07:00
parent f265137c05
commit dfa2759a52
5 changed files with 10 additions and 3 deletions
+2 -1
View File
@@ -17,8 +17,9 @@
.collapse {
display: none;
visibility: hidden;
&.in { display: block; }
&.in { display: block; visibility: visibile; }
tr&.in { display: table-row; }
tbody&.in { display: table-row-group; }
}
+2
View File
@@ -223,9 +223,11 @@
.tab-content {
> .tab-pane {
display: none;
visibility: hidden;
}
> .active {
display: block;
visibility: visible;
}
}