dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
49 lines (48 loc) • 875 B
CSS
/* dojox.mobile.SimpleDialog */
.mblSimpleDialog {
position: absolute;
z-index: 100;
margin: 0;
text-align: center;
outline: none;
padding: 5px;
width: 262px;
}
.mblSimpleDialogDecoration {
border-radius: 0;
background-color: #ffffff;
border: 1px solid #000000;
color: #000000;
}
.mblSimpleDialogContainer {
position: relative;
width: 100%;
height: 100%;
}
.mblSimpleDialogCover {
background-color: #000000;
opacity: 0.5;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
}
.mblSimpleDialogCloseBtn {
position: absolute ;
}
.mblSimpleDialogTitle {
margin: 7px 0 7px -5px;
padding: 0 14px 7px;
width: 244px;
border-bottom: 1px solid #c0c0c0;
font-size: 20px;
font-weight: bold;
text-align: left;
}
.mblSimpleDialogText {
margin: 14px 9px;
width: 244px;
text-align: left;
}