123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- *{ font-size:12px;}
- .overlay_dialog {
- background-color: #dddddd;
- filter: Alpha(Opacity=50,Style=0);
- -moz-opacity: 0.4;
- opacity: 0.4;
- }
- .dialog_nw {
- width: 25px;
- background: url(images/top_left.gif) no-repeat;
- height: 28px;
- }
- .dialog_n {
- background: url(images/top_center.gif) repeat-x;
- height: 28px;
- }
- .dialog_ne {
- width: 6px;
- height: 28px;
- background: url(images/top_right.gif) no-repeat;
- }
- .dialog_w {
- width: 6px;
- background: url(images/mid_left.gif) repeat-y;
- }
- .dialog_e {
- width: 6px;
- background: url(images/mid_right.gif) repeat-y;
- }
- .dialog_sw {
- width:6px;
- height:6px;
- background: url(images/bottom_left.gif) no-repeat;
- }
- .dialog_s {
- background-color:#ECF3F6;
- background: url(images/bottom_center.gif) repeat-x;
- height: 6px;
- }
- .dialog_se {
- width: 6px;
- height: 6px;
- background: url(images/bottom_right.gif) no-repeat;
- }
- .dialog_sizer {
- width: 10px;
- height: 6px;
- background: url(images/sizer.gif) no-repeat;
- cursor:se-resize;
- }
- .dialog_close {
- width: 26px;
- height: 24px;
- background: transparent url(images/close.gif) no-repeat 0 0;
- float:right;
- margin-right:3px;
- cursor:pointer;
- z-index:2000;
- }
- .dialog_minimize {
- width: 25px;
- height: 24px;
- background: transparent url(images/mini.gif) no-repeat 0 0;
- float:right;
- margin-right:3px;
- cursor:pointer;
- z-index:2000;
- }
- .dialog_maximize {
- width: 26px;
- height: 24px;
- background: transparent url(images/maxi.gif) no-repeat 0 0;
- float:right;
- margin-right:3px;
- z-index:2000;
- cursor:pointer;
- }
- .dialog_title {
- float:left;
- height:20px;
- font-size:12px;
- font-weight:bold;
- width:auto;
- color:#ffffff;
- line-height:20px;
- padding-top:4px;
- }
- .dialog_content {
- overflow-x:hidden;
- overflow-y:auto;
- background-color:#fff;
- }
- .dialog_buttons {
- text-align:center;
- background-color:#eee;
- overflow:hidden;
- padding-top:2px;
- }
- .dialog_buttons button {
- margin:0 1px 0 1px;
- }
- .dialog_progress {
- float:left;
- margin:auto;
- text-align:center;
- width:100%;
- height:100%;
- background: #FFF url(images/progress.gif) no-repeat center center;
- }
- .top_draggable, .bottom_draggable {
- cursor:move;
- }
- .status_bar {
- font-size:12px;
- }
- .status_bar input{
- font-size:12px;
- }
- .dialog {
- display: block;
- position: absolute;
- }
- .dialog table.table_window {
- border-collapse: collapse;
- border-spacing: 0;
- width: 100%;
- margin: 0px;
- padding:0px;
- }
- .dialog table.table_window td , .dialog table.table_window th {
- padding: 0;
- }
- .dialog_masker{
- position: absolute;
- }
- .dialog .title_window {
- -moz-user-select:none;
- }
- .dialog_btn{ color:#0099dd; height:23px; line-height:18px; padding:0px 10px; font-family:"宋体", Verdana; font-size:12px; margin-right:2px;}
|