aboutsummaryrefslogtreecommitdiff
path: root/themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss
diff options
context:
space:
mode:
Diffstat (limited to 'themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss')
-rw-r--r--themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss b/themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss
new file mode 100644
index 0000000..c8d91e2
--- /dev/null
+++ b/themes/docsy/assets/vendor/bootstrap/scss/_transitions.scss
@@ -0,0 +1,22 @@
+// stylelint-disable selector-no-qualifying-type
+
+.fade {
+ @include transition($transition-fade);
+
+ &:not(.show) {
+ opacity: 0;
+ }
+}
+
+.collapse {
+ &:not(.show) {
+ display: none;
+ }
+}
+
+.collapsing {
+ position: relative;
+ height: 0;
+ overflow: hidden;
+ @include transition($transition-collapse);
+}