summaryrefslogtreecommitdiffstats
path: root/public/stylesheets/vendors/bootstrap/component-animations.less
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2014-03-31 12:10:26 -0700
committerSamy Pessé <samypesse@gmail.com>2014-03-31 12:10:26 -0700
commit19a39814752dba872a2a1ff9544e2ca34bc9a3a0 (patch)
tree91fbc72d0eee945467fdb260a13e8b5698b832cd /public/stylesheets/vendors/bootstrap/component-animations.less
parent1f3f06284193fa6da12629966e0438f5a1f75bf6 (diff)
downloadgitbook-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-xpublic/stylesheets/vendors/bootstrap/component-animations.less29
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);
-}