summaryrefslogtreecommitdiff
path: root/src/fauxton/assets/less/bootstrap/component-animations.less
diff options
context:
space:
mode:
Diffstat (limited to 'src/fauxton/assets/less/bootstrap/component-animations.less')
-rw-r--r--src/fauxton/assets/less/bootstrap/component-animations.less22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/fauxton/assets/less/bootstrap/component-animations.less b/src/fauxton/assets/less/bootstrap/component-animations.less
deleted file mode 100644
index d614263a7..000000000
--- a/src/fauxton/assets/less/bootstrap/component-animations.less
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// Component animations
-// --------------------------------------------------
-
-
-.fade {
- opacity: 0;
- .transition(opacity .15s linear);
- &.in {
- opacity: 1;
- }
-}
-
-.collapse {
- position: relative;
- height: 0;
- overflow: hidden;
- .transition(height .35s ease);
- &.in {
- height: auto;
- }
-}