diff options
author | 2016-11-11 13:14:53 +0100 | |
---|---|---|
committer | 2016-11-11 13:15:01 +0100 | |
commit | 80d9194c56e4cecc3a00acd71033ca7ff35064cf (patch) | |
tree | e412cd48bd6a1017ea0ac6abd1b62b984b6ebb06 /site/static/styles/scss/bootstrap/_component-animations.scss | |
parent | 777f9afc5f5a3d8ff90a8046314635404dcdcd99 (diff) |
webdocs-agl: upgrade bootstrap to 3.3.7
Using the bootstrap-sass version available at:
https://github.com/twbs/bootstrap-sass/archive/v3.3.7.tar.gz
Change-Id: I04dbedda13f6ab6987d4b61afd10bbd60dfb70e6
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'site/static/styles/scss/bootstrap/_component-animations.scss')
-rw-r--r-- | site/static/styles/scss/bootstrap/_component-animations.scss | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/site/static/styles/scss/bootstrap/_component-animations.scss b/site/static/styles/scss/bootstrap/_component-animations.scss new file mode 100644 index 0000000..ca3b43c --- /dev/null +++ b/site/static/styles/scss/bootstrap/_component-animations.scss @@ -0,0 +1,37 @@ +// +// 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/twbs/bootstrap/pull/3552. + +.fade { + opacity: 0; + @include transition(opacity .15s linear); + &.in { + opacity: 1; + } +} + +.collapse { + display: none; + + &.in { display: block; } + // [converter] extracted tr&.in to tr.collapse.in + // [converter] extracted tbody&.in to tbody.collapse.in +} + +tr.collapse.in { display: table-row; } + +tbody.collapse.in { display: table-row-group; } + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + @include transition-property(height, visibility); + @include transition-duration(.35s); + @include transition-timing-function(ease); +} |