80 lines
1.2 KiB
SCSS
80 lines
1.2 KiB
SCSS
.wpjToolbar_dialog {
|
|
background-color: #f1f2f6;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
padding-top: 4px;
|
|
}
|
|
|
|
#wpjToolbar_dialog {
|
|
display: none;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
outline: 0;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1050;
|
|
|
|
iframe {
|
|
border: none;
|
|
max-height: 100vh;
|
|
width: 1300px;
|
|
max-width: 100%;
|
|
height: 900px;
|
|
}
|
|
|
|
.modal-dialog {
|
|
margin: 0 auto;
|
|
position: relative;
|
|
width: 1300px;
|
|
max-width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
.modal-content {
|
|
background-color: #fff;
|
|
border: 0;
|
|
border-radius: .3rem;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
|
|
margin: auto;
|
|
max-height: 900px;
|
|
outline: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
|
|
.modal-open {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.modal-backdrop {
|
|
background-color: #000;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 1040;
|
|
|
|
&.in {
|
|
opacity: .5;
|
|
}
|
|
|
|
&.fade {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.modal-scrollbar-measure {
|
|
position: absolute;
|
|
top: -9999px;
|
|
width: 50px;
|
|
height: 50px;
|
|
overflow: scroll;
|
|
}
|
|
|