12345678910111213141516171819202122232425262728293031323334353637 |
- .modal-content {
- color: $modal-content-color-alt;
- background-color: $modal-content-bg-alt;
- border: $modal-content-border-width solid $modal-content-border-color-alt;
- @include box-shadow($modal-content-box-shadow-xs-alt);
- }
- .modal-backdrop {
- background-color: $modal-backdrop-bg-alt;
-
- &.fade { opacity: 0; }
- &.show { opacity: $modal-backdrop-opacity-alt; }
- }
- .modal-header {
- border-bottom: $modal-header-border-width solid $modal-header-border-color-alt;
- }
- .modal-footer {
- border-top: $modal-footer-border-width solid $modal-footer-border-color-alt;
- }
- @include media-breakpoint-up(sm) {
-
- .modal-content {
- @include box-shadow($modal-content-box-shadow-sm-up-alt);
- }
- }
|