diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-03-31 12:10:26 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-03-31 12:10:26 -0700 |
commit | 19a39814752dba872a2a1ff9544e2ca34bc9a3a0 (patch) | |
tree | 91fbc72d0eee945467fdb260a13e8b5698b832cd /public/stylesheets/vendors/bootstrap/component-animations.less | |
parent | 1f3f06284193fa6da12629966e0438f5a1f75bf6 (diff) | |
download | gitbook-19a39814752dba872a2a1ff9544e2ca34bc9a3a0.zip gitbook-19a39814752dba872a2a1ff9544e2ca34bc9a3a0.tar.gz gitbook-19a39814752dba872a2a1ff9544e2ca34bc9a3a0.tar.bz2 |
Copy assets to build
Diffstat (limited to 'public/stylesheets/vendors/bootstrap/component-animations.less')
-rwxr-xr-x | public/stylesheets/vendors/bootstrap/component-animations.less | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/public/stylesheets/vendors/bootstrap/component-animations.less b/public/stylesheets/vendors/bootstrap/component-animations.less deleted file mode 100755 index 1efe45e..0000000 --- a/public/stylesheets/vendors/bootstrap/component-animations.less +++ /dev/null @@ -1,29 +0,0 @@ -// -// Component animations -// -------------------------------------------------- - -// Heads up! -// -// We don't use the `.opacity()` mixin here since it causes a bug with text -// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552. - -.fade { - opacity: 0; - .transition(opacity .15s linear); - &.in { - opacity: 1; - } -} - -.collapse { - display: none; - &.in { - display: block; - } -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - .transition(height .35s ease); -} |