rocket-pinboard/static/scss/bootstrap/_transitions.scss
Paul van Tilburg 6259b9b320 Move Bootstrap SCSS to static/
As a result the CSS maps an be used to trace the original line in the SCSS
in the browser inspector.  Also, move bootstrap to a subdir to distinguish
it from the SCSS of the app itself.
2017-12-30 16:23:25 +01:00

37 lines
452 B
SCSS

// stylelint-disable selector-no-qualifying-type
.fade {
opacity: 0;
@include transition($transition-fade);
&.show {
opacity: 1;
}
}
.collapse {
display: none;
&.show {
display: block;
}
}
tr {
&.collapse.show {
display: table-row;
}
}
tbody {
&.collapse.show {
display: table-row-group;
}
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
@include transition($transition-collapse);
}