8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
101 lines
1.8 KiB
CSS
101 lines
1.8 KiB
CSS
|
|
.dojoxDialog {
|
|
position: absolute;
|
|
z-index: 999;
|
|
outline:0;
|
|
}
|
|
|
|
.dojoxDialog .closeText {
|
|
display:none;
|
|
/* for the onhover border in high contrast on IE: */
|
|
position:absolute;
|
|
}
|
|
|
|
.dojoxDialogFixed div.dojoxDialogTitleBar {
|
|
cursor:default;
|
|
}
|
|
|
|
.dojoxDialogWrapper {
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.dojoxDialog {
|
|
background: #fff;
|
|
-webkit-box-shadow: 0px 5px 10px #adadad;
|
|
-moz-border-radius:9pt;
|
|
-webkit-border-radius:8pt;
|
|
border:1px solid #b7b7b7;
|
|
padding:1.5em 3px 3px 3px;
|
|
}
|
|
|
|
.dojoxDialogFocused {
|
|
border:1px solid #ccc;
|
|
}
|
|
|
|
.dojoxDialog .dojoxDialogPaneContent {
|
|
border:none;
|
|
padding:0;
|
|
}
|
|
|
|
.dojoxDialogTitleBar {
|
|
/* outer container for the titlebar of the dialog */
|
|
cursor:move;
|
|
position:absolute;
|
|
top:0;
|
|
left:0;
|
|
right:0;
|
|
background:#ededed;
|
|
height:1.5em;
|
|
outline:0; /* remove this line if keyboard focus on dialog startup is an issue. tab still takes you to first focusable element */
|
|
-moz-border-radius-topleft:8pt;
|
|
-moz-border-radius-topright:8pt;
|
|
-webkik-border-radius-topleft:7pt;
|
|
-webkit-border-radius-topright:7pt;
|
|
}
|
|
.dj_webkit .dojoxDialogTitleBar {
|
|
border:1px solid #ccc;
|
|
}
|
|
|
|
.dojoxDialogNoTitle .dojoxDialogTitleBar {
|
|
display:none;
|
|
}
|
|
|
|
.dojoxDialogContent {
|
|
/* the body of the dialog */
|
|
padding: 3px;
|
|
margin-top:1.2em;
|
|
}
|
|
|
|
/* pseudo-tundra-like */
|
|
|
|
.dojoxDialogTitle {
|
|
font-weight: bold;
|
|
padding: 8px 12px 8px 12px;
|
|
outline:0;
|
|
border-bottom:#b7b7b7;
|
|
}
|
|
|
|
div.dojoxDialogNoTitle {
|
|
padding-top:9px;
|
|
}
|
|
|
|
.dojoxDialogCloseIcon {
|
|
background : url("images/dialogCloseButton.png") no-repeat top right;
|
|
position: absolute;
|
|
vertical-align: middle;
|
|
left: -19px;
|
|
top: -19px;
|
|
height: 29px;
|
|
width: 29px;
|
|
cursor: pointer;
|
|
z-index: 999;
|
|
}
|
|
.dj_ie6 .dojoxDialogCloseIcon {
|
|
background-image: url("images/dialogCloseButton.gif");
|
|
}
|
|
|
|
.dojoxDialogNoTitle .dojoxDialogCloseIcon {
|
|
top: -15px;
|
|
left: -15px;
|
|
}
|