diff options
| author | Starsam80 <[email protected]> | 2016-10-27 16:13:17 -0600 |
|---|---|---|
| committer | Starsam80 <[email protected]> | 2016-12-07 21:20:15 -0700 |
| commit | bf39bb3ac3d2aef4687b3cd4762015d5f218e2bc (patch) | |
| tree | 968d25a858633f88255e3cc6c923f07a7c44d36c /scss/_modal.scss | |
| parent | ede925d79bf92d5983a4508c6ed6fda9310e1e8b (diff) | |
| download | bootstrap-bf39bb3ac3d2aef4687b3cd4762015d5f218e2bc.tar.xz bootstrap-bf39bb3ac3d2aef4687b3cd4762015d5f218e2bc.zip | |
Rename `.active` to `.show`
Diffstat (limited to 'scss/_modal.scss')
| -rw-r--r-- | scss/_modal.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_modal.scss b/scss/_modal.scss index 85aef719b..b6aea7ac0 100644 --- a/scss/_modal.scss +++ b/scss/_modal.scss @@ -31,7 +31,7 @@ @include transition(transform .3s ease-out); transform: translate(0, -25%); } - &.active .modal-dialog { transform: translate(0, 0); } + &.show .modal-dialog { transform: translate(0, 0); } } .modal-open .modal { overflow-x: hidden; @@ -69,7 +69,7 @@ // Fade for backdrop &.fade { opacity: 0; } - &.active { opacity: $modal-backdrop-opacity; } + &.show { opacity: $modal-backdrop-opacity; } } // Modal header |
