.mmDialogContainer {
display: none;
background: rgba(227,237,247,.75);
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-y: scroll;
z-index: 33000;
}
.mmDialog {
background: #FFF;
border-radius: 10px;
padding: 10px;
box-shadow: 10px 10px 30px 0px rgba(0,0,0,0.66);
width: 500px;
margin: 40px auto;
}
.mmDialogTitle {
background: linear-gradient(#1A66B2, #0E4084);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding: 10px 20px;
text-transform: uppercase;
font-weight: bold;
color: #FFF;
}
.mmDialogContent {
display: none;
background: #D6E5F2;
padding: 20px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.mmDialogButtons {
padding: 15px 15px 10px 15px;
text-align: right;
}
.mmChoiceList>* {
display: block;
margin: 0;
border: 1px solid #888;
padding: 3px 8px;
border-bottom: 0;
background: #FFF;
color: #000;
text-decoration: none;
cursor: pointer;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
text-align: inherit;
box-sizing: border-box;
width: 100%;
}
.mmChoiceList>*:first-child {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.mmChoiceList>*:last-child {
border-bottom: 1px solid #888;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.mmChoiceList>*:hover {
background: #F95;
color: #FFF;
text-decoration: none;
}
.mmChoiceList>*:hover .label {
color: #FFF;
}
.mmLabelInputTable {
width: 100%;
}
.mmLabelInputTable td {
vertical-align: middle;
}
.mmLabelInputTable td {
padding-top: 2px;
padding-bottom: 2px;
}
.mmLabelInputTable td:firstChild {
padding-right: 10px;
}
.mmLabelInputTable input, .mmLabelInputTable select, .mmLabelInputTable textarea {
border: 1px solid #888;
padding: 3px 8px;
margin: 0;
box-sizing: border-box;
width: 100%;
border-radius: 8px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.ui-front {
z-index: 10000; /* jquery-ui.structure.min.css : 100 */
}