41 lines
725 B
SCSS
Executable File
41 lines
725 B
SCSS
Executable File
/* ---------------------------------------------------------------------- */
|
|
/* Modals
|
|
/* ---------------------------------------------------------------------- */
|
|
.modal-backdrop {
|
|
background-color: #000;
|
|
bottom: 0;
|
|
position: fixed;
|
|
|
|
&.in {
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
|
|
.modal-backdrop {
|
|
z-index: 9998 !important;
|
|
}
|
|
|
|
.modal {
|
|
z-index: 9999 !important;
|
|
}
|
|
|
|
.modal-content {
|
|
background: #e8e8e8;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.modal-footer, .modal-header {
|
|
border-color: #b5b5b5;
|
|
}
|
|
|
|
.ng-aside.horizontal .modal-dialog {
|
|
min-height: 100% !important;
|
|
bottom: 0;
|
|
height: auto !important;
|
|
|
|
.modal-content {
|
|
height: auto !important;
|
|
min-height: 100% !important;
|
|
}
|
|
}
|