153 lines
2.4 KiB
CSS
153 lines
2.4 KiB
CSS
.modal,
|
|
.modal-open {
|
|
overflow: hidden
|
|
}
|
|
|
|
.modal {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 9991050;
|
|
display: none;
|
|
outline: 0
|
|
}
|
|
|
|
.modal.fade .modal-dialog {
|
|
transition: -webkit-transform .3s ease-out;
|
|
transition: transform .3s ease-out;
|
|
transition: transform .3s ease-out, -webkit-transform .3s ease-out;
|
|
-webkit-transform: translateY(-25%);
|
|
transform: translateY(-25%)
|
|
}
|
|
|
|
.modal.in .modal-dialog,
|
|
.modal.show .modal-dialog {
|
|
-webkit-transform: translate(0);
|
|
transform: translate(0)
|
|
}
|
|
|
|
.colissimo-front-widget.fade.in,
|
|
.colissimo-front-widget.fade.show {
|
|
opacity: 1;
|
|
}
|
|
|
|
.modal-open .modal {
|
|
overflow-x: hidden;
|
|
overflow-y: auto
|
|
}
|
|
|
|
.modal-dialog {
|
|
position: relative;
|
|
width: auto;
|
|
margin: 10px
|
|
}
|
|
|
|
.modal-content {
|
|
position: relative;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 1px solid rgba(0, 0, 0, .2);
|
|
border-radius: .3rem;
|
|
outline: 0
|
|
}
|
|
|
|
.modal-backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 9991040;
|
|
background-color: #000
|
|
}
|
|
|
|
.modal-backdrop.fade {
|
|
opacity: 0
|
|
}
|
|
|
|
.modal-backdrop.in,
|
|
.modal-backdrop.show {
|
|
opacity: .5
|
|
}
|
|
|
|
.modal-header {
|
|
padding: 15px;
|
|
border-bottom: 1px solid #e5e5e5
|
|
}
|
|
|
|
.modal-header:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both
|
|
}
|
|
|
|
.modal-header .close {
|
|
margin-top: -2px
|
|
}
|
|
|
|
.modal-title {
|
|
margin: 0;
|
|
line-height: 1.5
|
|
}
|
|
|
|
.modal-body {
|
|
position: relative;
|
|
padding: 15px
|
|
}
|
|
|
|
.modal-footer {
|
|
padding: 15px;
|
|
text-align: right;
|
|
border-top: 1px solid #e5e5e5
|
|
}
|
|
|
|
.modal-footer:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both
|
|
}
|
|
|
|
.modal-scrollbar-measure {
|
|
position: absolute;
|
|
top: -9999px;
|
|
width: 50px;
|
|
height: 50px;
|
|
overflow: scroll
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.modal-dialog {
|
|
max-width: 600px;
|
|
margin: 30px auto
|
|
}
|
|
|
|
.colissimo-front-widget .modal-dialog {
|
|
max-width: 900px;
|
|
margin: 30px auto
|
|
}
|
|
|
|
.modal-sm {
|
|
max-width: 300px
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.modal-lg {
|
|
max-width: 900px
|
|
}
|
|
}
|
|
|
|
.colissimo-front-widget .modal-dialog {
|
|
pointer-events: auto;
|
|
}
|
|
|
|
#checkout .modal-open .modal {
|
|
z-index: 9991050 !important;
|
|
}
|
|
|
|
body#checkout .colissimo-front-widget-17 .modal-content {
|
|
padding: 0;
|
|
}
|