Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '_gh_pages/3.2.1/assets/less/bootstrap-2.3.2/component-animations.less')
-rw-r--r--_gh_pages/3.2.1/assets/less/bootstrap-2.3.2/component-animations.less22
1 files changed, 22 insertions, 0 deletions
diff --git a/_gh_pages/3.2.1/assets/less/bootstrap-2.3.2/component-animations.less b/_gh_pages/3.2.1/assets/less/bootstrap-2.3.2/component-animations.less
new file mode 100644
index 000000000..d614263a7
--- /dev/null
+++ b/_gh_pages/3.2.1/assets/less/bootstrap-2.3.2/component-animations.less
@@ -0,0 +1,22 @@
+//
+// 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;
+ }
+}