diff options
| author | Jacob Thornton <[email protected]> | 2012-04-16 16:34:08 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-04-16 16:34:08 -0700 |
| commit | 2881269e16be1beb007633501496d6a8e8924b4b (patch) | |
| tree | 74cc8785b4648817162038526b5c6abebf19be67 /less/component-animations.less | |
| parent | a3ec868ac278fb4ec29b21b662f1fd417ac16f2a (diff) | |
| download | bootstrap-2881269e16be1beb007633501496d6a8e8924b4b.tar.xz bootstrap-2881269e16be1beb007633501496d6a8e8924b4b.zip | |
lots of property ordering
Diffstat (limited to 'less/component-animations.less')
| -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 4a6368cf9..5a1e202d1 100644 --- a/less/component-animations.less +++ b/less/component-animations.less @@ -2,18 +2,18 @@ // -------------------- .fade { - .transition(opacity .15s linear); opacity: 0; + .transition(opacity .15s linear); &.in { opacity: 1; } } .collapse { - .transition(height .35s ease); position:relative; - overflow:hidden; height: 0; + overflow:hidden; + .transition(height .35s ease); &.in { height: auto; } |
