HtmlFloatingPane_wev8.css
1.31 KB
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
.dojoFloatingPane {
position: absolute;
border: 1px solid;
border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;
overflow: visible; /* so drop shadow is displayed */
z-index: 10;
}
.dojoFloatingPaneBackground {
z-index: 5; /* above the shadow */
background-color: ThreeDFace;
}
.dojoFloatingPaneDragbar {
z-index: 10;
margin: 2px 2px 0px 2px;
background-color: ActiveCaption;
cursor: default;
overflow: hidden;
white-space: nowrap;
border-color: ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight;
}
.dojoFloatingPaneTitle {
padding: 4px;
color: CaptionText;
font: small-caption;
}
/* background image for title bar */
.dojoFloatingPaneDragbarBackground {
z-index: -1;
}
.dojoFloatingPaneDragbarForeground {
z-index: 1;
}
/* bar at bottom of window that holds resize handle */
.dojoFloatingPaneResizebar {
z-index: 10;
height: 13px;
background-color: ThreeDFace;
}
.dojoFloatingPaneClient {
position: absolute;
z-index: 10;
border: 1px solid;
border-color: ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow;
margin: 2px;
background-color: ThreeDFace;
padding: 8px;
font-family: Verdana, Helvetica, Garamond, sans-serif;
font-size: 12px;
width: 100%;
overflow: auto;
}
.dojoDropShadow {
position: absolute;
top: 10px;
left: 10px;
z-index: -1;
background: gray;
}