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.
112 lines
2.1 KiB
112 lines
2.1 KiB
|
|
.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; |
|
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, .dojoxDialogCloseIconHover { |
|
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"); |
|
} |
|
|
|
.dojoxDialog div.dijitDialogCloseIconHover, |
|
.dojoxDialog div.dijitDialogCloseIconActive { |
|
background-position:0 0; |
|
} |
|
|
|
.dojoxDialog .dijitDialogCloseIconHover { |
|
background-image: url("images/dialogCloseButton.png"); |
|
} |
|
.dj_ie6 .dojoxDialog .dijitDialogCloseIconHover { |
|
background-image: url("images/dialogCloseButton.gif"); |
|
} |
|
|
|
.dojoxDialogNoTitle .dojoxDialogCloseIcon { |
|
top: -15px; |
|
left: -15px; |
|
}
|
|
|