diff options
| author | Elizabeth Alexander Hunt <me@liz.coffee> | 2026-07-02 11:55:17 -0700 |
|---|---|---|
| committer | Elizabeth Alexander Hunt <me@liz.coffee> | 2026-07-02 11:55:17 -0700 |
| commit | 6bf4b90c90f15f4ab60833bddf5b5756d1a6b1f6 (patch) | |
| tree | ed97e39ec77c5231ffd2c394493e68d00ddac5a4 /Homework/cs3460/smart_pointers/build/_deps/fmt-src/doc/bootstrap/component-animations.less | |
| download | misc-undergrad-main.tar.gz misc-undergrad-main.zip | |
Diffstat (limited to 'Homework/cs3460/smart_pointers/build/_deps/fmt-src/doc/bootstrap/component-animations.less')
| -rw-r--r-- | Homework/cs3460/smart_pointers/build/_deps/fmt-src/doc/bootstrap/component-animations.less | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Homework/cs3460/smart_pointers/build/_deps/fmt-src/doc/bootstrap/component-animations.less b/Homework/cs3460/smart_pointers/build/_deps/fmt-src/doc/bootstrap/component-animations.less new file mode 100644 index 0000000..0bcee91 --- /dev/null +++ b/Homework/cs3460/smart_pointers/build/_deps/fmt-src/doc/bootstrap/component-animations.less @@ -0,0 +1,33 @@ +// +// 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; + .transition(opacity .15s linear); + &.in { + opacity: 1; + } +} + +.collapse { + display: none; + + &.in { display: block; } + tr&.in { display: table-row; } + tbody&.in { display: table-row-group; } +} + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + .transition-property(~"height, visibility"); + .transition-duration(.35s); + .transition-timing-function(ease); +} |
