diff options
| author | Tomás Arribas <[email protected]> | 2012-05-21 02:56:57 +0200 |
|---|---|---|
| committer | Tomás Arribas <[email protected]> | 2012-05-21 02:56:57 +0200 |
| commit | 642f75141d96aa7a9bde3c2288112d09d34fb3d3 (patch) | |
| tree | 134c2887ffa6d6b8daf61ce06d66cec6bbbf1207 | |
| parent | b261f9781bbf31f499cb55c49451dc0c0ad43062 (diff) | |
| download | bootstrap-642f75141d96aa7a9bde3c2288112d09d34fb3d3.tar.xz bootstrap-642f75141d96aa7a9bde3c2288112d09d34fb3d3.zip | |
Do not use filters in fade animations
| -rw-r--r-- | less/component-animations.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/component-animations.less b/less/component-animations.less index da1f2e535..1e1e78b85 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 +} |
