aboutsummaryrefslogtreecommitdiff
path: root/less/_animation.less
diff options
context:
space:
mode:
Diffstat (limited to 'less/_animation.less')
-rw-r--r--less/_animation.less30
1 files changed, 0 insertions, 30 deletions
diff --git a/less/_animation.less b/less/_animation.less
deleted file mode 100644
index 2b3e765fa..000000000
--- a/less/_animation.less
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// Component animations
-// --------------------------------------------------
-
-.fade {
- opacity: 0;
- transition: opacity .15s linear;
- &.in {
- opacity: 1;
- }
-}
-
-.collapse {
- display: none;
- visibility: hidden;
-
- &.in { display: block; visibility: visible; }
- tr&.in { display: table-row; }
- tbody&.in { display: table-row-group; }
-}
-
-.collapsing {
- position: relative;
- height: 0;
- overflow: hidden;
- transition: height .35s ease;
- transition-property: height, visibility;
- transition-duration: .35s;
- transition-timing-function: ease;
-}