2019-07-18 14:22:11 +00:00
|
|
|
//
|
|
|
|
// Component: Modals
|
|
|
|
//
|
2019-06-14 07:33:43 +00:00
|
|
|
|
|
|
|
// Overlay
|
|
|
|
.modal-dialog {
|
|
|
|
.overlay {
|
2020-11-26 07:30:52 +00:00
|
|
|
display: flex;
|
2019-06-28 08:02:07 +00:00
|
|
|
position: absolute;
|
2020-11-26 07:30:52 +00:00
|
|
|
left: 0;
|
2019-06-28 08:02:07 +00:00
|
|
|
top: 0;
|
2020-11-26 07:30:52 +00:00
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: -$modal-content-border-width;
|
2019-06-28 08:02:07 +00:00
|
|
|
z-index: ($zindex-modal + 2);
|
2020-11-26 07:30:52 +00:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: rgba($black, .7);
|
|
|
|
color: darken($gray-600, 2.5%);
|
|
|
|
@include border-radius($modal-content-border-radius);
|
2019-06-14 07:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2019-06-14 07:33:43 +00:00
|
|
|
// BG Color Variations Fixes
|
|
|
|
.modal-content {
|
|
|
|
&.bg-warning {
|
|
|
|
.modal-header,
|
|
|
|
.modal-footer {
|
|
|
|
border-color: $gray-800;
|
|
|
|
}
|
|
|
|
}
|
2019-06-28 08:02:07 +00:00
|
|
|
|
2019-06-14 07:33:43 +00:00
|
|
|
&.bg-primary,
|
|
|
|
&.bg-secondary,
|
|
|
|
&.bg-info,
|
|
|
|
&.bg-danger,
|
|
|
|
&.bg-success, {
|
2019-06-28 08:02:07 +00:00
|
|
|
.close {
|
2019-06-14 07:33:43 +00:00
|
|
|
color: $white;
|
2020-05-30 13:06:11 +00:00
|
|
|
text-shadow: 0 1px 0 $black;
|
2019-06-14 07:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-23 14:08:15 +00:00
|
|
|
|
|
|
|
.dark-mode {
|
|
|
|
.modal-header,
|
|
|
|
.modal-footer {
|
|
|
|
border-color: $gray-600;
|
|
|
|
}
|
|
|
|
.modal-content {
|
|
|
|
background-color: $dark;
|
|
|
|
|
|
|
|
&.bg-warning {
|
|
|
|
.modal-header,
|
|
|
|
.modal-footer {
|
|
|
|
border-color: $gray-600;
|
|
|
|
}
|
|
|
|
.close {
|
|
|
|
color: $dark !important;
|
|
|
|
text-shadow: 0 1px 0 $gray-700 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bg-primary,
|
|
|
|
&.bg-secondary,
|
|
|
|
&.bg-info,
|
|
|
|
&.bg-danger,
|
|
|
|
&.bg-success {
|
|
|
|
.modal-header,
|
|
|
|
.modal-footer {
|
|
|
|
border-color: $white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|