1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-25 14:30:46 +02:00

revert an earlier change to move the component-animations.less file because it fubared modal backdrop .fade usage

This commit is contained in:
Mark Otto
2013-12-15 14:14:09 -08:00
parent f6fe62cdf7
commit f5c13a3e1b
4 changed files with 29 additions and 29 deletions

View File

@@ -2266,6 +2266,27 @@ input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.fade {
opacity: 0;
-webkit-transition: opacity .15s linear;
transition: opacity .15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height .35s ease;
transition: height .35s ease;
}
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
@@ -5418,27 +5439,6 @@ button.close {
bottom: 20px;
}
}
.fade {
opacity: 0;
-webkit-transition: opacity .15s linear;
transition: opacity .15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height .35s ease;
transition: height .35s ease;
}
.clearfix:before,
.clearfix:after,
.container:before,

File diff suppressed because one or more lines are too long