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.
70 lines (67 loc) • 1.33 kB
CSS
.msg-popup {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
z-index: 555;
}
.msg-popup:before {
content: '';
height: 100%;
width: 0;
display: inline-block;
vertical-align: middle;
}
.msg-popup__content {
width: 650px;
max-width: 80%;
max-height: 80%;
min-height: 110px;
margin: auto;
padding: 20px 30px;
overflow: auto;
display: inline-block;
vertical-align: middle;
background: #fff;
}
.msg-popup__title {
font-size: 22px;
line-height: 1.2;
color: #384650;
font-weight: 300;
text-align: center;
}
.msg-popup__desc {
padding: 20px;
font-size: 16px;
font-weight: 300;
}
.msg-popup__buttons {
text-align: right;
}
.msg-popup__button {
margin: 0 0 0 10px;
padding: 5px 25px;
display: inline-block;
font-size: 14px;
color: #0575bd;
outline: 0;
border: 1px solid #ced3d7;
background: #fff;
cursor: pointer;
}
.msg-popup__button:hover {
color:#009bfe;
border-color: #009bfe;
}
.msg-popup__button_default {
color: #fff;
border-color: #0575BD;
background: #0575BD;
}
.msg-popup__button_default:hover {
color: #fff;
background-color: #009bfe;
}