whoops 0.0.2

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.
Files changed (74) hide show
  1. data/Gemfile +2 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +25 -0
  5. data/app/controllers/event_groups_controller.rb +34 -0
  6. data/app/controllers/events_controller.rb +24 -0
  7. data/app/helpers/event_groups_helper.rb +32 -0
  8. data/app/helpers/events_helper.rb +28 -0
  9. data/app/helpers/notifications_helper.rb +2 -0
  10. data/app/lib/field_names.rb +9 -0
  11. data/app/models/whoops/event.rb +27 -0
  12. data/app/models/whoops/event_group.rb +32 -0
  13. data/app/models/whoops/filter.rb +15 -0
  14. data/app/views/event_groups/_list.html.haml +19 -0
  15. data/app/views/event_groups/index.html.haml +14 -0
  16. data/app/views/events/_detail.html.haml +5 -0
  17. data/app/views/events/_details.html.haml +8 -0
  18. data/app/views/events/index.html.haml +25 -0
  19. data/app/views/layouts/whoops.html.haml +39 -0
  20. data/config/initializers/date_formats.rb +3 -0
  21. data/config/routes.rb +7 -0
  22. data/lib/generators/whoops/assets_generator.rb +16 -0
  23. data/lib/generators/whoops/templates/assets/images/_ui/breadcrumb_divider.png +0 -0
  24. data/lib/generators/whoops/templates/assets/images/_ui/btn_submit.png +0 -0
  25. data/lib/generators/whoops/templates/assets/images/_ui/btn_submit_2.png +0 -0
  26. data/lib/generators/whoops/templates/assets/images/_ui/btn_view_site.png +0 -0
  27. data/lib/generators/whoops/templates/assets/images/_ui/header_bg.png +0 -0
  28. data/lib/generators/whoops/templates/assets/images/_ui/header_shadow.png +0 -0
  29. data/lib/generators/whoops/templates/assets/images/_ui/icn_add_user.png +0 -0
  30. data/lib/generators/whoops/templates/assets/images/_ui/icn_alert_error.png +0 -0
  31. data/lib/generators/whoops/templates/assets/images/_ui/icn_alert_info.png +0 -0
  32. data/lib/generators/whoops/templates/assets/images/_ui/icn_alert_success.png +0 -0
  33. data/lib/generators/whoops/templates/assets/images/_ui/icn_alert_warning.png +0 -0
  34. data/lib/generators/whoops/templates/assets/images/_ui/icn_audio.png +0 -0
  35. data/lib/generators/whoops/templates/assets/images/_ui/icn_categories.png +0 -0
  36. data/lib/generators/whoops/templates/assets/images/_ui/icn_edit.png +0 -0
  37. data/lib/generators/whoops/templates/assets/images/_ui/icn_edit_article.png +0 -0
  38. data/lib/generators/whoops/templates/assets/images/_ui/icn_folder.png +0 -0
  39. data/lib/generators/whoops/templates/assets/images/_ui/icn_jump_back.png +0 -0
  40. data/lib/generators/whoops/templates/assets/images/_ui/icn_logout.png +0 -0
  41. data/lib/generators/whoops/templates/assets/images/_ui/icn_new_article.png +0 -0
  42. data/lib/generators/whoops/templates/assets/images/_ui/icn_photo.png +0 -0
  43. data/lib/generators/whoops/templates/assets/images/_ui/icn_profile.png +0 -0
  44. data/lib/generators/whoops/templates/assets/images/_ui/icn_search.png +0 -0
  45. data/lib/generators/whoops/templates/assets/images/_ui/icn_security.png +0 -0
  46. data/lib/generators/whoops/templates/assets/images/_ui/icn_settings.png +0 -0
  47. data/lib/generators/whoops/templates/assets/images/_ui/icn_tags.png +0 -0
  48. data/lib/generators/whoops/templates/assets/images/_ui/icn_trash.png +0 -0
  49. data/lib/generators/whoops/templates/assets/images/_ui/icn_user.png +0 -0
  50. data/lib/generators/whoops/templates/assets/images/_ui/icn_video.png +0 -0
  51. data/lib/generators/whoops/templates/assets/images/_ui/icn_view_users.png +0 -0
  52. data/lib/generators/whoops/templates/assets/images/_ui/module_footer_bg.png +0 -0
  53. data/lib/generators/whoops/templates/assets/images/_ui/post_message.png +0 -0
  54. data/lib/generators/whoops/templates/assets/images/_ui/secondary_bar.png +0 -0
  55. data/lib/generators/whoops/templates/assets/images/_ui/secondary_bar_shadow.png +0 -0
  56. data/lib/generators/whoops/templates/assets/images/_ui/sidebar.png +0 -0
  57. data/lib/generators/whoops/templates/assets/images/_ui/sidebar_divider.png +0 -0
  58. data/lib/generators/whoops/templates/assets/images/_ui/sidebar_shadow.png +0 -0
  59. data/lib/generators/whoops/templates/assets/images/_ui/table_sorter_header.png +0 -0
  60. data/lib/generators/whoops/templates/assets/javascripts/application.js +35 -0
  61. data/lib/generators/whoops/templates/assets/javascripts/hideshow.js +39 -0
  62. data/lib/generators/whoops/templates/assets/javascripts/jquery-1.5.2.min.js +16 -0
  63. data/lib/generators/whoops/templates/assets/javascripts/jquery.equalHeight.js +20 -0
  64. data/lib/generators/whoops/templates/assets/javascripts/jquery.form.js +825 -0
  65. data/lib/generators/whoops/templates/assets/javascripts/jquery.tablesorter.min.js +4 -0
  66. data/lib/generators/whoops/templates/assets/javascripts/ui.js +28 -0
  67. data/lib/generators/whoops/templates/assets/stylesheets/ie.css +49 -0
  68. data/lib/generators/whoops/templates/assets/stylesheets/sass/_base.scss +18 -0
  69. data/lib/generators/whoops/templates/assets/stylesheets/sass/ie.scss +43 -0
  70. data/lib/generators/whoops/templates/assets/stylesheets/sass/screen.scss +945 -0
  71. data/lib/generators/whoops/templates/assets/stylesheets/screen.css +1082 -0
  72. data/lib/whoops.rb +5 -0
  73. data/lib/whoops/engine.rb +4 -0
  74. metadata +356 -0
@@ -0,0 +1,1082 @@
1
+ /* Essentials */
2
+ /* line 5, ../../app/stylesheets/screen.scss */
3
+ html, div, map, dt, isindex, form, header, aside, section, section, article, footer {
4
+ display: block;
5
+ }
6
+
7
+ /* line 9, ../../app/stylesheets/screen.scss */
8
+ html, body {
9
+ height: 100%;
10
+ margin: 0;
11
+ padding: 0;
12
+ font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
13
+ background: #F8F8F8;
14
+ font-size: 12px;
15
+ line-height: 1.6em;
16
+ }
17
+
18
+ /* line 19, ../../app/stylesheets/screen.scss */
19
+ .clear {
20
+ clear: both;
21
+ }
22
+
23
+ /* line 23, ../../app/stylesheets/screen.scss */
24
+ .spacer {
25
+ height: 20px;
26
+ }
27
+
28
+ /* line 27, ../../app/stylesheets/screen.scss */
29
+ a:link, a:visited {
30
+ color: #77BACE;
31
+ text-decoration: none;
32
+ }
33
+
34
+ /* line 32, ../../app/stylesheets/screen.scss */
35
+ a:hover {
36
+ text-decoration: underline;
37
+ }
38
+
39
+ /* Header */
40
+ /* line 39, ../../app/stylesheets/screen.scss */
41
+ header#header {
42
+ height: 55px;
43
+ width: 100%;
44
+ background: #222222 url(../images/_ui/header_bg.png) repeat-x;
45
+ }
46
+
47
+ /* line 45, ../../app/stylesheets/screen.scss */
48
+ header#header h1.site_title, header#header h2.section_title {
49
+ float: left;
50
+ margin: 0;
51
+ font-size: 22px;
52
+ display: block;
53
+ width: 23%;
54
+ height: 55px;
55
+ font-weight: normal;
56
+ text-align: left;
57
+ text-indent: 1.8%;
58
+ line-height: 55px;
59
+ color: #fff;
60
+ text-shadow: 0 -1px 0 black;
61
+ }
62
+
63
+ /* line 60, ../../app/stylesheets/screen.scss */
64
+ header#header h1.site_title a {
65
+ color: #fff;
66
+ text-decoration: none;
67
+ }
68
+
69
+ /* line 65, ../../app/stylesheets/screen.scss */
70
+ header#header h2.section_title {
71
+ text-align: center;
72
+ text-indent: 4.5%;
73
+ width: 68%;
74
+ background: url(../images/_ui/header_shadow.png) no-repeat left top;
75
+ }
76
+
77
+ /* line 72, ../../app/stylesheets/screen.scss */
78
+ .btn_view_site {
79
+ float: left;
80
+ width: 9%;
81
+ }
82
+
83
+ /* line 77, ../../app/stylesheets/screen.scss */
84
+ .btn_view_site a {
85
+ display: block;
86
+ margin-top: 12px;
87
+ width: 91px;
88
+ height: 27px;
89
+ background: url(../images/_ui/btn_view_site.png) no-repeat;
90
+ text-align: center;
91
+ line-height: 29px;
92
+ color: #fff;
93
+ text-decoration: none;
94
+ text-shadow: 0 -1px 0 black;
95
+ }
96
+
97
+ /* line 89, ../../app/stylesheets/screen.scss */
98
+ .btn_view_site a:hover {
99
+ background-position: 0 -27px;
100
+ }
101
+
102
+ /* Secondary Header Bar */
103
+ /* line 95, ../../app/stylesheets/screen.scss */
104
+ section#secondary_bar {
105
+ height: 38px;
106
+ width: 100%;
107
+ background: #f1f1f4 url(../images/_ui/secondary_bar.png) repeat-x;
108
+ }
109
+
110
+ /* line 101, ../../app/stylesheets/screen.scss */
111
+ section#secondary_bar .user {
112
+ float: left;
113
+ width: 23%;
114
+ height: 38px;
115
+ }
116
+
117
+ /* line 107, ../../app/stylesheets/screen.scss */
118
+ .user p {
119
+ margin: 0;
120
+ padding: 0;
121
+ color: #666666;
122
+ font-weight: bold;
123
+ display: block;
124
+ float: left;
125
+ width: 85%;
126
+ height: 35px;
127
+ line-height: 35px;
128
+ text-indent: 25px;
129
+ text-shadow: 0 1px 0 #fff;
130
+ background: url(../images/_ui/icn_user.png) no-repeat center left;
131
+ margin-left: 6%;
132
+ }
133
+
134
+ /* line 123, ../../app/stylesheets/screen.scss */
135
+ .user a {
136
+ text-decoration: none;
137
+ color: #666666;
138
+ }
139
+
140
+ /* line 127, ../../app/stylesheets/screen.scss */
141
+ .user a:hover {
142
+ color: #77BACE;
143
+ }
144
+
145
+ /* line 131, ../../app/stylesheets/screen.scss */
146
+ .user a.logout_user {
147
+ float: left;
148
+ display: block;
149
+ width: 16px;
150
+ height: 35px;
151
+ text-indent: -5000px;
152
+ background: url(../images/_ui/icn_logout.png) center no-repeat;
153
+ }
154
+
155
+ /* Breadcrumbs */
156
+ /* line 142, ../../app/stylesheets/screen.scss */
157
+ section#secondary_bar .breadcrumbs_container {
158
+ float: left;
159
+ width: 77%;
160
+ background: url(../images/_ui/secondary_bar_shadow.png) no-repeat left top;
161
+ height: 38px;
162
+ }
163
+
164
+ /* line 149, ../../app/stylesheets/screen.scss */
165
+ article.breadcrumbs {
166
+ float: left;
167
+ padding: 0 10px;
168
+ border: 1px solid #ccc;
169
+ -webkit-border-radius: 5px;
170
+ -moz-border-radius: 5px;
171
+ border-radius: 5px;
172
+ -webkit-box-shadow: 0 1px 0 #fff;
173
+ -moz-box-shadow: 0 1px 0 #fff;
174
+ box-shadow: 0 1px 0 #fff;
175
+ height: 23px;
176
+ margin: 4px 3%;
177
+ }
178
+
179
+ /* line 163, ../../app/stylesheets/screen.scss */
180
+ .breadcrumbs a {
181
+ display: inline-block;
182
+ float: left;
183
+ height: 24px;
184
+ line-height: 23px;
185
+ }
186
+
187
+ /* line 170, ../../app/stylesheets/screen.scss */
188
+ .breadcrumbs a.current, .breadcrumbs a.current:hover {
189
+ color: #9E9E9E;
190
+ font-weight: bold;
191
+ text-shadow: 0 1px 0 #fff;
192
+ text-decoration: none;
193
+ }
194
+
195
+ /* line 177, ../../app/stylesheets/screen.scss */
196
+ .breadcrumbs a:link, .breadcrumbs a:visited {
197
+ color: #44474F;
198
+ text-decoration: none;
199
+ text-shadow: 0 1px 0 #fff;
200
+ font-weight: bold;
201
+ }
202
+
203
+ /* line 183, ../../app/stylesheets/screen.scss */
204
+ .breadcrumbs a:hover {
205
+ color: #222222;
206
+ }
207
+
208
+ /* line 187, ../../app/stylesheets/screen.scss */
209
+ .breadcrumb_divider {
210
+ display: inline-block;
211
+ width: 12px;
212
+ height: 24px;
213
+ background: url(../images/_ui/breadcrumb_divider.png) no-repeat;
214
+ float: left;
215
+ margin: 0 5px;
216
+ }
217
+
218
+ /* Sidebar */
219
+ /* line 198, ../../app/stylesheets/screen.scss */
220
+ aside#sidebar {
221
+ width: 23%;
222
+ background: #e0e0e3 url(../images/_ui/sidebar.png) repeat;
223
+ float: left;
224
+ min-height: 500px;
225
+ margin-top: -4px;
226
+ }
227
+
228
+ /* Search */
229
+ /* line 208, ../../app/stylesheets/screen.scss */
230
+ .quick_search {
231
+ text-align: center;
232
+ padding: 14px 0 10px 0;
233
+ }
234
+
235
+ /* line 213, ../../app/stylesheets/screen.scss */
236
+ .quick_search input[type=text] {
237
+ -webkit-border-radius: 20px;
238
+ -moz-border-radius: 20px;
239
+ border-radius: 20px;
240
+ border: 1px solid #bbb;
241
+ height: 26px;
242
+ width: 90%;
243
+ color: #ccc;
244
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
245
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
246
+ box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
247
+ text-indent: 30px;
248
+ background: white url(../images/_ui/icn_search.png) no-repeat;
249
+ background-position: 10px 6px;
250
+ }
251
+
252
+ /* line 229, ../../app/stylesheets/screen.scss */
253
+ .quick_search input[type=text]:focus {
254
+ outline: none;
255
+ color: #666666;
256
+ border: 1px solid #77BACE;
257
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
258
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
259
+ box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
260
+ }
261
+
262
+ /* Sidebar Menu */
263
+ /* line 240, ../../app/stylesheets/screen.scss */
264
+ .toggleLink {
265
+ color: #999999;
266
+ font-size: 10px;
267
+ text-decoration: none;
268
+ display: block;
269
+ float: right;
270
+ margin-right: 2%;
271
+ }
272
+
273
+ /* line 249, ../../app/stylesheets/screen.scss */
274
+ #sidebar .toggleLink:hover {
275
+ color: #77BACE;
276
+ text-decoration: none;
277
+ }
278
+
279
+ /* line 255, ../../app/stylesheets/screen.scss */
280
+ #sidebar h3 {
281
+ color: #1F1F20;
282
+ text-transform: uppercase;
283
+ text-shadow: 0 1px 0 #fff;
284
+ font-size: 13px;
285
+ margin: 10px 0 10px 6%;
286
+ display: block;
287
+ width: 90%;
288
+ }
289
+ /* line 264, ../../app/stylesheets/screen.scss */
290
+ #sidebar .pagination {
291
+ display: block;
292
+ font-size: 13px;
293
+ margin: 0 0 2px 12%;
294
+ overflow: hidden;
295
+ *zoom: 1;
296
+ }
297
+ /* line 269, ../../app/stylesheets/screen.scss */
298
+ #sidebar .pagination a, #sidebar .pagination em {
299
+ float: left;
300
+ display: block;
301
+ padding: 1px 6px;
302
+ }
303
+ /* line 274, ../../app/stylesheets/screen.scss */
304
+ #sidebar .pagination a:hover, #sidebar .pagination em {
305
+ background: white;
306
+ }
307
+ /* line 277, ../../app/stylesheets/screen.scss */
308
+ #sidebar .pagination .previous_page, #sidebar .pagination .next_page {
309
+ display: none;
310
+ }
311
+ /* line 281, ../../app/stylesheets/screen.scss */
312
+ #sidebar hr {
313
+ border: none;
314
+ outline: none;
315
+ background: url(../images/_ui/sidebar_divider.png) repeat-x;
316
+ display: block;
317
+ width: 100%;
318
+ height: 2px;
319
+ }
320
+ /* line 289, ../../app/stylesheets/screen.scss */
321
+ #sidebar ul {
322
+ clear: both;
323
+ margin: 0;
324
+ padding: 0;
325
+ }
326
+ /* line 293, ../../app/stylesheets/screen.scss */
327
+ #sidebar ul li {
328
+ list-style: square inside;
329
+ margin: 0 0 0 6%;
330
+ padding: 0 0 0 9px;
331
+ }
332
+ /* line 297, ../../app/stylesheets/screen.scss */
333
+ #sidebar ul li a {
334
+ color: #333;
335
+ padding-left: 2px;
336
+ text-decoration: none;
337
+ display: inline-block;
338
+ height: 17px;
339
+ line-height: 17px;
340
+ margin: 2px 0;
341
+ }
342
+ /* line 306, ../../app/stylesheets/screen.scss */
343
+ #sidebar ul li a:visited {
344
+ color: #2e3192;
345
+ }
346
+ /* line 313, ../../app/stylesheets/screen.scss */
347
+ #sidebar form li {
348
+ list-style: none;
349
+ padding: 0;
350
+ }
351
+
352
+ /* line 319, ../../app/stylesheets/screen.scss */
353
+ #sidebar li a:hover {
354
+ color: #444444;
355
+ }
356
+
357
+ /* Sidebar Icons */
358
+ /* line 325, ../../app/stylesheets/screen.scss */
359
+ #sidebar li.icn_new_article a {
360
+ background: url(../images/_ui/icn_new_article.png) no-repeat center left;
361
+ }
362
+
363
+ /* line 328, ../../app/stylesheets/screen.scss */
364
+ #sidebar li.icn_edit_article a {
365
+ background: url(../images/_ui/icn_edit_article.png) no-repeat center left;
366
+ }
367
+
368
+ /* line 331, ../../app/stylesheets/screen.scss */
369
+ #sidebar li.icn_categories a {
370
+ background: url(../images/_ui/icn_categories.png) no-repeat center left;
371
+ }
372
+
373
+ /* line 334, ../../app/stylesheets/screen.scss */
374
+ #sidebar li.icn_tags a {
375
+ background: url(../images/_ui/icn_tags.png) no-repeat center left;
376
+ }
377
+
378
+ /* line 337, ../../app/stylesheets/screen.scss */
379
+ #sidebar li.icn_add_user a {
380
+ background: url(../images/_ui/icn_add_user.png) no-repeat center left;
381
+ }
382
+
383
+ /* line 340, ../../app/stylesheets/screen.scss */
384
+ #sidebar li.icn_view_users a {
385
+ background: url(../images/_ui/icn_view_users.png) no-repeat center left;
386
+ }
387
+
388
+ /* line 343, ../../app/stylesheets/screen.scss */
389
+ #sidebar li.icn_profile a {
390
+ background: url(../images/_ui/icn_profile.png) no-repeat center left;
391
+ }
392
+
393
+ /* line 346, ../../app/stylesheets/screen.scss */
394
+ #sidebar li.icn_folder a {
395
+ background: url(../images/_ui/icn_folder.png) no-repeat center left;
396
+ }
397
+
398
+ /* line 349, ../../app/stylesheets/screen.scss */
399
+ #sidebar li.icn_photo a {
400
+ background: url(../images/_ui/icn_photo.png) no-repeat center left;
401
+ }
402
+
403
+ /* line 352, ../../app/stylesheets/screen.scss */
404
+ #sidebar li.icn_audio a {
405
+ background: url(../images/_ui/icn_audio.png) no-repeat center left;
406
+ }
407
+
408
+ /* line 355, ../../app/stylesheets/screen.scss */
409
+ #sidebar li.icn_video a {
410
+ background: url(../images/_ui/icn_video.png) no-repeat center left;
411
+ }
412
+
413
+ /* line 358, ../../app/stylesheets/screen.scss */
414
+ #sidebar li.icn_settings a {
415
+ background: url(../images/_ui/icn_settings.png) no-repeat center left;
416
+ }
417
+
418
+ /* line 361, ../../app/stylesheets/screen.scss */
419
+ #sidebar li.icn_security a {
420
+ background: url(../images/_ui/icn_security.png) no-repeat center left;
421
+ }
422
+
423
+ /* line 364, ../../app/stylesheets/screen.scss */
424
+ #sidebar li.icn_jump_back a {
425
+ background: url(../images/_ui/icn_jump_back.png) no-repeat center left;
426
+ }
427
+
428
+ /* line 368, ../../app/stylesheets/screen.scss */
429
+ #sidebar p {
430
+ color: #666666;
431
+ padding-left: 6%;
432
+ text-shadow: 0 1px 0 #fff;
433
+ margin: 10px 0 0 0;
434
+ }
435
+
436
+ /* line 374, ../../app/stylesheets/screen.scss */
437
+ #sidebar a {
438
+ color: #666666;
439
+ text-decoration: none;
440
+ }
441
+
442
+ /* line 379, ../../app/stylesheets/screen.scss */
443
+ #sidebar a:hover {
444
+ text-decoration: underline;
445
+ }
446
+
447
+ /* line 383, ../../app/stylesheets/screen.scss */
448
+ #sidebar footer {
449
+ margin-top: 20%;
450
+ }
451
+
452
+ /* Main Content */
453
+ /* line 391, ../../app/stylesheets/screen.scss */
454
+ section#main {
455
+ width: 77%;
456
+ min-height: 500px;
457
+ background: url(../images/_ui/sidebar_shadow.png) repeat-y left top;
458
+ float: left;
459
+ margin-top: -2px;
460
+ }
461
+
462
+ /* line 399, ../../app/stylesheets/screen.scss */
463
+ #main h3 {
464
+ color: #1F1F20;
465
+ text-shadow: 0 1px 0 #fff;
466
+ font-size: 13px;
467
+ margin: 8px 20px;
468
+ }
469
+
470
+ /* Modules */
471
+ /* line 408, ../../app/stylesheets/screen.scss */
472
+ .module {
473
+ border: 1px solid #ddd;
474
+ width: 100%;
475
+ margin: 20px 3% 0 3%;
476
+ margin-top: 20px;
477
+ -webkit-border-radius: 5px;
478
+ -moz-border-radius: 5px;
479
+ border-radius: 5px;
480
+ background: #ffffff;
481
+ }
482
+
483
+ /* line 419, ../../app/stylesheets/screen.scss */
484
+ #main .module header h3 {
485
+ display: block;
486
+ width: 90%;
487
+ float: left;
488
+ }
489
+
490
+ /* line 425, ../../app/stylesheets/screen.scss */
491
+ .module header {
492
+ height: 38px;
493
+ width: 100%;
494
+ background: #f1f1f4 url(../images/_ui/secondary_bar.png) repeat-x;
495
+ -webkit-border-top-left-radius: 5px;
496
+ -webkit-border-top-right-radius: 5px;
497
+ -moz-border-radius-topleft: 5px;
498
+ -moz-border-radius-topright: 5px;
499
+ border-top-left-radius: 5px;
500
+ border-top-right-radius: 5px;
501
+ }
502
+
503
+ /* line 434, ../../app/stylesheets/screen.scss */
504
+ .module footer {
505
+ height: 32px;
506
+ width: 100%;
507
+ border-top: 1px solid #9CA1B0;
508
+ background: #f1f1f4 url(../images/_ui/module_footer_bg.png) repeat-x;
509
+ -webkit-border-bottom-left-radius: 5px;
510
+ -webkit-border-bottom-right-radius: 5px;
511
+ -moz-border-radius-bottomleft: 5px;
512
+ -moz-border-radius-bottomright: 5px;
513
+ -webkit-border-bottom-left-radius: 5px;
514
+ -webkit-border-bottom-right-radius: 5px;
515
+ }
516
+
517
+ /* line 444, ../../app/stylesheets/screen.scss */
518
+ .module_content {
519
+ margin: 10px 20px;
520
+ color: #666;
521
+ }
522
+
523
+ /* Module Widths */
524
+ /* line 450, ../../app/stylesheets/screen.scss */
525
+ .width_full {
526
+ width: 95%;
527
+ }
528
+
529
+ /* line 454, ../../app/stylesheets/screen.scss */
530
+ .width_half {
531
+ width: 46%;
532
+ margin-right: 0;
533
+ float: left;
534
+ }
535
+
536
+ /* line 460, ../../app/stylesheets/screen.scss */
537
+ .width_quarter {
538
+ width: 26%;
539
+ margin-right: 0;
540
+ float: left;
541
+ }
542
+
543
+ /* line 466, ../../app/stylesheets/screen.scss */
544
+ .width_3_quarter {
545
+ width: 66%;
546
+ margin-right: 0;
547
+ float: left;
548
+ }
549
+
550
+ /* Stats Module */
551
+ /* line 474, ../../app/stylesheets/screen.scss */
552
+ .stats_graph {
553
+ width: 64%;
554
+ float: left;
555
+ }
556
+
557
+ /* line 479, ../../app/stylesheets/screen.scss */
558
+ .stats_overview {
559
+ background: #F6F6F6;
560
+ border: 1px solid #ccc;
561
+ float: right;
562
+ width: 26%;
563
+ -webkit-border-radius: 5px;
564
+ -moz-border-radius: 5px;
565
+ border-radius: 5px;
566
+ }
567
+
568
+ /* line 489, ../../app/stylesheets/screen.scss */
569
+ .overview_today, .overview_previous {
570
+ width: 50%;
571
+ float: left;
572
+ }
573
+
574
+ /* line 493, ../../app/stylesheets/screen.scss */
575
+ .stats_overview p {
576
+ margin: 0;
577
+ padding: 0;
578
+ text-align: center;
579
+ text-transform: uppercase;
580
+ text-shadow: 0 1px 0 #fff;
581
+ }
582
+
583
+ /* line 500, ../../app/stylesheets/screen.scss */
584
+ .stats_overview p.overview_day {
585
+ font-size: 12px;
586
+ font-weight: bold;
587
+ margin: 6px 0;
588
+ }
589
+
590
+ /* line 506, ../../app/stylesheets/screen.scss */
591
+ .stats_overview p.overview_count {
592
+ font-size: 26px;
593
+ font-weight: bold;
594
+ color: #333333;
595
+ }
596
+
597
+ /* line 511, ../../app/stylesheets/screen.scss */
598
+ .stats_overview p.overview_type {
599
+ font-size: 10px;
600
+ color: #999999;
601
+ margin-bottom: 8px;
602
+ }
603
+
604
+ /* Content Manager */
605
+ /* line 517, ../../app/stylesheets/screen.scss */
606
+ .selected {
607
+ font-weight: bold;
608
+ background: white;
609
+ }
610
+
611
+ /* line 522, ../../app/stylesheets/screen.scss */
612
+ table {
613
+ width: 100%;
614
+ margin: -5px 0 0 0;
615
+ border-spacing: 0;
616
+ }
617
+ /* line 527, ../../app/stylesheets/screen.scss */
618
+ table td {
619
+ margin: 0;
620
+ padding: 15px 10px;
621
+ border-bottom: 1px dotted #ccc;
622
+ }
623
+ /* line 533, ../../app/stylesheets/screen.scss */
624
+ table thead tr {
625
+ height: 34px;
626
+ background: url(../images/_ui/table_sorter_header.png) repeat-x;
627
+ text-align: left;
628
+ text-indent: 10px;
629
+ cursor: pointer;
630
+ }
631
+ /* line 541, ../../app/stylesheets/screen.scss */
632
+ table .tablesorter input[type=image] {
633
+ margin-right: 10px;
634
+ }
635
+
636
+ /* line 546, ../../app/stylesheets/screen.scss */
637
+ ul.tabs {
638
+ margin: 3px 10px 0 0;
639
+ padding: 0;
640
+ float: right;
641
+ list-style: none;
642
+ height: 24px;
643
+ /*--Set height of tabs--*/
644
+ -webkit-border-radius: 5px;
645
+ -moz-border-radius: 5px;
646
+ border-radius: 5px;
647
+ -webkit-box-shadow: 0 1px 0 #fff;
648
+ -moz-box-shadow: 0 1px 0 #fff;
649
+ box-shadow: 0 1px 0 #fff;
650
+ border: 1px solid #ccc;
651
+ font-weight: bold;
652
+ text-shadow: 0 1px 0 #fff;
653
+ }
654
+
655
+ /* line 562, ../../app/stylesheets/screen.scss */
656
+ ul.tabs li {
657
+ float: left;
658
+ margin: 0;
659
+ padding: 0;
660
+ line-height: 24px;
661
+ }
662
+
663
+ /* line 568, ../../app/stylesheets/screen.scss */
664
+ ul.tabs li a {
665
+ text-decoration: none;
666
+ color: #999;
667
+ display: block;
668
+ padding: 0 10px;
669
+ height: 24px;
670
+ }
671
+
672
+ /* line 576, ../../app/stylesheets/screen.scss */
673
+ ul.tabs li a:hover {
674
+ color: #44474F;
675
+ }
676
+
677
+ /* line 580, ../../app/stylesheets/screen.scss */
678
+ html ul.tabs li.active a {
679
+ color: #44474F;
680
+ }
681
+
682
+ /* line 584, ../../app/stylesheets/screen.scss */
683
+ html ul.tabs li.active, html ul.tabs li.active a:hover {
684
+ background: #F1F2F4;
685
+ -webkit-box-shadow: inset 0 2px 3px #818181;
686
+ -moz-box-shadow: inset 0 2px 3px #818181;
687
+ box-shadow: inset 0 2px 3px #818181;
688
+ }
689
+
690
+ /* line 591, ../../app/stylesheets/screen.scss */
691
+ html ul.tabs li:first-child, html ul.tabs li:first-child a {
692
+ -webkit-border-top-left-radius: 5px;
693
+ -webkit-border-bottom-left-radius: 5px;
694
+ -moz-border-radius-topleft: 5px;
695
+ -moz-border-radius-bottomleft: 5px;
696
+ border-top-left-radius: 5px;
697
+ border-bottom-left-radius: 5px;
698
+ }
699
+
700
+ /* line 597, ../../app/stylesheets/screen.scss */
701
+ html ul.tabs li:last-child, html ul.tabs li:last-child a {
702
+ -webkit-border-top-right-radius: 5px;
703
+ -webkit-border-bottom-right-radius: 5px;
704
+ -moz-border-radius-topright: 5px;
705
+ -moz-border-radius-bottomright: 5px;
706
+ border-top-right-radius: 5px;
707
+ border-bottom-right-radius: 5px;
708
+ }
709
+
710
+ /* line 603, ../../app/stylesheets/screen.scss */
711
+ #main .module header h3.tabs_involved {
712
+ display: block;
713
+ width: 60%;
714
+ float: left;
715
+ }
716
+
717
+ /* Messages */
718
+ /* line 611, ../../app/stylesheets/screen.scss */
719
+ .message {
720
+ border-bottom: 1px dotted #cccccc;
721
+ }
722
+
723
+ /* line 615, ../../app/stylesheets/screen.scss */
724
+ input[type=submit] {
725
+ background: #d0d1d4 url(../images/_ui/btn_submit.png) repeat-x;
726
+ border: 1px solid #A8A9A8;
727
+ -webkit-box-shadow: 0 1px 0 #fff;
728
+ -moz-box-shadow: 0 1px 0 #fff;
729
+ box-shadow: 0 1px 0 #fff;
730
+ font-weight: bold;
731
+ height: 22px;
732
+ -webkit-border-radius: 5px;
733
+ -moz-border-radius: 5px;
734
+ border-radius: 5px;
735
+ padding: 0 10px;
736
+ color: #666;
737
+ text-shadow: 0 1px 0 #fff;
738
+ cursor: pointer;
739
+ }
740
+
741
+ /* line 632, ../../app/stylesheets/screen.scss */
742
+ input[type=submit]:hover {
743
+ color: #333333;
744
+ }
745
+
746
+ /* line 636, ../../app/stylesheets/screen.scss */
747
+ input[type=submit].alt_btn {
748
+ background: #d0d1d4 url(../images/_ui/btn_submit_2.png) repeat-x;
749
+ border: 1px solid#30B0C8;
750
+ -webkit-box-shadow: 0 1px 0 #fff;
751
+ -moz-box-shadow: 0 1px 0 #fff;
752
+ box-shadow: 0 1px 0 #fff;
753
+ font-weight: bold;
754
+ height: 22px;
755
+ -webkit-border-radius: 5px;
756
+ -moz-border-radius: 5px;
757
+ border-radius: 5px;
758
+ padding: 0 10px;
759
+ color: #003E49;
760
+ text-shadow: 0 1px 0 #6CDCF9;
761
+ cursor: pointer;
762
+ }
763
+
764
+ /* line 653, ../../app/stylesheets/screen.scss */
765
+ input[type=submit].alt_btn:hover {
766
+ color: #001217;
767
+ }
768
+
769
+ /* line 657, ../../app/stylesheets/screen.scss */
770
+ input[type=submit].btn_post_message {
771
+ background: #d0d1d4 url(../images/_ui/post_message.png) no-repeat;
772
+ display: block;
773
+ width: 37px;
774
+ border: none;
775
+ height: 24px;
776
+ cursor: pointer;
777
+ text-indent: -5000px;
778
+ }
779
+
780
+ /* line 667, ../../app/stylesheets/screen.scss */
781
+ input[type=submit].btn_post_message:hover {
782
+ background-position: 0 -24px;
783
+ }
784
+
785
+ /* line 671, ../../app/stylesheets/screen.scss */
786
+ .post_message {
787
+ text-align: left;
788
+ padding: 5px 0;
789
+ }
790
+
791
+ /* line 676, ../../app/stylesheets/screen.scss */
792
+ .post_message input[type=text] {
793
+ -webkit-border-radius: 5px;
794
+ -moz-border-radius: 5px;
795
+ border-radius: 5px;
796
+ border: 1px solid #bbb;
797
+ height: 20px;
798
+ width: 70%;
799
+ color: #ccc;
800
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
801
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
802
+ box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
803
+ text-indent: 10px;
804
+ background-position: 10px 6px;
805
+ float: left;
806
+ margin: 0 3.5%;
807
+ }
808
+
809
+ /* line 693, ../../app/stylesheets/screen.scss */
810
+ .post_message input[type=text]:focus {
811
+ outline: none;
812
+ border: 1px solid #77BACE;
813
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
814
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
815
+ box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
816
+ color: #666666;
817
+ }
818
+
819
+ /* line 702, ../../app/stylesheets/screen.scss */
820
+ .post_message input[type=image] {
821
+ float: left;
822
+ }
823
+
824
+ /* line 706, ../../app/stylesheets/screen.scss */
825
+ .message_list {
826
+ height: 250px;
827
+ overflow-x: hidden;
828
+ overflow-y: scroll;
829
+ }
830
+
831
+ /* New/Edit Article Module */
832
+ /* line 714, ../../app/stylesheets/screen.scss */
833
+ fieldset {
834
+ -webkit-border-radius: 5px;
835
+ -moz-border-radius: 5px;
836
+ border-radius: 5px;
837
+ background: #F6F6F6;
838
+ border: 1px solid #ccc;
839
+ padding: 1% 0%;
840
+ margin: 10px 0;
841
+ }
842
+
843
+ /* line 724, ../../app/stylesheets/screen.scss */
844
+ fieldset label {
845
+ display: block;
846
+ float: left;
847
+ width: 200px;
848
+ height: 25px;
849
+ line-height: 25px;
850
+ text-shadow: 0 1px 0 #fff;
851
+ font-weight: bold;
852
+ padding-left: 10px;
853
+ margin: -5px 0 5px 0;
854
+ text-transform: uppercase;
855
+ }
856
+
857
+ /* line 737, ../../app/stylesheets/screen.scss */
858
+ fieldset input[type=text] {
859
+ -webkit-border-radius: 5px;
860
+ -moz-border-radius: 5px;
861
+ border-radius: 5px;
862
+ border: 1px solid #BBBBBB;
863
+ height: 20px;
864
+ color: #666666;
865
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
866
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
867
+ box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
868
+ padding-left: 10px;
869
+ background-position: 10px 6px;
870
+ margin: 0;
871
+ display: block;
872
+ float: left;
873
+ width: 96%;
874
+ margin: 0 10px;
875
+ }
876
+
877
+ /* line 756, ../../app/stylesheets/screen.scss */
878
+ fieldset input[type=text]:focus {
879
+ outline: none;
880
+ border: 1px solid #77BACE;
881
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
882
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
883
+ box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
884
+ }
885
+
886
+ /* line 764, ../../app/stylesheets/screen.scss */
887
+ fieldset select {
888
+ width: 96%;
889
+ margin: 0 10px;
890
+ border: 1px solid #bbb;
891
+ height: 20px;
892
+ color: #666666;
893
+ }
894
+
895
+ /* line 772, ../../app/stylesheets/screen.scss */
896
+ fieldset textarea {
897
+ -webkit-border-radius: 5px;
898
+ -moz-border-radius: 5px;
899
+ border-radius: 5px;
900
+ border: 1px solid #BBBBBB;
901
+ color: #666666;
902
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
903
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
904
+ box-shadow: inset 0 2px 2px #ccc, 0 1px 0 #fff;
905
+ padding-left: 10px;
906
+ background-position: 10px 6px;
907
+ margin: 0 0.5%;
908
+ display: block;
909
+ float: left;
910
+ width: 96%;
911
+ margin: 0 10px;
912
+ }
913
+
914
+ /* line 790, ../../app/stylesheets/screen.scss */
915
+ fieldset textarea:focus {
916
+ outline: none;
917
+ border: 1px solid #77BACE;
918
+ -webkit-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
919
+ -moz-box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
920
+ box-shadow: inset 0 2px 2px #ccc, 0 0 10px #ADDCE6;
921
+ }
922
+
923
+ /* line 798, ../../app/stylesheets/screen.scss */
924
+ .submit_link {
925
+ float: right;
926
+ margin-right: 3%;
927
+ padding: 5px 0;
928
+ }
929
+
930
+ /* line 804, ../../app/stylesheets/screen.scss */
931
+ .submit_link select {
932
+ width: 150px;
933
+ border: 1px solid #bbb;
934
+ height: 20px;
935
+ color: #666666;
936
+ }
937
+
938
+ /* line 811, ../../app/stylesheets/screen.scss */
939
+ #main .module_content h1 {
940
+ color: #333333;
941
+ text-transform: none;
942
+ text-shadow: 0 1px 0 #fff;
943
+ font-size: 22px;
944
+ margin: 8px 0px;
945
+ }
946
+
947
+ /* line 819, ../../app/stylesheets/screen.scss */
948
+ #main .module_content h2 {
949
+ color: #444444;
950
+ text-transform: none;
951
+ text-shadow: 0 1px 0 #fff;
952
+ font-size: 18px;
953
+ margin: 8px 0px;
954
+ }
955
+
956
+ /* line 827, ../../app/stylesheets/screen.scss */
957
+ #main .module_content h3 {
958
+ color: #666666;
959
+ text-transform: uppercase;
960
+ text-shadow: 0 1px 0 #fff;
961
+ font-size: 13px;
962
+ margin: 8px 0px;
963
+ }
964
+
965
+ /* line 835, ../../app/stylesheets/screen.scss */
966
+ #main .module_content h4 {
967
+ color: #666666;
968
+ text-transform: none;
969
+ text-shadow: 0 1px 0 #fff;
970
+ font-size: 13px;
971
+ margin: 8px 0px;
972
+ }
973
+
974
+ /* line 843, ../../app/stylesheets/screen.scss */
975
+ #main .module_content li {
976
+ line-height: 150%;
977
+ }
978
+
979
+ /* Alerts */
980
+ /* line 849, ../../app/stylesheets/screen.scss */
981
+ #main h4.alert_info {
982
+ display: block;
983
+ width: 95%;
984
+ margin: 20px 3% 0 3%;
985
+ margin-top: 20px;
986
+ -webkit-border-radius: 5px;
987
+ -moz-border-radius: 5px;
988
+ border-radius: 5px;
989
+ background: #b5e5ef url(../images/_ui/icn_alert_info.png) no-repeat;
990
+ background-position: 10px 10px;
991
+ border: 1px solid #77BACE;
992
+ color: #082B33;
993
+ padding: 10px 0;
994
+ text-indent: 40px;
995
+ font-size: 14px;
996
+ }
997
+
998
+ /* line 865, ../../app/stylesheets/screen.scss */
999
+ #main h4.alert_warning {
1000
+ display: block;
1001
+ width: 95%;
1002
+ margin: 20px 3% 0 3%;
1003
+ margin-top: 20px;
1004
+ -webkit-border-radius: 5px;
1005
+ -moz-border-radius: 5px;
1006
+ border-radius: 5px;
1007
+ background: #f5f3ba url(../images/_ui/icn_alert_warning.png) no-repeat;
1008
+ background-position: 10px 10px;
1009
+ border: 1px solid #C7A20D;
1010
+ color: #796616;
1011
+ padding: 10px 0;
1012
+ text-indent: 40px;
1013
+ font-size: 14px;
1014
+ }
1015
+
1016
+ /* line 881, ../../app/stylesheets/screen.scss */
1017
+ #main h4.alert_error {
1018
+ display: block;
1019
+ width: 95%;
1020
+ margin: 20px 3% 0 3%;
1021
+ margin-top: 20px;
1022
+ -webkit-border-radius: 5px;
1023
+ -moz-border-radius: 5px;
1024
+ border-radius: 5px;
1025
+ background: #f3d9d9 url(../images/_ui/icn_alert_error.png) no-repeat;
1026
+ background-position: 10px 10px;
1027
+ border: 1px solid #D20009;
1028
+ color: #7B040F;
1029
+ padding: 10px 0;
1030
+ text-indent: 40px;
1031
+ font-size: 14px;
1032
+ }
1033
+
1034
+ /* line 897, ../../app/stylesheets/screen.scss */
1035
+ #main h4.alert_success {
1036
+ display: block;
1037
+ width: 95%;
1038
+ margin: 20px 3% 0 3%;
1039
+ margin-top: 20px;
1040
+ -webkit-border-radius: 5px;
1041
+ -moz-border-radius: 5px;
1042
+ border-radius: 5px;
1043
+ background: #e2f6c5 url(../images/_ui/icn_alert_success.png) no-repeat;
1044
+ background-position: 10px 10px;
1045
+ border: 1px solid #79C20D;
1046
+ color: #32510F;
1047
+ padding: 10px 0;
1048
+ text-indent: 40px;
1049
+ font-size: 14px;
1050
+ }
1051
+
1052
+ /* line 915, ../../app/stylesheets/screen.scss */
1053
+ #main table p {
1054
+ margin-top: 0;
1055
+ }
1056
+ /* line 919, ../../app/stylesheets/screen.scss */
1057
+ #main table td.label {
1058
+ width: 120px;
1059
+ font-weight: bold;
1060
+ text-align: right;
1061
+ vertical-align: top;
1062
+ }
1063
+ /* line 926, ../../app/stylesheets/screen.scss */
1064
+ #main table td.value {
1065
+ white-space: nowrap;
1066
+ overflow-x: auto;
1067
+ }
1068
+ /* line 931, ../../app/stylesheets/screen.scss */
1069
+ #main table ul {
1070
+ list-style: none;
1071
+ margin: 0;
1072
+ padding: 0;
1073
+ }
1074
+ /* line 935, ../../app/stylesheets/screen.scss */
1075
+ #main table ul li {
1076
+ margin: 0;
1077
+ padding: 0;
1078
+ }
1079
+ /* line 939, ../../app/stylesheets/screen.scss */
1080
+ #main table ul li ul {
1081
+ margin-left: 5px;
1082
+ }