91 lines
1.5 KiB
SCSS
91 lines
1.5 KiB
SCSS
//
|
|
// modal.scss
|
|
//
|
|
|
|
.modal-dialog {
|
|
box-shadow: $box-shadow-lg;
|
|
}
|
|
|
|
// Title text within header
|
|
.modal-title {
|
|
margin-top: 0;
|
|
}
|
|
|
|
// Modal full width
|
|
.modal-full-width {
|
|
width: 95%;
|
|
max-width: none;
|
|
}
|
|
|
|
// Modal Positions
|
|
.modal-top {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
// Right Modal
|
|
.modal-right {
|
|
position: absolute;
|
|
right: 0;
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
justify-content: center;
|
|
height: 100%;
|
|
margin: 0;
|
|
background-color: $modal-content-bg;
|
|
align-content: center;
|
|
transform: translate(25%, 0) !important;
|
|
|
|
button.btn-close {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 1;
|
|
}
|
|
}
|
|
|
|
.modal {
|
|
&.show {
|
|
.modal-right,
|
|
.modal-left {
|
|
transform: translate(0, 0) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Bottom modal
|
|
.modal-bottom {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
-ms-flex-pack: end;
|
|
justify-content: flex-end;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
align-content: center;
|
|
}
|
|
|
|
// Colored modal header
|
|
.modal-colored-header {
|
|
.modal-title {
|
|
color: $white !important;
|
|
}
|
|
border-radius: 0;
|
|
}
|
|
|
|
// Full filled modals
|
|
.modal-filled {
|
|
color: $white;
|
|
|
|
.modal-header {
|
|
background-color: rgba($white, 0.07);
|
|
}
|
|
|
|
.modal-title {
|
|
color: $white;
|
|
}
|
|
|
|
.modal-header,
|
|
.modal-footer {
|
|
border: none;
|
|
}
|
|
}
|