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
| /* Msg Popup Layout Start*/
#msgPopupLayoutBg
{
position:absolute;
top:0;
left:0;
background:#333;
width:100%;
height:100%;
filter:Alpha(Opacity=30);
-moz-opacity:0.5;
opacity:0.5;
display:none;
z-index:100;
}
#msgPopupLayout
{
position:absolute;
top:30%;
left:10%;
width:80%;
display:none;
padding:8px;
filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#7F777777', endColorstr='#7F777777');
background:rgba(85,85,85,0.5);
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
z-index:1000;
}
.msgPopupLayoutTitle
{
position:relative;
height:28px;
padding:0 20px 0 10px;
background:#3A6EA5;
color:#fff;
font-size:14px;
line-height:28px;
border-style:solid;
border-width:1px;
border-color:#4E84C0 #4780BE #0D1D3C #4780BE;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
text-shadow:0 1px 0 #000;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}
.msgPopupLayoutContent
{
padding:5px;
background:#fff;
overflow:hidden;
-webkit-border-radius:0 0 10px 10px;
-moz-border-radius:0 0 10px 10px;
border-radius:0 0 10px 10px;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
/*text-shadow:0 1px 0 #000; */
box-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}
.msgPopupLayoutClose{text-align:center;}
/* Msg Popup Layout End*/ |