From: Tomás Arribas Date: Mon, 21 May 2012 00:56:57 +0000 (+0200) Subject: Do not use filters in fade animations X-Git-Tag: v2.0.4~1^2~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F3552%2Fhead;p=thirdparty%2Fbootstrap.git Do not use filters in fade animations --- diff --git a/less/component-animations.less b/less/component-animations.less index da1f2e5350..1e1e78b851 100644 --- a/less/component-animations.less +++ b/less/component-animations.less @@ -2,10 +2,10 @@ // -------------------- .fade { - .opacity(0); + opacity: 0; .transition(opacity .15s linear); &.in { - .opacity(100); + opacity: 1; } } @@ -17,4 +17,4 @@ &.in { height: auto; } -} \ No newline at end of file +}