zhao
2021-07-02 081df17b8cc4a6e7e4f4e1e1887f24810e3ec2f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#popup_container {
    font-family: Arial, sans-serif;
    font-size: 12px;
    min-width: 300px; /* Dialog will be no smaller than this */
    _width:320px; 
    max-width: 600px; /* Dialog will wrap after this width */
    background: #fff;
    border: solid 1px #8DB2E3;
    color: #000;
/*    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;*/
}
 
 
/*corner style*/
#ctl, #cbl, #ctr, #cbr { 
position:absolute; width:5px; height:5px;  
overflow:hidden; font-style:normal; z-index:99999;
}
#ctl {top:-1px; left:-1px;background-position:0 0;}
#ctr {top:-1px; right:-1px;background-position:-5px 0;}
#cbl {bottom:-1px; left:-1px;background-position:0 -5px;}
#cbr {bottom:-1px; right:-1px;background-position:-5px -5px;}
/*corner style over*/
 
 
#popup_title {
    font-size: 12px;
    font-weight: bold;
    text-align:left;
    line-height:30px;
    color: #15428B;
    background:url(images/datagrid_title_bg.png) top repeat-x;
    border-bottom: solid 1px #8DB2E3;
    cursor: default;
    padding:0 0 0 8px;
    margin: 0em;
}
#popup_close{
position:absolute;
right:7px;top:6px;
width:16px;height:16px;
background:url(images/panel_tools.gif) no-repeat -16px 0px ;
cursor:hand;
cursor:pointer;}
 
#popup_content {
    background: 16px 16px no-repeat;
    padding: 12px;
    margin: 0em;
}
 
#popup_content.alert {
    background-image: url(images/info.gif);
}
 
#popup_content.confirm {
    background-image: url(images/important.gif);
}
 
#popup_content.prompt {
    background-image: url(images/help.gif);
}
 
#popup_message {
    padding-left: 48px;
}
 
#popup_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}
 
#popup_ok,#popup_cancel{
width:55px;height:20px;
text-align:center;
border:none;
background:url(images/bot.gif) no-repeat ;
font-size:12px;
line-height:20px;
padding:0; }
 
#popup_prompt {
    margin: .5em 0em;
}
 
#popup_content.openBox{padding:12px;background:none; }
.openBox #popup_message{padding:10px;overflow:auto; text-align:center;}
 
#over_container{
min-width: 300px; /* Dialog will be no smaller than this */
background:#DDEDFB;
border:1px solid #0099CC;
color: #000;
}
#over_message{
text-align:center; 
padding:5px 20px;}
 
#over_container.over_3{
background:#FFF2F2;
border:1px solid #FF8080;}