mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Do not use filters in fade animations
This commit is contained in:
parent
b261f9781b
commit
642f75141d
1 changed files with 3 additions and 3 deletions
|
@ -2,10 +2,10 @@
|
||||||
// --------------------
|
// --------------------
|
||||||
|
|
||||||
.fade {
|
.fade {
|
||||||
.opacity(0);
|
opacity: 0;
|
||||||
.transition(opacity .15s linear);
|
.transition(opacity .15s linear);
|
||||||
&.in {
|
&.in {
|
||||||
.opacity(100);
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,4 +17,4 @@
|
||||||
&.in {
|
&.in {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue