summaryrefslogtreecommitdiffstats
path: root/docs/less/component-animations.less
diff options
context:
space:
mode:
authorDavid Stutz <davidstutz@web.de>2014-10-19 22:27:27 +0200
committerDavid Stutz <davidstutz@web.de>2014-10-19 22:27:27 +0200
commit188603e9075b2a6cf3cf5d0a500cee964c77801d (patch)
tree4af4ad26871f3841e5169f87222a05b22cd8615d /docs/less/component-animations.less
parent9a58ab3ba51514dfb3d350933c5174a1628ab8e1 (diff)
downloadbootstrap-strength-meter-188603e9075b2a6cf3cf5d0a500cee964c77801d.zip
bootstrap-strength-meter-188603e9075b2a6cf3cf5d0a500cee964c77801d.tar.gz
bootstrap-strength-meter-188603e9075b2a6cf3cf5d0a500cee964c77801d.tar.bz2
Added documentation, updated Password Score, changed folder structure, added bower.json.
Diffstat (limited to 'docs/less/component-animations.less')
-rw-r--r--docs/less/component-animations.less29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/less/component-animations.less b/docs/less/component-animations.less
new file mode 100644
index 0000000..1efe45e
--- /dev/null
+++ b/docs/less/component-animations.less
@@ -0,0 +1,29 @@
+//
+// Component animations
+// --------------------------------------------------
+
+// Heads up!
+//
+// We don't use the `.opacity()` mixin here since it causes a bug with text
+// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.
+
+.fade {
+ opacity: 0;
+ .transition(opacity .15s linear);
+ &.in {
+ opacity: 1;
+ }
+}
+
+.collapse {
+ display: none;
+ &.in {
+ display: block;
+ }
+}
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ .transition(height .35s ease);
+}