Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 1
.tundra .dojoxGrid {
2
	position: relative;
3
	background-color: #e9e9e9;
4
	font-size: 0.85em; /* inherit font-family from dojo.css */
5
	-moz-outline-style: none;
6
	outline: none;
7
}
8
 
9
.tundra .dojoxGrid table {
10
	padding: 0;
11
}
12
 
13
.tundra .dojoxGrid td {
14
	-moz-outline: none;
15
}
16
 
17
/* master header */
18
 
19
.tundra .dojoxGrid-master-header {
20
	position: relative;
21
}
22
 
23
/* master view */
24
 
25
.tundra .dojoxGrid-master-view  {
26
	position: relative;
27
}
28
 
29
/* views */
30
 
31
.tundra .dojoxGrid-view {
32
	position: absolute;
33
	overflow: hidden;
34
}
35
 
36
/* header */
37
 
38
.tundra .dojoxGrid-header {
39
	position: absolute;
40
	overflow: hidden;
41
}
42
 
43
.tundra .dojoxGrid-header {
44
	background-color:  #e9e9e9;
45
}
46
 
47
.tundra .dojoxGrid-header table {
48
	text-align: center;
49
}
50
 
51
.tundra .dojoxGrid-header .dojoxGrid-cell-content {
52
	text-align: center;
53
}
54
 
55
.tundra .dojoxGrid-header .dojoxGrid-cell {
56
	border: 1px solid transparent;
57
	/* border-color: #F6F4EB #ACA899 #ACA899 #F6F4EB; */
58
	border-color: white #ACA899 #919191 white;
59
	background: url(../../../dijit/themes/tundra/images/tabEnabled.png) #e9e9e9 repeat-x top;
60
	padding-bottom: 2px;
61
}
62
 
63
.tundra .dojoxGrid-header .dojoxGrid-cell-over {
64
	background: url(../../../dijit/themes/tundra/images/tabHover.png) #e9e9e9 repeat-x top;
65
}
66
 
67
.tundra .dojoxGrid-sort-down {
68
	background: url(../../../dijit/themes/tundra/images/arrowDown.png) right no-repeat;
69
	padding-left: 0px;
70
	margin-left: 0px;
71
}
72
 
73
.tundra .dojoxGrid-sort-up {
74
	background: url(../../../dijit/themes/tundra/images/arrowUp.png) right no-repeat;
75
	padding-left: 0px;
76
	margin-left: 0px;
77
}
78
 
79
/* content */
80
 
81
.tundra .dojoxGrid-scrollbox {
82
	position: relative;
83
	overflow: scroll;
84
	background-color: #fefefe;
85
	width: 100%;
86
}
87
 
88
.tundra .dojoxGrid-content {
89
	position: relative;
90
	overflow: hidden;
91
	 -moz-outline-style: none;
92
	outline: none;
93
}
94
 
95
/* rowbar */
96
 
97
.tundra .dojoxGrid-rowbar {
98
	border: none;
99
	/*
100
	border-color: #F6F4EB #ACA899 #ACA899 #F6F4EB;
101
	*/
102
	background: url(images/tabEnabled_rotated.png) #e9e9e9 repeat-y right;
103
	border-right: 1px solid #cccccc;
104
	padding: 0px;
105
}
106
 
107
.tundra .dojoxGrid-rowbar-inner {
108
	border: none;
109
	border-bottom: 1px solid #cccccc;
110
}
111
 
112
.tundra .dojoxGrid-rowbar-over {
113
	background: url(images/tabHover_rotated.png) #e9e9e9 repeat-y right;
114
}
115
 
116
.tundra .dojoxGrid-rowbar-selected {
117
	background-color: #D9E8F9;
118
	background-image: none;
119
	background: url(../../../dijit/themes/tundra/images/tabDisabled.png) #dddddd repeat-x top;
120
	border-right: 1px solid #cccccc;
121
	background-position: center;
122
	background-repeat: no-repeat;
123
}
124
 
125
/* rows */
126
 
127
.tundra .dojoxGrid-row {
128
	position: relative;
129
	width: 9000em;
130
}
131
 
132
.tundra .dojoxGrid-row {
133
	border: none;
134
	border-left: none;
135
	border-right: none;
136
	background-color: white;
137
	border-top: none;
138
}
139
 
140
.tundra .dojoxGrid-row-over {
141
	border-top-color: #cccccc;
142
	border-bottom-color: #cccccc;
143
}
144
 
145
.tundra .dojoxGrid-row-over .dojoxGrid-cell {
146
	/* background-color: #e9e9e9; */
147
	background: url(../../../dijit/themes/tundra/images/tabEnabled.png) #e9e9e9 repeat-x top;
148
}
149
 
150
.tundra .dojoxGrid-row-odd {
151
	background-color: #f2f5f9;
152
	/*background-color: #F9F7E8;*/
153
}
154
 
155
.tundra .dojoxGrid-row-selected {
156
	background-color: #D9E8F9;
157
	/*
158
	background: url(../../../dijit/themes/tundra/images/tabDisabled.png) #dddddd repeat-x top;
159
	*/
160
}
161
 
162
.tundra .dojoxGrid-row-table {
163
	table-layout: fixed;
164
	width: 0;
165
}
166
 
167
.tundra .dojoxGrid-invisible {
168
	visibility: hidden;
169
}
170
 
171
.tundra .Xdojo-ie .dojoxGrid-invisible {
172
	display: none;
173
}
174
 
175
.tundra .dojoxGrid-invisible td, .dojoxGrid-header .dojoxGrid-invisible td {
176
	border-top-width: 0;
177
	border-bottom-width: 0;
178
	padding-top: 0;
179
	padding-bottom: 0;
180
	height: 0;
181
	overflow: hidden;
182
}
183
 
184
/* cells */
185
 
186
.tundra .dojoxGrid-cell {
187
	border: 1px solid transparent;
188
	border-right: 1px solid #D5CDB5;
189
	padding: 3px 3px 3px 3px;
190
	text-align: left;
191
	overflow: hidden;
192
}
193
 
194
.dj_ie6 .tundra .dojoxGrid-cell {
195
	border: 1px solid white;
196
	border-right: 1px solid #D5CDB5;
197
}
198
 
199
.tundra .dojoxGrid-cell-focus {
200
	border: 1px dotted #a6a6a6;
201
}
202
 
203
.tundra .dojoxGrid-cell-over {
204
	border: 1px dotted #a6a6a6;
205
}
206
 
207
.tundra .dojoxGrid-cell-focus.dojoxGrid-cell-over {
208
	border: 1px dotted #595959;
209
}
210
 
211
.tundra .dojoxGrid-cell-clip {
212
	width: 100%;
213
	overflow: hidden;
214
	white-space:nowrap;
215
	text-overflow: ellipsis;
216
}
217
 
218
/* editing */
219
 
220
/* FIXME: these colors are off! */
221
.tundra .dojoxGrid-row-editing td {
222
	/* background-color: #F4FFF4; */
223
	background: #f1f6fc url(../../../dijit/themes/tundra/images/buttonHover.png) repeat-x bottom;
224
	/* padding: 0px 3px 0px 3px; */
225
}
226
 
227
.tundra .dojoxGrid-row-inserting td {
228
	background-color: #F4FFF4;
229
}
230
.tundra .dojoxGrid-row-inflight td {
231
	background-color: #F2F7B7;
232
}
233
.tundra .dojoxGrid-row-error td {
234
	background-color: #F8B8B6;
235
}
236
 
237
.tundra .dojoxGrid-input,
238
.tundra .dojoxGrid-select,
239
.tundra .dojoxGrid-textarea {
240
	margin: 0;
241
	padding: 0px;
242
	border-style: none;
243
	width: 100%;
244
	font-size: 100%;
245
	font-family: inherit;
246
}
247
 
248
.dojoxGrid-hidden-focus {
249
	position: absolute;
250
	left: -1000px;
251
	top: -1000px;
252
	height: 0px, width: 0px;
253
}