Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scss/_animation.scss8
-rw-r--r--scss/_modal.scss4
2 files changed, 6 insertions, 6 deletions
diff --git a/scss/_animation.scss b/scss/_animation.scss
index f0dfff81fe..1be1971fbf 100644
--- a/scss/_animation.scss
+++ b/scss/_animation.scss
@@ -2,26 +2,26 @@
opacity: 0;
transition: opacity .15s linear;
- &.in {
+ &.active {
opacity: 1;
}
}
.collapse {
display: none;
- &.in {
+ &.active {
display: block;
}
}
tr {
- &.collapse.in {
+ &.collapse.active {
display: table-row;
}
}
tbody {
- &.collapse.in {
+ &.collapse.active {
display: table-row-group;
}
}
diff --git a/scss/_modal.scss b/scss/_modal.scss
index c326d5699e..39554581d3 100644
--- a/scss/_modal.scss
+++ b/scss/_modal.scss
@@ -31,7 +31,7 @@
transition: transform .3s ease-out;
transform: translate(0, -25%);
}
- &.in .modal-dialog { transform: translate(0, 0); }
+ &.active .modal-dialog { transform: translate(0, 0); }
}
.modal-open .modal {
overflow-x: hidden;
@@ -69,7 +69,7 @@
// Fade for backdrop
&.fade { opacity: 0; }
- &.in { opacity: $modal-backdrop-opacity; }
+ &.active { opacity: $modal-backdrop-opacity; }
}
// Modal header