blob: dea4e7f1912a37c8354a818ce3da53a0384ae6b2 (
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
70
71
72
73
|
.dojoxUpgradeBar {
position:absolute;
left:0;
top:0;
width:100%;
height:32px;
overflow:hidden;
z-index:100;
background:#f3f2af;
box-shadow:0 2px 6px #444;
-webkit-box-shadow:0 1px 6px #444;
-moz-box-shadow:0 1px 6px #444;
font-size:.8em;
}
.dj_ie .dojoxUpgradeBar {
border-bottom:#665F48 2px solid;
}
.dojoxUpgradeBarMessage {
position:absolute;
padding-left:10px;
top:50%;
margin-top:-.75em;
left:5px;
width:100%;
}
.dojoxUpgradeBarMessage a{
margin-left:10px;
}
/*
.dojoxUpgradeBarControls {
position:absolute;
right:35px;
top:0;
bottom:0;
width:140px;
text-align:right;
}
*/
.dojoxUpgradeBarReminderButton {
position:absolute;
top:25%;
margin-right:50px;
font-size:11px;
text-decoration:underline;
text-align:right;
cursor:pointer;
right:-20px;
}
.dj_ie6 .dojoxUpgradeBarReminderButton {
margin-top:2px;
}
.dojoxUpgradeBarCloseIcon {
background: url("../../../dijit/themes/tundra/images/tabClose.png") no-repeat right top;
position: absolute;
vertical-align: middle;
right: 5px;
top: 30%;
height: 15px;
width: 15px;
cursor: pointer;
}
.dj_ie6 .dojoxUpgradeBarCloseIcon {
background : url("../../../dijit/themes/tundra/images/tabClose.gif") no-repeat right top;
}
.dojoxUpgradeBarCloseIcon-hover {
background: url("../../../dijit/themes/tundra/images/tabCloseHover.png") no-repeat right top;
}
.dj_ie6 .dojoxUpgradeBarCloseIcon-hover {
background : url("../../../dijit/themes/tundra/images/tabCloseHover.gif") no-repeat right top;
}
|