aboutsummaryrefslogtreecommitdiff
path: root/dist/css/bootstrap.css
diff options
context:
space:
mode:
authorHeinrich Fenkart <[email protected]>2014-09-25 02:23:48 +0200
committerHeinrich Fenkart <[email protected]>2014-09-25 02:23:48 +0200
commit7ce682474843d10631b149b017cffa35eb9ee3c5 (patch)
treeb303203c867ca5ced1b9ae535fbedc50af48cfd8 /dist/css/bootstrap.css
parent61a4fee626f5c10eb56149d0d8abb093c9fbbf98 (diff)
downloadbootstrap-7ce682474843d10631b149b017cffa35eb9ee3c5.tar.xz
bootstrap-7ce682474843d10631b149b017cffa35eb9ee3c5.zip
grunt
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css17
1 files changed, 14 insertions, 3 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index 141527e49..46b9801f8 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -3178,9 +3178,11 @@ input[type="button"].btn-block {
}
.collapse {
display: none;
+ visibility: hidden;
}
.collapse.in {
display: block;
+ visibility: visible;
}
tr.collapse.in {
display: table-row;
@@ -3192,9 +3194,15 @@ tbody.collapse.in {
position: relative;
height: 0;
overflow: hidden;
- -webkit-transition: height .35s ease;
- -o-transition: height .35s ease;
- transition: height .35s ease;
+ -webkit-transition-timing-function: ease;
+ -o-transition-timing-function: ease;
+ transition-timing-function: ease;
+ -webkit-transition-duration: .35s;
+ -o-transition-duration: .35s;
+ transition-duration: .35s;
+ -webkit-transition-property: height, visibility;
+ -o-transition-property: height, visibility;
+ transition-property: height, visibility;
}
.caret {
display: inline-block;
@@ -3845,9 +3853,11 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
}
.tab-content > .tab-pane {
display: none;
+ visibility: hidden;
}
.tab-content > .active {
display: block;
+ visibility: visible;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
@@ -3894,6 +3904,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
+ visibility: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;