update assets from bootstrap@3.3.7

This commit is contained in:
Vu Nguyen
2021-01-14 20:39:47 -06:00
parent 3deee881b1
commit ba3182fd59
73 changed files with 3046 additions and 5453 deletions

View File

@@ -1,3 +1,5 @@
// stylelint-disable selector-no-qualifying-type
//
// Component animations
// --------------------------------------------------
@@ -9,7 +11,8 @@
.fade {
opacity: 0;
.transition(opacity 0.15s linear);
.transition(opacity .15s linear);
&.in {
opacity: 1;
}
@@ -18,22 +21,16 @@
.collapse {
display: none;
&.in {
display: block;
}
tr&.in {
display: table-row;
}
tbody&.in {
display: table-row-group;
}
&.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(0.35s);
.transition-property(~"height, visibility");
.transition-duration(.35s);
.transition-timing-function(ease);
}