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
path: root/less
diff options
context:
space:
mode:
authorTomás Arribas <tomas.arribas@buenostalleres.com>2012-05-21 04:56:57 +0400
committerTomás Arribas <tomas.arribas@buenostalleres.com>2012-05-21 04:56:57 +0400
commit642f75141d96aa7a9bde3c2288112d09d34fb3d3 (patch)
tree134c2887ffa6d6b8daf61ce06d66cec6bbbf1207 /less
parentb261f9781bbf31f499cb55c49451dc0c0ad43062 (diff)
Do not use filters in fade animations
Diffstat (limited to '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
+}