mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
4c7a3e8adf
* WIP: Mention variables, mixins, and loops in docs * Add Sass sections to component pages * add sass docs for forms and content * Update buttons.md * Remove empty mixins sections * Massive update to utilities and some consistency changes Co-authored-by: XhmikosR <xhmikosr@gmail.com>
21 lines
309 B
SCSS
21 lines
309 B
SCSS
.fade {
|
|
@include transition($transition-fade);
|
|
|
|
&:not(.show) {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
// scss-docs-start collapse-classes
|
|
.collapse {
|
|
&:not(.show) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.collapsing {
|
|
height: 0;
|
|
overflow: hidden;
|
|
@include transition($transition-collapse);
|
|
}
|
|
// scss-docs-end collapse-classes
|