2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

Do not use filters in fade animations

This commit is contained in:
Tomás Arribas
2012-05-21 02:56:57 +02:00
parent b261f9781b
commit 642f75141d
+2 -2
View File
@@ -2,10 +2,10 @@
// -------------------- // --------------------
.fade { .fade {
.opacity(0); opacity: 0;
.transition(opacity .15s linear); .transition(opacity .15s linear);
&.in { &.in {
.opacity(100); opacity: 1;
} }
} }