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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'less/component-animations.less')
-rw-r--r--less/component-animations.less6
1 files changed, 3 insertions, 3 deletions
diff --git a/less/component-animations.less b/less/component-animations.less
index da1f2e5350..1e1e78b851 100644
--- a/less/component-animations.less
+++ b/less/component-animations.less
@@ -2,10 +2,10 @@
// --------------------
.fade {
- .opacity(0);
+ opacity: 0;
.transition(opacity .15s linear);
&.in {
- .opacity(100);
+ opacity: 1;
}
}
@@ -17,4 +17,4 @@
&.in {
height: auto;
}
-} \ No newline at end of file
+}