blob: 687fe92a67dd630748acf89ef63232bea774d35e (
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
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
|
/*
------------------------------
Smooth
------------------------------
*/
.jqismoothfade{
position: absolute;
background-color: #333333;
}
div.jqismooth{
width: 350px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
position: absolute;
background-color: #ffffff;
font-size: 11px;
text-align: left;
border: solid 3px #e2e8e6;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding: 7px;
}
div.jqismooth .jqismoothcontainer{
font-weight: bold;
}
div.jqismooth .jqismoothclose{
position: absolute;
top: 0;
right: 0;
width: 18px;
cursor: default;
text-align: center;
padding: 2px 0 4px 0;
color: #727876;
font-weight: bold;
background-color: #e2e8e6;
-moz-border-radius-bottomLeft: 5px;
-webkit-border-bottom-left-radius: 5px;
border-left: solid 1px #e2e8e6;
border-bottom: solid 1px #e2e8e6;
}
div.jqismooth .jqismoothmessage{
padding: 10px;
line-height: 20px;
color: #444444;
}
div.jqismooth .jqismoothbuttons{
text-align: right;
padding: 5px 0 5px 0;
border: solid 1px #e2e8e6;
background-color: #f2f8f6;
}
div.jqismooth button{
padding: 3px 10px;
margin: 0 10px;
background-color: #2F6073;
border: solid 1px #f4f4f4;
color: #ffffff;
font-weight: bold;
font-size: 12px;
}
div.jqismooth button:hover{
background-color: #728A8C;
}
div.jqismooth button.jqismoothdefaultbutton{
background-color: #BF5E26;
}
.jqismoothwarning .jqismooth .jqismoothbuttons{
background-color: #BF5E26;
}
|