Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
.dojoxFloatingPane {
2
	background-color:#fff;
3
	position:relative;
4
	border: 1px solid #dedede;
5
	overflow: hidden;
6
	-webkit-box-shadow: 0px 5px 10px #adadad;
7
}
8
 
9
.dojoxFloatingPaneFg {
10
	-webkit-box-shadow: 0px 8px 20px #525252;
11
}
12
 
13
/* titleNode */
14
.dojoxFloatingPaneTitle {
15
	background: #cccccc;
16
	background:#fafafa url("images/floatTitleBarBg.gif") repeat-x bottom left;
17
	border:1px solid #bfbfbf;
18
	padding:4px 4px 2px 4px;
19
	cursor: pointer;
20
	white-space: nowrap;
21
}
22
 
23
.soria .dojoxFloatingPaneTitle {
24
	background:#4f8ced url("../../../dijit/themes/soria/images/gradientTopBg.png") repeat-x top left;
25
	border:1px solid #6969FF;
26
	background-position:0px -1px;
27
	color:#fff; font-weight:bold;
28
}
29
.tundra .dojoxFloatingPaneTitle {
30
	background:#fafafa url("../../../dijit/themes/tundra/images/titleBarBg.gif") repeat-x bottom left;
31
	border:1px solid #bfbfbf;
32
	color:#000;
33
}
34
 
35
 
36
/* Icons */
37
.dojoxFloatingCloseIcon {
38
	background:url('icons/tabClose.png') no-repeat center center;
39
	width:16px;
40
	height:16px;
41
	overflow:hidden;
42
	float:right;
43
}
44
 
45
.dojoxFloatingMinimizeIcon {
46
	background:url('../../../dijit/themes/tundra/images/arrowDown.png') no-repeat center center;
47
	width:16px;
48
	height:16px;
49
	overflow:hidden;
50
	float:right;
51
}
52
 
53
.floatingPaneMaximized .dojoxFloatingMaximizeIcon { display:none; }
54
.dojoxFloatingMaximizeIcon {
55
	background:url('../../../dijit/themes/tundra/images/arrowUp.png') no-repeat center center;
56
	width:16px;
57
	height:16px;
58
	overflow:hidden;
59
	float:right;
60
}
61
 
62
.floatingPaneMaximized .dojoxFloatingRestoreIcon { display:inline; }
63
.dojoxFloatingRestoreIcon {
64
	background:url('../../../dijit/themes/tundra/images/arrowDown.png') no-repeat center center;
65
	width:16px; height:16px;
66
	overflow:hidden;
67
	float:right;
68
	display:none;
69
}
70
 
71
.dojoxFloatingResizeHandle {
72
	background:url('icons/resize.png') no-repeat bottom right;
73
	position:absolute;
74
	right:0;
75
	bottom:0;
76
	width:16px;
77
	height:16px;
78
	cursor:nw-resize;
79
}
80
 
81
.dojoxFloatingCloseIcon {
82
	width:16px;
83
	height:16px;
84
	overflow:hidden;
85
	float:right;
86
	cursor:pointer;
87
}
88
.soria .dojoxFloatingCloseIcon {
89
	background:url('../../../dijit/themes/soria/images/arrows.png') no-repeat center center;
90
	background-position:-65px -1px;
91
}
92
.tundra .dojoxFloatingCloseIcon {
93
	background:url('../../../dijit/themes/tundra/images/tabClose.png') no-repeat center center;
94
}
95
 
96
/* our un-used dock styles for now */
97
.dojoxFloatingDockDefault {
98
	position:absolute;
99
	bottom:0px;
100
	left:0px;
101
	overflow:hidden;
102
	margin:0;
103
	margin-bottom:3px;
104
	padding:0px;
105
	width:100%;
106
	z-index:99; /* position the dock _just_ below the lowest pane */
107
 
108
	background:transparent;
109
	/* background-color:#fff;
110
	border-top:1px solid #ccc;
111
	*/
112
}
113
 
114
.dojoxDockList {
115
	padding: 0px;
116
	margin: 0px;
117
}
118
 
119
.dojoxDockRestoreButton {
120
	background:url('../../../dijit/themes/tundra/images/arrowUp.png') no-repeat center center;
121
	width:16px; height:16px;
122
	overflow:hidden;
123
	float:left;
124
	margin-top:2px;
125
}
126
 
127
.dojoxDockTitleNode {
128
	overflow:hidden;
129
}
130
 
131
/* Modifications */
132
 
133
.dojoxDock {
134
	display: block;
135
	border: 1px solid black;
136
	position: absolute;
137
	padding:0;
138
	margin:0;
139
	background:#fcfcfc;
140
}
141
 
142
.dojoxDockNode {
143
	border: 1px solid #adadad;
144
	border-radius: 2px;
145
	-webkit-border-radius: 2px;
146
	-moz-border-radius: 3px;
147
	cursor:pointer;
148
	list-style: none;
149
	padding: 2px;
150
	margin: 0px;
151
	height: 16px;
152
	width: auto;
153
	float: left;
154
	background: #fafafa url("images/floatTitleBarBg.gif") repeat-x bottom left;
155
}
156
.soria .dojoxDockNode {
157
	background:#b7cdee url("../../../dijit/themes/soria/images/gradientTopBg.png") repeat-x;
158
 
159
}
160
 
161
.dojoxFloatingPaneContent {
162
	overflow: auto;
163
	background-color: #fff;
164
	height: 100%;
165
	width:	100%;
166
}
167
 
168
.dojoxFloatingPaneCanvas {
169
	background-color:#fff;
170
}