You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.0 KiB
54 lines
1.0 KiB
/* dojox.mobile.SimpleDialog */ |
|
.mblSimpleDialog { |
|
position: absolute; |
|
z-index: 100; |
|
margin: 0; |
|
text-align: center; |
|
outline: none; |
|
padding: 5px; |
|
width: 262px; |
|
} |
|
.mblSimpleDialogDecoration { |
|
background-color: rgba(64, 64, 64, 0.85); |
|
border: 2px solid #eeeeee; |
|
color: white; |
|
background-image: none; |
|
background-color: #222222; |
|
border-style: none; |
|
border-top-style: solid; |
|
border-top-width: 1px; |
|
border-top-color: rgba(255, 255, 255, 0.6); |
|
border-radius: 2px; |
|
} |
|
.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 !important; |
|
} |
|
.mblSimpleDialogTitle { |
|
margin: 14px 0 7px -5px; |
|
padding: 0 14px 14px; |
|
width: 244px; |
|
border-bottom: 1px solid #33b5e5; |
|
font-size: 17px; |
|
text-align: left; |
|
} |
|
.mblSimpleDialogText { |
|
margin: 14px 9px; |
|
width: 244px; |
|
font-size: 17px; |
|
text-align: left; |
|
}
|
|
|