diff options
author | David Stutz <davidstutz@web.de> | 2013-10-04 19:43:44 +0200 |
---|---|---|
committer | David Stutz <davidstutz@web.de> | 2013-10-04 19:43:44 +0200 |
commit | 285039046fc00d2d64c1839c5a10f34bc8ed0318 (patch) | |
tree | 080493229425bc0572794d2a450502a26b985079 /docs/less/component-animations.less | |
download | password-score-285039046fc00d2d64c1839c5a10f34bc8ed0318.zip password-score-285039046fc00d2d64c1839c5a10f34bc8ed0318.tar.gz password-score-285039046fc00d2d64c1839c5a10f34bc8ed0318.tar.bz2 |
Initial commit. Roadmap includes time to crack estimation and docs/demo.
Diffstat (limited to 'docs/less/component-animations.less')
-rw-r--r-- | docs/less/component-animations.less | 29 |
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); +} |