blob: 7bf28cd4dc122d99499c9721d777ce202b03a170 (
plain)
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
|
.dialog {
display: none;
width:55%;
height:auto;
padding: 15px;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
box-shadow: 1px 1px 4px 1px #888888;
background: #FFF;
font-color:white;
}
.dialog hr{
}
.ui-dialog-content, .ui-widget-content {
width:800px;
background-color:#F0F0F0 ;
font-family: "Trebuchet MS", "Helvetica", "Arial", "Verdana", "sans-serif";
font-size: 62.5%;
font-color:white;
}
/*filter:alpha(opacity=70);
opacity:0.7;*/
|