widget_list 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +35 -35
- data/Gemfile +3 -3
- data/LICENSE.txt +21 -21
- data/README.md +736 -728
- data/Rakefile +1 -1
- data/app/views/widget_list/_condition_fields.html.erb +0 -0
- data/app/views/widget_list/_ransack_fields.html.erb +0 -0
- data/app/views/widget_list/_ransack_widget_list_advanced_search.html.erb +0 -0
- data/app/views/widget_list/administration/_button_row.html.erb +13 -13
- data/app/views/widget_list/administration/_checkbox_row.html.erb +18 -18
- data/app/views/widget_list/administration/_field_row.html.erb +11 -11
- data/app/views/widget_list/administration/_output.html.erb +1100 -1100
- data/app/views/widget_list/administration/_output_save.html.erb +1 -1
- data/app/views/widget_list/list_partials/_col.html.erb +0 -0
- data/app/views/widget_list/list_partials/_list_description.html.erb +2 -2
- data/app/views/widget_list/list_partials/_no_sort_column.html.erb +0 -0
- data/app/views/widget_list/list_partials/_outer_shell.html.erb +0 -0
- data/app/views/widget_list/list_partials/_pagination_jump_active.html.erb +0 -0
- data/app/views/widget_list/list_partials/_pagination_jump_unactive.html.erb +0 -0
- data/app/views/widget_list/list_partials/_pagination_next_active.html.erb +0 -0
- data/app/views/widget_list/list_partials/_pagination_next_disabled.html.erb +0 -0
- data/app/views/widget_list/list_partials/_pagination_previous_active.html.erb +0 -0
- data/app/views/widget_list/list_partials/_pagination_previous_disabled.html.erb +0 -0
- data/app/views/widget_list/list_partials/_pagination_wrapper.html.erb +0 -0
- data/app/views/widget_list/list_partials/_row.html.erb +0 -0
- data/app/views/widget_list/list_partials/_sequence.html.erb +0 -0
- data/app/views/widget_list/list_partials/_sort_column.html.erb +0 -0
- data/checkin_gem.sh +0 -0
- data/lib/extensions/action_controller_base.rb +33 -33
- data/lib/widget_list.rb +4685 -4389
- data/lib/widget_list/engine.rb +8 -8
- data/lib/widget_list/hash.rb +113 -113
- data/lib/widget_list/md5.rb +18 -18
- data/lib/widget_list/railtie.rb +42 -42
- data/lib/widget_list/sequel.rb +287 -218
- data/lib/widget_list/string.rb +41 -41
- data/lib/widget_list/tpl.rb +185 -185
- data/lib/widget_list/utils.rb +92 -92
- data/lib/widget_list/version.rb +3 -3
- data/lib/widget_list/widgets.rb +756 -756
- data/publish_gem.sh +37 -37
- data/vendor/assets/images/gobblecons/README.rtf +127 -127
- data/vendor/assets/javascripts/widget_list.js +795 -795
- data/vendor/assets/stylesheets/widget_list.css +813 -813
- data/vendor/assets/stylesheets/widgets.css +116 -116
- data/widget_list.gemspec +38 -38
- metadata +63 -54
@@ -1,813 +1,813 @@
|
|
1
|
-
.widget_list_outer
|
2
|
-
{
|
3
|
-
padding-left: 6px;
|
4
|
-
padding-right: 13px;
|
5
|
-
}
|
6
|
-
|
7
|
-
.horizontal_rule
|
8
|
-
{
|
9
|
-
margin:10px 0 10px;
|
10
|
-
padding:0;
|
11
|
-
background: #494949;
|
12
|
-
height:3px;
|
13
|
-
}
|
14
|
-
|
15
|
-
table.widget_list
|
16
|
-
{
|
17
|
-
border: 1px solid #CCCCCC;
|
18
|
-
}
|
19
|
-
|
20
|
-
|
21
|
-
table.widget_list tbody tr td span
|
22
|
-
{
|
23
|
-
width:auto;
|
24
|
-
}
|
25
|
-
|
26
|
-
/**
|
27
|
-
* Large Buttons
|
28
|
-
*/
|
29
|
-
div.btn_outer
|
30
|
-
{
|
31
|
-
position:relative;
|
32
|
-
background: transparent url('../assets/images/buttons/regular/green/rightside-regular-btn.png') no-repeat scroll top right;
|
33
|
-
display: inline;
|
34
|
-
float: left;
|
35
|
-
font: normal 12px arial, sans-serif;
|
36
|
-
height: 27px;
|
37
|
-
padding-right: 13px;
|
38
|
-
text-decoration: none;
|
39
|
-
cursor:pointer;
|
40
|
-
padding-left:3px;
|
41
|
-
}
|
42
|
-
|
43
|
-
div.btn_outer div.btn_inner
|
44
|
-
{
|
45
|
-
background: transparent url('../assets/images/buttons/regular/green/leftside-regular-btn.png') no-repeat;
|
46
|
-
display: block;
|
47
|
-
line-height: 14px;
|
48
|
-
padding: 5px 0 0px 12px;
|
49
|
-
height: 22px;
|
50
|
-
}
|
51
|
-
|
52
|
-
div.btn_outer:active div.btn_inner
|
53
|
-
{
|
54
|
-
background-position: bottom left;
|
55
|
-
outline: none;
|
56
|
-
}
|
57
|
-
|
58
|
-
div.btn_outer:active
|
59
|
-
{
|
60
|
-
background-position: bottom right;
|
61
|
-
outline: none;
|
62
|
-
}
|
63
|
-
|
64
|
-
div.btn_outer div.btn_inner div.text
|
65
|
-
{
|
66
|
-
line-height: 14px;
|
67
|
-
height: 26px;
|
68
|
-
color:#666666;
|
69
|
-
left:0;
|
70
|
-
top:1px;
|
71
|
-
font-size:14px;
|
72
|
-
font-weight:600;
|
73
|
-
position: relative;
|
74
|
-
}
|
75
|
-
|
76
|
-
div.btn_outer div.btn_inner div.textShadow
|
77
|
-
{
|
78
|
-
line-height: 14px;
|
79
|
-
height: 26px;
|
80
|
-
color:#FFFFFF;
|
81
|
-
left:0px;
|
82
|
-
font-size:14px;
|
83
|
-
font-weight:600;
|
84
|
-
margin-top: -26px;
|
85
|
-
position: relative;
|
86
|
-
}
|
87
|
-
|
88
|
-
/**
|
89
|
-
* Small Buttons
|
90
|
-
*/
|
91
|
-
div.btn_sml_outer
|
92
|
-
{
|
93
|
-
position:relative;
|
94
|
-
background: transparent url('../assets/images/buttons/small/green/rightside-small-btn.png') no-repeat scroll top right;
|
95
|
-
display: inline;
|
96
|
-
float: left;
|
97
|
-
font: normal 12px arial, sans-serif;
|
98
|
-
height: 19px;
|
99
|
-
padding-right: 13px;
|
100
|
-
text-decoration: none;
|
101
|
-
cursor:pointer;
|
102
|
-
padding-left:3px;
|
103
|
-
}
|
104
|
-
|
105
|
-
div.btn_sml_outer div.btn_sml_inner
|
106
|
-
{
|
107
|
-
background: transparent url('../assets/images/buttons/small/green/leftside-small-btn.png') no-repeat;
|
108
|
-
display: block;
|
109
|
-
line-height: 8px;
|
110
|
-
padding: 5px 0 0px 8px;
|
111
|
-
height: 14px;
|
112
|
-
}
|
113
|
-
|
114
|
-
div.btn_sml_outer:active div.btn_sml_inner
|
115
|
-
{
|
116
|
-
background-position: bottom left;
|
117
|
-
outline: none;
|
118
|
-
}
|
119
|
-
|
120
|
-
div.btn_sml_outer:active
|
121
|
-
{
|
122
|
-
background-position: bottom right;
|
123
|
-
outline: none;
|
124
|
-
}
|
125
|
-
|
126
|
-
div.btn_sml_outer div.btn_sml_inner div.text
|
127
|
-
{
|
128
|
-
line-height: 12px;
|
129
|
-
height: 20px;
|
130
|
-
color:#666666;
|
131
|
-
left:2px;
|
132
|
-
top: -2px;
|
133
|
-
font-size:11px;
|
134
|
-
font-weight:800;
|
135
|
-
position: relative;
|
136
|
-
}
|
137
|
-
|
138
|
-
div.btn_sml_outer div.btn_sml_inner div.textShadow
|
139
|
-
{
|
140
|
-
line-height: 12px;
|
141
|
-
height: 20px;
|
142
|
-
color:#FFFFFF;
|
143
|
-
left:2px;
|
144
|
-
font-size:11px;
|
145
|
-
font-weight:800;
|
146
|
-
margin-top: -23px;
|
147
|
-
position: relative;
|
148
|
-
}
|
149
|
-
|
150
|
-
div.widgetSearchBox span.right input
|
151
|
-
{
|
152
|
-
border: none;
|
153
|
-
padding: 2px !important;
|
154
|
-
margin: 3px 10px;
|
155
|
-
width: 175px;
|
156
|
-
}
|
157
|
-
|
158
|
-
|
159
|
-
.tableBlowOutPreventer
|
160
|
-
{
|
161
|
-
width:100%;
|
162
|
-
word-wrap:break-word;
|
163
|
-
}
|
164
|
-
|
165
|
-
div.required
|
166
|
-
{
|
167
|
-
font-size:12px;
|
168
|
-
color:#b70a0a;
|
169
|
-
padding:4px;
|
170
|
-
display:inline;
|
171
|
-
top:6px;
|
172
|
-
position:relative
|
173
|
-
}
|
174
|
-
|
175
|
-
.buttonArea
|
176
|
-
{
|
177
|
-
/*background: url("../assets/images/grad.png") repeat-x scroll 0 0 transparent;*/
|
178
|
-
background-color:#ececec ;
|
179
|
-
height:50px;
|
180
|
-
text-align:right;
|
181
|
-
width:100%;
|
182
|
-
}
|
183
|
-
|
184
|
-
.buttonArea .container
|
185
|
-
{
|
186
|
-
float:right;
|
187
|
-
margin-top:10px;
|
188
|
-
margin-right:10px;
|
189
|
-
}
|
190
|
-
|
191
|
-
/*
|
192
|
-
* Legacy Pagination
|
193
|
-
*/
|
194
|
-
|
195
|
-
.summary .header
|
196
|
-
{
|
197
|
-
background: url("../assets/images/head-gradient.gif") repeat-x scroll 0 0 transparent;
|
198
|
-
height:23px;
|
199
|
-
font-size:14px;
|
200
|
-
font-weight:800;
|
201
|
-
}
|
202
|
-
|
203
|
-
.goback
|
204
|
-
{
|
205
|
-
background: url('../assets/images/gobblecons/teal/share-arrows-24-left.png') no-repeat;
|
206
|
-
margin-right: 15px;
|
207
|
-
width: 24px;
|
208
|
-
height: 19px;
|
209
|
-
cursor: pointer;
|
210
|
-
float: left;
|
211
|
-
}
|
212
|
-
|
213
|
-
ul#pagination
|
214
|
-
{
|
215
|
-
float:left;
|
216
|
-
padding:0;
|
217
|
-
top:0;
|
218
|
-
font-size: 12px;
|
219
|
-
}
|
220
|
-
|
221
|
-
ul#pagination li
|
222
|
-
{
|
223
|
-
list-style:none;
|
224
|
-
display:inline;
|
225
|
-
}
|
226
|
-
|
227
|
-
ul#pagination li div
|
228
|
-
{
|
229
|
-
border:solid 0px #DDDDDD;
|
230
|
-
margin-right:2px;
|
231
|
-
margin-top:0px;
|
232
|
-
padding:2px 6px;
|
233
|
-
cursor:pointer;
|
234
|
-
display:inline-block;
|
235
|
-
}
|
236
|
-
|
237
|
-
ul#pagination li div.active
|
238
|
-
{
|
239
|
-
background-color:#CCCCCC;
|
240
|
-
}
|
241
|
-
|
242
|
-
/*
|
243
|
-
* List container
|
244
|
-
*
|
245
|
-
*
|
246
|
-
*/
|
247
|
-
.listContainer, .listContainerPassive
|
248
|
-
{
|
249
|
-
border:0px solid #CCCCCC;
|
250
|
-
list-style:none;
|
251
|
-
padding:0px;
|
252
|
-
margin:0px;
|
253
|
-
position:relative;
|
254
|
-
}
|
255
|
-
|
256
|
-
.listContainer .listTitle, .listContainerPassive .listTitle
|
257
|
-
{
|
258
|
-
color:#636363;
|
259
|
-
font-size:18px;
|
260
|
-
font-weight:800;
|
261
|
-
background-color:#737373;
|
262
|
-
padding:14px;
|
263
|
-
background: transparent;
|
264
|
-
}
|
265
|
-
|
266
|
-
.listContainer table.list, .listContainerPassive table.widget_list
|
267
|
-
{
|
268
|
-
position:relative;
|
269
|
-
margin:0px;
|
270
|
-
padding:0px;
|
271
|
-
}
|
272
|
-
|
273
|
-
.listContainer table.widget_list tr.widget_list_header, .listContainerPassive table.widget_list tr.widget_list_header
|
274
|
-
{
|
275
|
-
color:#4B4B4B;
|
276
|
-
/*background-color:#acacac; */
|
277
|
-
font-size:13px;
|
278
|
-
font-weight:bold;
|
279
|
-
height:40px;
|
280
|
-
/*background: transparent url('../assets/images/catbar-bg.png') repeat-x bottom;*/
|
281
|
-
}
|
282
|
-
|
283
|
-
.listContainer table.widget_list td, .listContainerPassive table.widget_list td
|
284
|
-
{
|
285
|
-
padding:5px;
|
286
|
-
}
|
287
|
-
|
288
|
-
.listContainer #listPages, .listContainerPassive #listPages
|
289
|
-
{
|
290
|
-
position:relative;
|
291
|
-
float:left;
|
292
|
-
padding:0px;
|
293
|
-
width:100%;
|
294
|
-
border:0px solid red;
|
295
|
-
}
|
296
|
-
|
297
|
-
.listContainerPassive .listTitle
|
298
|
-
{
|
299
|
-
color:#636363;
|
300
|
-
font-size:18px;
|
301
|
-
font-weight:800;
|
302
|
-
background-color:#737373;
|
303
|
-
padding:14px;
|
304
|
-
background: transparent;
|
305
|
-
}
|
306
|
-
|
307
|
-
div#noListResults
|
308
|
-
{
|
309
|
-
padding:15px;
|
310
|
-
/*font-size:18px;
|
311
|
-
color:#636363; */
|
312
|
-
text-align:center
|
313
|
-
}
|
314
|
-
|
315
|
-
.ajaxLoad
|
316
|
-
{
|
317
|
-
background: #737373 url('../assets/images/list-loader.gif') no-repeat;
|
318
|
-
background-position:50% 50%;
|
319
|
-
position:absolute;
|
320
|
-
width:100%;
|
321
|
-
text-align:center;
|
322
|
-
z-index:10;
|
323
|
-
margin:0;
|
324
|
-
left:0px;
|
325
|
-
/* filter: alpha(opacity=40);
|
326
|
-
-khtml-opacity: 0.40;
|
327
|
-
-moz-opacity: 0.40;
|
328
|
-
opacity: 0.40;*/
|
329
|
-
}
|
330
|
-
|
331
|
-
.listContainerPassive table.widget_list td
|
332
|
-
{
|
333
|
-
padding:10px;
|
334
|
-
}
|
335
|
-
|
336
|
-
.listContainerPassive table.widget_list tr.widget_list_header
|
337
|
-
{
|
338
|
-
/*background: url("../assets/images/th_header.gif") repeat-x scroll left center transparent; */
|
339
|
-
padding: 4px;
|
340
|
-
text-align: center;
|
341
|
-
vertical-align: middle;
|
342
|
-
color:#494949;
|
343
|
-
background-color: #ececec;
|
344
|
-
font-size:13px;
|
345
|
-
}
|
346
|
-
|
347
|
-
/**
|
348
|
-
* Widget search
|
349
|
-
*/
|
350
|
-
div.widgetSearchBox
|
351
|
-
{
|
352
|
-
height:55px;
|
353
|
-
}
|
354
|
-
|
355
|
-
table.searchBox
|
356
|
-
{
|
357
|
-
border: 1px solid #CCCCCC;
|
358
|
-
width:500px;
|
359
|
-
height:100px;
|
360
|
-
padding:0px
|
361
|
-
}
|
362
|
-
|
363
|
-
table.searchBox td
|
364
|
-
{
|
365
|
-
padding:10px;
|
366
|
-
}
|
367
|
-
|
368
|
-
table.searchBox td.label
|
369
|
-
{
|
370
|
-
width:100px;
|
371
|
-
font-size:14px;
|
372
|
-
color:#494949;
|
373
|
-
}
|
374
|
-
|
375
|
-
.searchBox .header
|
376
|
-
{
|
377
|
-
background: none repeat scroll 0 0 #ECECEC;
|
378
|
-
color: #494949;
|
379
|
-
height: 30px;
|
380
|
-
margin: 0;
|
381
|
-
}
|
382
|
-
|
383
|
-
#pageSelectDropDown, #pageSelectDropDown2
|
384
|
-
{
|
385
|
-
padding:0px;
|
386
|
-
font-size: 12px;
|
387
|
-
border:1px solid #C0C0C0;
|
388
|
-
-moz-border-radius:0px;
|
389
|
-
-border-radius:0px;
|
390
|
-
-border-radius:0px;
|
391
|
-
-webkit-border-radius:0px;
|
392
|
-
padding:0px;
|
393
|
-
}
|
394
|
-
|
395
|
-
.btn.danger,
|
396
|
-
.alert-message.danger,
|
397
|
-
.btn.danger:hover,
|
398
|
-
.alert-message.danger:hover,
|
399
|
-
.btn.error,
|
400
|
-
.alert-message.error,
|
401
|
-
.btn.error:hover,
|
402
|
-
.alert-message.error:hover,
|
403
|
-
.btn.success,
|
404
|
-
.alert-message.success,
|
405
|
-
.btn.success:hover,
|
406
|
-
.alert-message.success:hover,
|
407
|
-
.btn.info,
|
408
|
-
.alert-message.info,
|
409
|
-
.btn.info:hover,
|
410
|
-
.alert-message.info:hover
|
411
|
-
{
|
412
|
-
color: #ffffff;
|
413
|
-
}
|
414
|
-
|
415
|
-
.btn.danger,
|
416
|
-
.alert-message.danger,
|
417
|
-
.btn.error,
|
418
|
-
.alert-message.error
|
419
|
-
{
|
420
|
-
background-color: #c43c35;
|
421
|
-
background-repeat: repeat-x;
|
422
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
423
|
-
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
424
|
-
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
425
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
|
426
|
-
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
427
|
-
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
428
|
-
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
429
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
|
430
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
431
|
-
border-color: #c43c35 #c43c35 #882a25;
|
432
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
433
|
-
}
|
434
|
-
|
435
|
-
.btn.success, .alert-message.success
|
436
|
-
{
|
437
|
-
background-color: #91b32b;
|
438
|
-
background-repeat: repeat-x;
|
439
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#97C900), to(#91b32b));
|
440
|
-
background-image: -moz-linear-gradient(top, #97C900, #91b32b);
|
441
|
-
background-image: -ms-linear-gradient(top, #97C900, #91b32b);
|
442
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #97C900), color-stop(100%, #91b32b));
|
443
|
-
background-image: -webkit-linear-gradient(top, #97C900, #91b32b);
|
444
|
-
background-image: -o-linear-gradient(top, #97C900, #91b32b);
|
445
|
-
background-image: linear-gradient(top, #97C900, #91b32b);
|
446
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#97C900', endColorstr='#91b32b', GradientType=0);
|
447
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
448
|
-
border-color: #91b32b #91b32b #97C900;
|
449
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
450
|
-
}
|
451
|
-
|
452
|
-
|
453
|
-
.btn.info, .alert-message.info
|
454
|
-
{
|
455
|
-
background-color: #339bb9;
|
456
|
-
background-repeat: repeat-x;
|
457
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
|
458
|
-
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
459
|
-
background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
|
460
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
|
461
|
-
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
462
|
-
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
463
|
-
background-image: linear-gradient(top, #5bc0de, #339bb9);
|
464
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
|
465
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
466
|
-
border-color: #339bb9 #339bb9 #22697d;
|
467
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
468
|
-
}
|
469
|
-
|
470
|
-
a.btn
|
471
|
-
{
|
472
|
-
cursor: pointer;
|
473
|
-
display: inline-block;
|
474
|
-
background-color: #e6e6e6;
|
475
|
-
background-repeat: no-repeat;
|
476
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
|
477
|
-
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
478
|
-
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
|
479
|
-
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
480
|
-
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
481
|
-
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
482
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
|
483
|
-
padding: 5px 14px 6px;
|
484
|
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
485
|
-
color: #333;
|
486
|
-
font-size: 13px;
|
487
|
-
line-height: normal;
|
488
|
-
border: 1px solid #ccc;
|
489
|
-
border-bottom-color: #bbb;
|
490
|
-
-webkit-border-radius: 4px;
|
491
|
-
-moz-border-radius: 4px;
|
492
|
-
border-radius: 4px;
|
493
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
494
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
495
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
496
|
-
-webkit-transition: 0.1s linear all;
|
497
|
-
-moz-transition: 0.1s linear all;
|
498
|
-
transition: 0.1s linear all;
|
499
|
-
text-decoration: none;
|
500
|
-
position:relative;
|
501
|
-
margin-left:2px;
|
502
|
-
}
|
503
|
-
|
504
|
-
|
505
|
-
.btn:hover
|
506
|
-
{
|
507
|
-
background-position: 0 -15px;
|
508
|
-
color: #333;
|
509
|
-
text-decoration: none;
|
510
|
-
}
|
511
|
-
|
512
|
-
|
513
|
-
.btn.primary
|
514
|
-
{
|
515
|
-
color: #fff;
|
516
|
-
background-color: #0064cd;
|
517
|
-
background-repeat: repeat-x;
|
518
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
|
519
|
-
background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
|
520
|
-
background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
|
521
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
|
522
|
-
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
|
523
|
-
background-image: -o-linear-gradient(top, #049cdb, #0064cd);
|
524
|
-
background-image: linear-gradient(top, #049cdb, #0064cd);
|
525
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
|
526
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
527
|
-
border-color: #0064cd #0064cd #003f81;
|
528
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
529
|
-
}
|
530
|
-
|
531
|
-
.btn:active
|
532
|
-
{
|
533
|
-
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
534
|
-
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
535
|
-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
536
|
-
}
|
537
|
-
|
538
|
-
.btn.disabled
|
539
|
-
{
|
540
|
-
cursor: default;
|
541
|
-
background-image: none;
|
542
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
543
|
-
filter: alpha(opacity=65);
|
544
|
-
-khtml-opacity: 0.65;
|
545
|
-
-moz-opacity: 0.65;
|
546
|
-
opacity: 0.65;
|
547
|
-
-webkit-box-shadow: none;
|
548
|
-
-moz-box-shadow: none;
|
549
|
-
box-shadow: none;
|
550
|
-
}
|
551
|
-
|
552
|
-
|
553
|
-
.btn[disabled]
|
554
|
-
{
|
555
|
-
cursor: default;
|
556
|
-
background-image: none;
|
557
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
558
|
-
filter: alpha(opacity=65);
|
559
|
-
-khtml-opacity: 0.65;
|
560
|
-
-moz-opacity: 0.65;
|
561
|
-
opacity: 0.65;
|
562
|
-
-webkit-box-shadow: none;
|
563
|
-
-moz-box-shadow: none;
|
564
|
-
box-shadow: none;
|
565
|
-
}
|
566
|
-
|
567
|
-
.btn.large
|
568
|
-
{
|
569
|
-
font-size: 16px;
|
570
|
-
line-height: normal;
|
571
|
-
padding: 9px 14px 9px;
|
572
|
-
-webkit-border-radius: 6px;
|
573
|
-
-moz-border-radius: 6px;
|
574
|
-
border-radius: 6px;
|
575
|
-
}
|
576
|
-
|
577
|
-
|
578
|
-
.btn.small
|
579
|
-
{
|
580
|
-
padding: 4px 9px 4px;
|
581
|
-
font-size: 11px;
|
582
|
-
font-weight: normal !important;
|
583
|
-
}
|
584
|
-
|
585
|
-
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner
|
586
|
-
{
|
587
|
-
padding: 0;
|
588
|
-
border: 0;
|
589
|
-
}
|
590
|
-
|
591
|
-
/**
|
592
|
-
* Dynamic width imput fields
|
593
|
-
*
|
594
|
-
* The max width that is supported for an input field is 708px using input_text_left.png
|
595
|
-
*/
|
596
|
-
div.inputOuter
|
597
|
-
{
|
598
|
-
position:relative;
|
599
|
-
background: transparent url('../assets/images/input_text_right.png') no-repeat scroll top right;
|
600
|
-
display: inline-block;
|
601
|
-
height: 27px;
|
602
|
-
line-height: 27px;
|
603
|
-
padding-right: 6px;
|
604
|
-
text-decoration: none;
|
605
|
-
}
|
606
|
-
|
607
|
-
|
608
|
-
div.inputOuter .inputInner {position:relative;background: transparent url('../assets/images/input_text_left.png') no-repeat scroll top left;border: none;height: 27px;line-height: 27px;padding-left: 6px;width: auto;padding-right: 7px;}
|
609
|
-
div.inputOuter .inputInner input {margin:6px 0 0 6px;border:none;background:transparent;width:100%}
|
610
|
-
div.inputOuter .inputInner input.search-ahead {width:97%}
|
611
|
-
|
612
|
-
/**
|
613
|
-
* Input box with an initial message
|
614
|
-
*/
|
615
|
-
.info-input {}
|
616
|
-
.info-input-field-active{font-style: normal;}
|
617
|
-
.info-input-field-inactive{color: #b4b3b3;font-style: italic;}
|
618
|
-
|
619
|
-
/**
|
620
|
-
* Avanced Search Template Container - most outer wrapper
|
621
|
-
*/
|
622
|
-
.widget-search-drilldown {border:2px solid #dadada;border-top:none;box-shadow: 0 2px 4px #c0c0c0;padding: 4px 0px 4px 4px;position: absolute;width: 98%;z-index: 1000;background-color:#FFFFFF;display:none;margin-left:1px;}
|
623
|
-
|
624
|
-
/**
|
625
|
-
* Advanced Search Down Arrow
|
626
|
-
*/
|
627
|
-
.widget-search-arrow {background: url('../assets/images/gobblecons/mid-gray/arrow-16.png') no-repeat scroll 0px 0px transparent;float:right;margin:8px;position: relative;right:-23px;top:-30px;cursor:pointer;border:0px solid red;height:20px;width:20px;display:none}
|
628
|
-
.widget-search-arrow:hover {background: url('../assets/images/gobblecons/mid-gray/arrow-16.png') no-repeat scroll 0px 0px transparent;}
|
629
|
-
|
630
|
-
/**
|
631
|
-
* Search Ahead Magifier Glass
|
632
|
-
*/
|
633
|
-
.widget-search-magnifier {background: url('../assets/images/gobblecons/mid-gray/search-16.png') no-repeat scroll 0px 0px transparent;float:right;margin:7px;position: relative;right:-13px;top:-30px;cursor:pointer;border:0px solid red;height:20px;width:20px}
|
634
|
-
.widget-search-magnifier:hover {background: url('../assets/images/gobblecons/mid-gray/search-16.png') no-repeat scroll 0px 0px transparent}
|
635
|
-
|
636
|
-
/**
|
637
|
-
* Advanced Search Close Button
|
638
|
-
*/
|
639
|
-
.widget-search-drilldown-close {font-weight:900;font-size:12px; color:#494949;float:right;cursor:pointer;padding:4px;margin-right:10px;top:20px;position:relative;line-height: 0px;}
|
640
|
-
.widget-search-drilldown-close:hover {color:#C0C0C0;}
|
641
|
-
|
642
|
-
/**
|
643
|
-
* Avanced Search Template Components
|
644
|
-
*
|
645
|
-
* .widget-search-outer must be greater than the z-index of .ajaxLoad which is current 10
|
646
|
-
*/
|
647
|
-
.widget-search-outer {z-index: 11;margin-bottom: 10px;}
|
648
|
-
div#advanced-search-container {height:100%;}
|
649
|
-
div#advanced-search-container h3 {color:#868686;}
|
650
|
-
|
651
|
-
.advanced-search-from-date-img, .advanced-search-to-date-img {margin-left:-28px;margin-top:0px;position:relative;top:3px;line-height: 0px;}
|
652
|
-
|
653
|
-
/**
|
654
|
-
* Search Ahead Content Results
|
655
|
-
*/
|
656
|
-
.widget-search-content {padding:4px;}
|
657
|
-
.widget-search-content div.row {padding:4px;}
|
658
|
-
.widget-search-results-row {padding:6px;cursor:pointer;}
|
659
|
-
.widget-search-results-row:hover {background-color:#dadada;}
|
660
|
-
.widget-search-results-row-selected {background-color:#dadada;}
|
661
|
-
|
662
|
-
/**
|
663
|
-
* Advanced search overrides
|
664
|
-
*/
|
665
|
-
.widget-search-arrow-advanced {display:block;right:15px}
|
666
|
-
.widget-search-arrow-advanced-no-search {display:block;right:-10px;}
|
667
|
-
.widget-search-magnifier-advanced {right:-44px}
|
668
|
-
div.inputOuter .inputInner input.search-ahead-advanced {width: 90% !important;}
|
669
|
-
|
670
|
-
|
671
|
-
/*
|
672
|
-
* Pagination
|
673
|
-
*/
|
674
|
-
.pagination
|
675
|
-
{
|
676
|
-
float:left;
|
677
|
-
text-align:left;
|
678
|
-
width:100%;
|
679
|
-
margin:0px;
|
680
|
-
padding:0px;
|
681
|
-
}
|
682
|
-
|
683
|
-
.pagination div
|
684
|
-
{
|
685
|
-
margin:auto;
|
686
|
-
float:left;
|
687
|
-
margin:0px;
|
688
|
-
padding:0px;
|
689
|
-
}
|
690
|
-
|
691
|
-
.page_legacy li
|
692
|
-
{
|
693
|
-
display:inline;
|
694
|
-
}
|
695
|
-
|
696
|
-
.page_legacy li span
|
697
|
-
{
|
698
|
-
border:solid 0px #DDDDDD;
|
699
|
-
margin-right:2px;
|
700
|
-
margin-top:0px;
|
701
|
-
padding:2px 6px;
|
702
|
-
display:inline;
|
703
|
-
}
|
704
|
-
|
705
|
-
.page_legacy li span.active
|
706
|
-
{
|
707
|
-
background-color:#CCCCCC;
|
708
|
-
}
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
/**
|
713
|
-
* Widgetlist checkboxes
|
714
|
-
*/
|
715
|
-
.widgetlist-checkbox {width:20px;}
|
716
|
-
.widgetlist-checkbox-header span input {text-align:left !important;width:inherit;}
|
717
|
-
|
718
|
-
/**
|
719
|
-
* Widgetlist checkboxes header
|
720
|
-
*/
|
721
|
-
.widgetlist-checkbox-input {width:20px !important}
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
/*
|
726
|
-
* Legacy Pagination
|
727
|
-
*/
|
728
|
-
ul#pagination
|
729
|
-
{
|
730
|
-
float:left;
|
731
|
-
padding:0;
|
732
|
-
top:0;
|
733
|
-
font-size: 12px;
|
734
|
-
}
|
735
|
-
|
736
|
-
ul#pagination li
|
737
|
-
{
|
738
|
-
list-style:none;
|
739
|
-
display:inline;
|
740
|
-
}
|
741
|
-
|
742
|
-
ul#pagination li div
|
743
|
-
{
|
744
|
-
border:solid 0px #DDDDDD;
|
745
|
-
margin-right:2px;
|
746
|
-
margin-top:0px;
|
747
|
-
padding:2px 6px;
|
748
|
-
cursor:pointer;
|
749
|
-
display:inline-block;
|
750
|
-
}
|
751
|
-
|
752
|
-
ul#pagination li div.active
|
753
|
-
{
|
754
|
-
background-color:#CCCCCC;
|
755
|
-
}
|
756
|
-
|
757
|
-
/*
|
758
|
-
* Pagination
|
759
|
-
*/
|
760
|
-
.page_legacy li
|
761
|
-
{
|
762
|
-
display:inline;
|
763
|
-
}
|
764
|
-
|
765
|
-
.page_legacy li span
|
766
|
-
{
|
767
|
-
border:solid 0px #DDDDDD;
|
768
|
-
margin-right:2px;
|
769
|
-
margin-top:0px;
|
770
|
-
padding:2px 6px;
|
771
|
-
display:inline;
|
772
|
-
}
|
773
|
-
|
774
|
-
.page_legacy li span.active
|
775
|
-
{
|
776
|
-
background-color:#CCCCCC;
|
777
|
-
}
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
/**
|
782
|
-
* Search form
|
783
|
-
*/
|
784
|
-
div#advanced-search-container ul.advanced-search-container-inline, div#advanced-search-container ul {list-style:none; margin:0px; padding:3px; width:450px}
|
785
|
-
div#advanced-search-container ul.advanced-search-container-inline input.info-input, div#advanced-search-container ul input.info-input {font-size:11px}
|
786
|
-
div#advanced-search-container ul.advanced-search-container-inline li {display:inline-block;width:428px; margin-top:4px;}
|
787
|
-
div#advanced-search-container ul.advanced-search-container-inline li#required_message_inline {font-size:10px}
|
788
|
-
div#advanced-search-container ul.advanced-search-container-inline li#required_message_inline div.required {top:4px}
|
789
|
-
div#advanced-search-container ul#search_columns li {width:428px}
|
790
|
-
|
791
|
-
|
792
|
-
/**
|
793
|
-
* IE7 fixes (hopefully this works with *+html selector)
|
794
|
-
*/
|
795
|
-
|
796
|
-
/**
|
797
|
-
* Select box global
|
798
|
-
*/
|
799
|
-
*+html div.select-outer {display:inline}
|
800
|
-
|
801
|
-
/**
|
802
|
-
* MultiSelect box global
|
803
|
-
*/
|
804
|
-
*+html div.select-outer-multiple div.select-inner-multiple select {height:130px}
|
805
|
-
*+html div.select-outer-multiple div.select-inner-multiple {margin-right:-9px !important;}
|
806
|
-
|
807
|
-
/**
|
808
|
-
* Widgetlist Pagination
|
809
|
-
*/
|
810
|
-
.page_legacy {width:600px; left:0; margin-left:0;}
|
811
|
-
*+html ul#pagination li div {display:inline}
|
812
|
-
*+html ul#pagination li div.select-outer {background: url("../assets/images/input_text_right.png") no-repeat scroll right 2px transparent;}
|
813
|
-
*+html ul#pagination li div.select-outer div.select-inner select {margin-top: -4px !important;}
|
1
|
+
.widget_list_outer
|
2
|
+
{
|
3
|
+
padding-left: 6px;
|
4
|
+
padding-right: 13px;
|
5
|
+
}
|
6
|
+
|
7
|
+
.horizontal_rule
|
8
|
+
{
|
9
|
+
margin:10px 0 10px;
|
10
|
+
padding:0;
|
11
|
+
background: #494949;
|
12
|
+
height:3px;
|
13
|
+
}
|
14
|
+
|
15
|
+
table.widget_list
|
16
|
+
{
|
17
|
+
border: 1px solid #CCCCCC;
|
18
|
+
}
|
19
|
+
|
20
|
+
|
21
|
+
table.widget_list tbody tr td span
|
22
|
+
{
|
23
|
+
width:auto;
|
24
|
+
}
|
25
|
+
|
26
|
+
/**
|
27
|
+
* Large Buttons
|
28
|
+
*/
|
29
|
+
div.btn_outer
|
30
|
+
{
|
31
|
+
position:relative;
|
32
|
+
background: transparent url('../assets/images/buttons/regular/green/rightside-regular-btn.png') no-repeat scroll top right;
|
33
|
+
display: inline;
|
34
|
+
float: left;
|
35
|
+
font: normal 12px arial, sans-serif;
|
36
|
+
height: 27px;
|
37
|
+
padding-right: 13px;
|
38
|
+
text-decoration: none;
|
39
|
+
cursor:pointer;
|
40
|
+
padding-left:3px;
|
41
|
+
}
|
42
|
+
|
43
|
+
div.btn_outer div.btn_inner
|
44
|
+
{
|
45
|
+
background: transparent url('../assets/images/buttons/regular/green/leftside-regular-btn.png') no-repeat;
|
46
|
+
display: block;
|
47
|
+
line-height: 14px;
|
48
|
+
padding: 5px 0 0px 12px;
|
49
|
+
height: 22px;
|
50
|
+
}
|
51
|
+
|
52
|
+
div.btn_outer:active div.btn_inner
|
53
|
+
{
|
54
|
+
background-position: bottom left;
|
55
|
+
outline: none;
|
56
|
+
}
|
57
|
+
|
58
|
+
div.btn_outer:active
|
59
|
+
{
|
60
|
+
background-position: bottom right;
|
61
|
+
outline: none;
|
62
|
+
}
|
63
|
+
|
64
|
+
div.btn_outer div.btn_inner div.text
|
65
|
+
{
|
66
|
+
line-height: 14px;
|
67
|
+
height: 26px;
|
68
|
+
color:#666666;
|
69
|
+
left:0;
|
70
|
+
top:1px;
|
71
|
+
font-size:14px;
|
72
|
+
font-weight:600;
|
73
|
+
position: relative;
|
74
|
+
}
|
75
|
+
|
76
|
+
div.btn_outer div.btn_inner div.textShadow
|
77
|
+
{
|
78
|
+
line-height: 14px;
|
79
|
+
height: 26px;
|
80
|
+
color:#FFFFFF;
|
81
|
+
left:0px;
|
82
|
+
font-size:14px;
|
83
|
+
font-weight:600;
|
84
|
+
margin-top: -26px;
|
85
|
+
position: relative;
|
86
|
+
}
|
87
|
+
|
88
|
+
/**
|
89
|
+
* Small Buttons
|
90
|
+
*/
|
91
|
+
div.btn_sml_outer
|
92
|
+
{
|
93
|
+
position:relative;
|
94
|
+
background: transparent url('../assets/images/buttons/small/green/rightside-small-btn.png') no-repeat scroll top right;
|
95
|
+
display: inline;
|
96
|
+
float: left;
|
97
|
+
font: normal 12px arial, sans-serif;
|
98
|
+
height: 19px;
|
99
|
+
padding-right: 13px;
|
100
|
+
text-decoration: none;
|
101
|
+
cursor:pointer;
|
102
|
+
padding-left:3px;
|
103
|
+
}
|
104
|
+
|
105
|
+
div.btn_sml_outer div.btn_sml_inner
|
106
|
+
{
|
107
|
+
background: transparent url('../assets/images/buttons/small/green/leftside-small-btn.png') no-repeat;
|
108
|
+
display: block;
|
109
|
+
line-height: 8px;
|
110
|
+
padding: 5px 0 0px 8px;
|
111
|
+
height: 14px;
|
112
|
+
}
|
113
|
+
|
114
|
+
div.btn_sml_outer:active div.btn_sml_inner
|
115
|
+
{
|
116
|
+
background-position: bottom left;
|
117
|
+
outline: none;
|
118
|
+
}
|
119
|
+
|
120
|
+
div.btn_sml_outer:active
|
121
|
+
{
|
122
|
+
background-position: bottom right;
|
123
|
+
outline: none;
|
124
|
+
}
|
125
|
+
|
126
|
+
div.btn_sml_outer div.btn_sml_inner div.text
|
127
|
+
{
|
128
|
+
line-height: 12px;
|
129
|
+
height: 20px;
|
130
|
+
color:#666666;
|
131
|
+
left:2px;
|
132
|
+
top: -2px;
|
133
|
+
font-size:11px;
|
134
|
+
font-weight:800;
|
135
|
+
position: relative;
|
136
|
+
}
|
137
|
+
|
138
|
+
div.btn_sml_outer div.btn_sml_inner div.textShadow
|
139
|
+
{
|
140
|
+
line-height: 12px;
|
141
|
+
height: 20px;
|
142
|
+
color:#FFFFFF;
|
143
|
+
left:2px;
|
144
|
+
font-size:11px;
|
145
|
+
font-weight:800;
|
146
|
+
margin-top: -23px;
|
147
|
+
position: relative;
|
148
|
+
}
|
149
|
+
|
150
|
+
div.widgetSearchBox span.right input
|
151
|
+
{
|
152
|
+
border: none;
|
153
|
+
padding: 2px !important;
|
154
|
+
margin: 3px 10px;
|
155
|
+
width: 175px;
|
156
|
+
}
|
157
|
+
|
158
|
+
|
159
|
+
.tableBlowOutPreventer
|
160
|
+
{
|
161
|
+
width:100%;
|
162
|
+
word-wrap:break-word;
|
163
|
+
}
|
164
|
+
|
165
|
+
div.required
|
166
|
+
{
|
167
|
+
font-size:12px;
|
168
|
+
color:#b70a0a;
|
169
|
+
padding:4px;
|
170
|
+
display:inline;
|
171
|
+
top:6px;
|
172
|
+
position:relative
|
173
|
+
}
|
174
|
+
|
175
|
+
.buttonArea
|
176
|
+
{
|
177
|
+
/*background: url("../assets/images/grad.png") repeat-x scroll 0 0 transparent;*/
|
178
|
+
background-color:#ececec ;
|
179
|
+
height:50px;
|
180
|
+
text-align:right;
|
181
|
+
width:100%;
|
182
|
+
}
|
183
|
+
|
184
|
+
.buttonArea .container
|
185
|
+
{
|
186
|
+
float:right;
|
187
|
+
margin-top:10px;
|
188
|
+
margin-right:10px;
|
189
|
+
}
|
190
|
+
|
191
|
+
/*
|
192
|
+
* Legacy Pagination
|
193
|
+
*/
|
194
|
+
|
195
|
+
.summary .header
|
196
|
+
{
|
197
|
+
background: url("../assets/images/head-gradient.gif") repeat-x scroll 0 0 transparent;
|
198
|
+
height:23px;
|
199
|
+
font-size:14px;
|
200
|
+
font-weight:800;
|
201
|
+
}
|
202
|
+
|
203
|
+
.goback
|
204
|
+
{
|
205
|
+
background: url('../assets/images/gobblecons/teal/share-arrows-24-left.png') no-repeat;
|
206
|
+
margin-right: 15px;
|
207
|
+
width: 24px;
|
208
|
+
height: 19px;
|
209
|
+
cursor: pointer;
|
210
|
+
float: left;
|
211
|
+
}
|
212
|
+
|
213
|
+
ul#pagination
|
214
|
+
{
|
215
|
+
float:left;
|
216
|
+
padding:0;
|
217
|
+
top:0;
|
218
|
+
font-size: 12px;
|
219
|
+
}
|
220
|
+
|
221
|
+
ul#pagination li
|
222
|
+
{
|
223
|
+
list-style:none;
|
224
|
+
display:inline;
|
225
|
+
}
|
226
|
+
|
227
|
+
ul#pagination li div
|
228
|
+
{
|
229
|
+
border:solid 0px #DDDDDD;
|
230
|
+
margin-right:2px;
|
231
|
+
margin-top:0px;
|
232
|
+
padding:2px 6px;
|
233
|
+
cursor:pointer;
|
234
|
+
display:inline-block;
|
235
|
+
}
|
236
|
+
|
237
|
+
ul#pagination li div.active
|
238
|
+
{
|
239
|
+
background-color:#CCCCCC;
|
240
|
+
}
|
241
|
+
|
242
|
+
/*
|
243
|
+
* List container
|
244
|
+
*
|
245
|
+
*
|
246
|
+
*/
|
247
|
+
.listContainer, .listContainerPassive
|
248
|
+
{
|
249
|
+
border:0px solid #CCCCCC;
|
250
|
+
list-style:none;
|
251
|
+
padding:0px;
|
252
|
+
margin:0px;
|
253
|
+
position:relative;
|
254
|
+
}
|
255
|
+
|
256
|
+
.listContainer .listTitle, .listContainerPassive .listTitle
|
257
|
+
{
|
258
|
+
color:#636363;
|
259
|
+
font-size:18px;
|
260
|
+
font-weight:800;
|
261
|
+
background-color:#737373;
|
262
|
+
padding:14px;
|
263
|
+
background: transparent;
|
264
|
+
}
|
265
|
+
|
266
|
+
.listContainer table.list, .listContainerPassive table.widget_list
|
267
|
+
{
|
268
|
+
position:relative;
|
269
|
+
margin:0px;
|
270
|
+
padding:0px;
|
271
|
+
}
|
272
|
+
|
273
|
+
.listContainer table.widget_list tr.widget_list_header, .listContainerPassive table.widget_list tr.widget_list_header
|
274
|
+
{
|
275
|
+
color:#4B4B4B;
|
276
|
+
/*background-color:#acacac; */
|
277
|
+
font-size:13px;
|
278
|
+
font-weight:bold;
|
279
|
+
height:40px;
|
280
|
+
/*background: transparent url('../assets/images/catbar-bg.png') repeat-x bottom;*/
|
281
|
+
}
|
282
|
+
|
283
|
+
.listContainer table.widget_list td, .listContainerPassive table.widget_list td
|
284
|
+
{
|
285
|
+
padding:5px;
|
286
|
+
}
|
287
|
+
|
288
|
+
.listContainer #listPages, .listContainerPassive #listPages
|
289
|
+
{
|
290
|
+
position:relative;
|
291
|
+
float:left;
|
292
|
+
padding:0px;
|
293
|
+
width:100%;
|
294
|
+
border:0px solid red;
|
295
|
+
}
|
296
|
+
|
297
|
+
.listContainerPassive .listTitle
|
298
|
+
{
|
299
|
+
color:#636363;
|
300
|
+
font-size:18px;
|
301
|
+
font-weight:800;
|
302
|
+
background-color:#737373;
|
303
|
+
padding:14px;
|
304
|
+
background: transparent;
|
305
|
+
}
|
306
|
+
|
307
|
+
div#noListResults
|
308
|
+
{
|
309
|
+
padding:15px;
|
310
|
+
/*font-size:18px;
|
311
|
+
color:#636363; */
|
312
|
+
text-align:center
|
313
|
+
}
|
314
|
+
|
315
|
+
.ajaxLoad
|
316
|
+
{
|
317
|
+
background: #737373 url('../assets/images/list-loader.gif') no-repeat;
|
318
|
+
background-position:50% 50%;
|
319
|
+
position:absolute;
|
320
|
+
width:100%;
|
321
|
+
text-align:center;
|
322
|
+
z-index:10;
|
323
|
+
margin:0;
|
324
|
+
left:0px;
|
325
|
+
/* filter: alpha(opacity=40);
|
326
|
+
-khtml-opacity: 0.40;
|
327
|
+
-moz-opacity: 0.40;
|
328
|
+
opacity: 0.40;*/
|
329
|
+
}
|
330
|
+
|
331
|
+
.listContainerPassive table.widget_list td
|
332
|
+
{
|
333
|
+
padding:10px;
|
334
|
+
}
|
335
|
+
|
336
|
+
.listContainerPassive table.widget_list tr.widget_list_header
|
337
|
+
{
|
338
|
+
/*background: url("../assets/images/th_header.gif") repeat-x scroll left center transparent; */
|
339
|
+
padding: 4px;
|
340
|
+
text-align: center;
|
341
|
+
vertical-align: middle;
|
342
|
+
color:#494949;
|
343
|
+
background-color: #ececec;
|
344
|
+
font-size:13px;
|
345
|
+
}
|
346
|
+
|
347
|
+
/**
|
348
|
+
* Widget search
|
349
|
+
*/
|
350
|
+
div.widgetSearchBox
|
351
|
+
{
|
352
|
+
height:55px;
|
353
|
+
}
|
354
|
+
|
355
|
+
table.searchBox
|
356
|
+
{
|
357
|
+
border: 1px solid #CCCCCC;
|
358
|
+
width:500px;
|
359
|
+
height:100px;
|
360
|
+
padding:0px
|
361
|
+
}
|
362
|
+
|
363
|
+
table.searchBox td
|
364
|
+
{
|
365
|
+
padding:10px;
|
366
|
+
}
|
367
|
+
|
368
|
+
table.searchBox td.label
|
369
|
+
{
|
370
|
+
width:100px;
|
371
|
+
font-size:14px;
|
372
|
+
color:#494949;
|
373
|
+
}
|
374
|
+
|
375
|
+
.searchBox .header
|
376
|
+
{
|
377
|
+
background: none repeat scroll 0 0 #ECECEC;
|
378
|
+
color: #494949;
|
379
|
+
height: 30px;
|
380
|
+
margin: 0;
|
381
|
+
}
|
382
|
+
|
383
|
+
#pageSelectDropDown, #pageSelectDropDown2
|
384
|
+
{
|
385
|
+
padding:0px;
|
386
|
+
font-size: 12px;
|
387
|
+
border:1px solid #C0C0C0;
|
388
|
+
-moz-border-radius:0px;
|
389
|
+
-border-radius:0px;
|
390
|
+
-border-radius:0px;
|
391
|
+
-webkit-border-radius:0px;
|
392
|
+
padding:0px;
|
393
|
+
}
|
394
|
+
|
395
|
+
.btn.danger,
|
396
|
+
.alert-message.danger,
|
397
|
+
.btn.danger:hover,
|
398
|
+
.alert-message.danger:hover,
|
399
|
+
.btn.error,
|
400
|
+
.alert-message.error,
|
401
|
+
.btn.error:hover,
|
402
|
+
.alert-message.error:hover,
|
403
|
+
.btn.success,
|
404
|
+
.alert-message.success,
|
405
|
+
.btn.success:hover,
|
406
|
+
.alert-message.success:hover,
|
407
|
+
.btn.info,
|
408
|
+
.alert-message.info,
|
409
|
+
.btn.info:hover,
|
410
|
+
.alert-message.info:hover
|
411
|
+
{
|
412
|
+
color: #ffffff;
|
413
|
+
}
|
414
|
+
|
415
|
+
.btn.danger,
|
416
|
+
.alert-message.danger,
|
417
|
+
.btn.error,
|
418
|
+
.alert-message.error
|
419
|
+
{
|
420
|
+
background-color: #c43c35;
|
421
|
+
background-repeat: repeat-x;
|
422
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
423
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
424
|
+
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
425
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
|
426
|
+
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
427
|
+
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
428
|
+
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
429
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
|
430
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
431
|
+
border-color: #c43c35 #c43c35 #882a25;
|
432
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
433
|
+
}
|
434
|
+
|
435
|
+
.btn.success, .alert-message.success
|
436
|
+
{
|
437
|
+
background-color: #91b32b;
|
438
|
+
background-repeat: repeat-x;
|
439
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#97C900), to(#91b32b));
|
440
|
+
background-image: -moz-linear-gradient(top, #97C900, #91b32b);
|
441
|
+
background-image: -ms-linear-gradient(top, #97C900, #91b32b);
|
442
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #97C900), color-stop(100%, #91b32b));
|
443
|
+
background-image: -webkit-linear-gradient(top, #97C900, #91b32b);
|
444
|
+
background-image: -o-linear-gradient(top, #97C900, #91b32b);
|
445
|
+
background-image: linear-gradient(top, #97C900, #91b32b);
|
446
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#97C900', endColorstr='#91b32b', GradientType=0);
|
447
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
448
|
+
border-color: #91b32b #91b32b #97C900;
|
449
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
450
|
+
}
|
451
|
+
|
452
|
+
|
453
|
+
.btn.info, .alert-message.info
|
454
|
+
{
|
455
|
+
background-color: #339bb9;
|
456
|
+
background-repeat: repeat-x;
|
457
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
|
458
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
459
|
+
background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
|
460
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
|
461
|
+
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
462
|
+
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
463
|
+
background-image: linear-gradient(top, #5bc0de, #339bb9);
|
464
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
|
465
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
466
|
+
border-color: #339bb9 #339bb9 #22697d;
|
467
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
468
|
+
}
|
469
|
+
|
470
|
+
a.btn
|
471
|
+
{
|
472
|
+
cursor: pointer;
|
473
|
+
display: inline-block;
|
474
|
+
background-color: #e6e6e6;
|
475
|
+
background-repeat: no-repeat;
|
476
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
|
477
|
+
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
478
|
+
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
|
479
|
+
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
480
|
+
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
481
|
+
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
482
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
|
483
|
+
padding: 5px 14px 6px;
|
484
|
+
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
485
|
+
color: #333;
|
486
|
+
font-size: 13px;
|
487
|
+
line-height: normal;
|
488
|
+
border: 1px solid #ccc;
|
489
|
+
border-bottom-color: #bbb;
|
490
|
+
-webkit-border-radius: 4px;
|
491
|
+
-moz-border-radius: 4px;
|
492
|
+
border-radius: 4px;
|
493
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
494
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
495
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
496
|
+
-webkit-transition: 0.1s linear all;
|
497
|
+
-moz-transition: 0.1s linear all;
|
498
|
+
transition: 0.1s linear all;
|
499
|
+
text-decoration: none;
|
500
|
+
position:relative;
|
501
|
+
margin-left:2px;
|
502
|
+
}
|
503
|
+
|
504
|
+
|
505
|
+
.btn:hover
|
506
|
+
{
|
507
|
+
background-position: 0 -15px;
|
508
|
+
color: #333;
|
509
|
+
text-decoration: none;
|
510
|
+
}
|
511
|
+
|
512
|
+
|
513
|
+
.btn.primary
|
514
|
+
{
|
515
|
+
color: #fff;
|
516
|
+
background-color: #0064cd;
|
517
|
+
background-repeat: repeat-x;
|
518
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
|
519
|
+
background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
|
520
|
+
background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
|
521
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
|
522
|
+
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
|
523
|
+
background-image: -o-linear-gradient(top, #049cdb, #0064cd);
|
524
|
+
background-image: linear-gradient(top, #049cdb, #0064cd);
|
525
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
|
526
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
527
|
+
border-color: #0064cd #0064cd #003f81;
|
528
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
529
|
+
}
|
530
|
+
|
531
|
+
.btn:active
|
532
|
+
{
|
533
|
+
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
534
|
+
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
535
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
536
|
+
}
|
537
|
+
|
538
|
+
.btn.disabled
|
539
|
+
{
|
540
|
+
cursor: default;
|
541
|
+
background-image: none;
|
542
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
543
|
+
filter: alpha(opacity=65);
|
544
|
+
-khtml-opacity: 0.65;
|
545
|
+
-moz-opacity: 0.65;
|
546
|
+
opacity: 0.65;
|
547
|
+
-webkit-box-shadow: none;
|
548
|
+
-moz-box-shadow: none;
|
549
|
+
box-shadow: none;
|
550
|
+
}
|
551
|
+
|
552
|
+
|
553
|
+
.btn[disabled]
|
554
|
+
{
|
555
|
+
cursor: default;
|
556
|
+
background-image: none;
|
557
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
558
|
+
filter: alpha(opacity=65);
|
559
|
+
-khtml-opacity: 0.65;
|
560
|
+
-moz-opacity: 0.65;
|
561
|
+
opacity: 0.65;
|
562
|
+
-webkit-box-shadow: none;
|
563
|
+
-moz-box-shadow: none;
|
564
|
+
box-shadow: none;
|
565
|
+
}
|
566
|
+
|
567
|
+
.btn.large
|
568
|
+
{
|
569
|
+
font-size: 16px;
|
570
|
+
line-height: normal;
|
571
|
+
padding: 9px 14px 9px;
|
572
|
+
-webkit-border-radius: 6px;
|
573
|
+
-moz-border-radius: 6px;
|
574
|
+
border-radius: 6px;
|
575
|
+
}
|
576
|
+
|
577
|
+
|
578
|
+
.btn.small
|
579
|
+
{
|
580
|
+
padding: 4px 9px 4px;
|
581
|
+
font-size: 11px;
|
582
|
+
font-weight: normal !important;
|
583
|
+
}
|
584
|
+
|
585
|
+
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner
|
586
|
+
{
|
587
|
+
padding: 0;
|
588
|
+
border: 0;
|
589
|
+
}
|
590
|
+
|
591
|
+
/**
|
592
|
+
* Dynamic width imput fields
|
593
|
+
*
|
594
|
+
* The max width that is supported for an input field is 708px using input_text_left.png
|
595
|
+
*/
|
596
|
+
div.inputOuter
|
597
|
+
{
|
598
|
+
position:relative;
|
599
|
+
background: transparent url('../assets/images/input_text_right.png') no-repeat scroll top right;
|
600
|
+
display: inline-block;
|
601
|
+
height: 27px;
|
602
|
+
line-height: 27px;
|
603
|
+
padding-right: 6px;
|
604
|
+
text-decoration: none;
|
605
|
+
}
|
606
|
+
|
607
|
+
|
608
|
+
div.inputOuter .inputInner {position:relative;background: transparent url('../assets/images/input_text_left.png') no-repeat scroll top left;border: none;height: 27px;line-height: 27px;padding-left: 6px;width: auto;padding-right: 7px;}
|
609
|
+
div.inputOuter .inputInner input {margin:6px 0 0 6px;border:none;background:transparent;width:100%}
|
610
|
+
div.inputOuter .inputInner input.search-ahead {width:97%}
|
611
|
+
|
612
|
+
/**
|
613
|
+
* Input box with an initial message
|
614
|
+
*/
|
615
|
+
.info-input {}
|
616
|
+
.info-input-field-active{font-style: normal;}
|
617
|
+
.info-input-field-inactive{color: #b4b3b3;font-style: italic;}
|
618
|
+
|
619
|
+
/**
|
620
|
+
* Avanced Search Template Container - most outer wrapper
|
621
|
+
*/
|
622
|
+
.widget-search-drilldown {border:2px solid #dadada;border-top:none;box-shadow: 0 2px 4px #c0c0c0;padding: 4px 0px 4px 4px;position: absolute;width: 98%;z-index: 1000;background-color:#FFFFFF;display:none;margin-left:1px;}
|
623
|
+
|
624
|
+
/**
|
625
|
+
* Advanced Search Down Arrow
|
626
|
+
*/
|
627
|
+
.widget-search-arrow {background: url('../assets/images/gobblecons/mid-gray/arrow-16.png') no-repeat scroll 0px 0px transparent;float:right;margin:8px;position: relative;right:-23px;top:-30px;cursor:pointer;border:0px solid red;height:20px;width:20px;display:none}
|
628
|
+
.widget-search-arrow:hover {background: url('../assets/images/gobblecons/mid-gray/arrow-16.png') no-repeat scroll 0px 0px transparent;}
|
629
|
+
|
630
|
+
/**
|
631
|
+
* Search Ahead Magifier Glass
|
632
|
+
*/
|
633
|
+
.widget-search-magnifier {background: url('../assets/images/gobblecons/mid-gray/search-16.png') no-repeat scroll 0px 0px transparent;float:right;margin:7px;position: relative;right:-13px;top:-30px;cursor:pointer;border:0px solid red;height:20px;width:20px}
|
634
|
+
.widget-search-magnifier:hover {background: url('../assets/images/gobblecons/mid-gray/search-16.png') no-repeat scroll 0px 0px transparent}
|
635
|
+
|
636
|
+
/**
|
637
|
+
* Advanced Search Close Button
|
638
|
+
*/
|
639
|
+
.widget-search-drilldown-close {font-weight:900;font-size:12px; color:#494949;float:right;cursor:pointer;padding:4px;margin-right:10px;top:20px;position:relative;line-height: 0px;}
|
640
|
+
.widget-search-drilldown-close:hover {color:#C0C0C0;}
|
641
|
+
|
642
|
+
/**
|
643
|
+
* Avanced Search Template Components
|
644
|
+
*
|
645
|
+
* .widget-search-outer must be greater than the z-index of .ajaxLoad which is current 10
|
646
|
+
*/
|
647
|
+
.widget-search-outer {z-index: 11;margin-bottom: 10px;}
|
648
|
+
div#advanced-search-container {height:100%;}
|
649
|
+
div#advanced-search-container h3 {color:#868686;}
|
650
|
+
|
651
|
+
.advanced-search-from-date-img, .advanced-search-to-date-img {margin-left:-28px;margin-top:0px;position:relative;top:3px;line-height: 0px;}
|
652
|
+
|
653
|
+
/**
|
654
|
+
* Search Ahead Content Results
|
655
|
+
*/
|
656
|
+
.widget-search-content {padding:4px;}
|
657
|
+
.widget-search-content div.row {padding:4px;}
|
658
|
+
.widget-search-results-row {padding:6px;cursor:pointer;}
|
659
|
+
.widget-search-results-row:hover {background-color:#dadada;}
|
660
|
+
.widget-search-results-row-selected {background-color:#dadada;}
|
661
|
+
|
662
|
+
/**
|
663
|
+
* Advanced search overrides
|
664
|
+
*/
|
665
|
+
.widget-search-arrow-advanced {display:block;right:15px}
|
666
|
+
.widget-search-arrow-advanced-no-search {display:block;right:-10px;}
|
667
|
+
.widget-search-magnifier-advanced {right:-44px}
|
668
|
+
div.inputOuter .inputInner input.search-ahead-advanced {width: 90% !important;}
|
669
|
+
|
670
|
+
|
671
|
+
/*
|
672
|
+
* Pagination
|
673
|
+
*/
|
674
|
+
.pagination
|
675
|
+
{
|
676
|
+
float:left;
|
677
|
+
text-align:left;
|
678
|
+
width:100%;
|
679
|
+
margin:0px;
|
680
|
+
padding:0px;
|
681
|
+
}
|
682
|
+
|
683
|
+
.pagination div
|
684
|
+
{
|
685
|
+
margin:auto;
|
686
|
+
float:left;
|
687
|
+
margin:0px;
|
688
|
+
padding:0px;
|
689
|
+
}
|
690
|
+
|
691
|
+
.page_legacy li
|
692
|
+
{
|
693
|
+
display:inline;
|
694
|
+
}
|
695
|
+
|
696
|
+
.page_legacy li span
|
697
|
+
{
|
698
|
+
border:solid 0px #DDDDDD;
|
699
|
+
margin-right:2px;
|
700
|
+
margin-top:0px;
|
701
|
+
padding:2px 6px;
|
702
|
+
display:inline;
|
703
|
+
}
|
704
|
+
|
705
|
+
.page_legacy li span.active
|
706
|
+
{
|
707
|
+
background-color:#CCCCCC;
|
708
|
+
}
|
709
|
+
|
710
|
+
|
711
|
+
|
712
|
+
/**
|
713
|
+
* Widgetlist checkboxes
|
714
|
+
*/
|
715
|
+
.widgetlist-checkbox {width:20px;}
|
716
|
+
.widgetlist-checkbox-header span input {text-align:left !important;width:inherit;}
|
717
|
+
|
718
|
+
/**
|
719
|
+
* Widgetlist checkboxes header
|
720
|
+
*/
|
721
|
+
.widgetlist-checkbox-input {width:20px !important}
|
722
|
+
|
723
|
+
|
724
|
+
|
725
|
+
/*
|
726
|
+
* Legacy Pagination
|
727
|
+
*/
|
728
|
+
ul#pagination
|
729
|
+
{
|
730
|
+
float:left;
|
731
|
+
padding:0;
|
732
|
+
top:0;
|
733
|
+
font-size: 12px;
|
734
|
+
}
|
735
|
+
|
736
|
+
ul#pagination li
|
737
|
+
{
|
738
|
+
list-style:none;
|
739
|
+
display:inline;
|
740
|
+
}
|
741
|
+
|
742
|
+
ul#pagination li div
|
743
|
+
{
|
744
|
+
border:solid 0px #DDDDDD;
|
745
|
+
margin-right:2px;
|
746
|
+
margin-top:0px;
|
747
|
+
padding:2px 6px;
|
748
|
+
cursor:pointer;
|
749
|
+
display:inline-block;
|
750
|
+
}
|
751
|
+
|
752
|
+
ul#pagination li div.active
|
753
|
+
{
|
754
|
+
background-color:#CCCCCC;
|
755
|
+
}
|
756
|
+
|
757
|
+
/*
|
758
|
+
* Pagination
|
759
|
+
*/
|
760
|
+
.page_legacy li
|
761
|
+
{
|
762
|
+
display:inline;
|
763
|
+
}
|
764
|
+
|
765
|
+
.page_legacy li span
|
766
|
+
{
|
767
|
+
border:solid 0px #DDDDDD;
|
768
|
+
margin-right:2px;
|
769
|
+
margin-top:0px;
|
770
|
+
padding:2px 6px;
|
771
|
+
display:inline;
|
772
|
+
}
|
773
|
+
|
774
|
+
.page_legacy li span.active
|
775
|
+
{
|
776
|
+
background-color:#CCCCCC;
|
777
|
+
}
|
778
|
+
|
779
|
+
|
780
|
+
|
781
|
+
/**
|
782
|
+
* Search form
|
783
|
+
*/
|
784
|
+
div#advanced-search-container ul.advanced-search-container-inline, div#advanced-search-container ul {list-style:none; margin:0px; padding:3px; width:450px}
|
785
|
+
div#advanced-search-container ul.advanced-search-container-inline input.info-input, div#advanced-search-container ul input.info-input {font-size:11px}
|
786
|
+
div#advanced-search-container ul.advanced-search-container-inline li {display:inline-block;width:428px; margin-top:4px;}
|
787
|
+
div#advanced-search-container ul.advanced-search-container-inline li#required_message_inline {font-size:10px}
|
788
|
+
div#advanced-search-container ul.advanced-search-container-inline li#required_message_inline div.required {top:4px}
|
789
|
+
div#advanced-search-container ul#search_columns li {width:428px}
|
790
|
+
|
791
|
+
|
792
|
+
/**
|
793
|
+
* IE7 fixes (hopefully this works with *+html selector)
|
794
|
+
*/
|
795
|
+
|
796
|
+
/**
|
797
|
+
* Select box global
|
798
|
+
*/
|
799
|
+
*+html div.select-outer {display:inline}
|
800
|
+
|
801
|
+
/**
|
802
|
+
* MultiSelect box global
|
803
|
+
*/
|
804
|
+
*+html div.select-outer-multiple div.select-inner-multiple select {height:130px}
|
805
|
+
*+html div.select-outer-multiple div.select-inner-multiple {margin-right:-9px !important;}
|
806
|
+
|
807
|
+
/**
|
808
|
+
* Widgetlist Pagination
|
809
|
+
*/
|
810
|
+
.page_legacy {width:600px; left:0; margin-left:0;}
|
811
|
+
*+html ul#pagination li div {display:inline}
|
812
|
+
*+html ul#pagination li div.select-outer {background: url("../assets/images/input_text_right.png") no-repeat scroll right 2px transparent;}
|
813
|
+
*+html ul#pagination li div.select-outer div.select-inner select {margin-top: -4px !important;}
|