comindware.ui
Version:
Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.
37 lines (33 loc) • 568 B
CSS
.l-popup {
height: 600px;
width: 700px;
max-width: 80%;
max-height: 80%;
min-height: 300px;
margin: auto;
padding: 20px 30px;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #fff;
z-index: 555;
}
.fadingPanel {
background-color: #023f67;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 100;
display: none;
}
.fadingPanel_open {
opacity: .5;
display: block;
}
.popup-fade {
z-index: 101
}