stackoverfeeds 1.0.0

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 (72) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +121 -0
  4. data/Rakefile +32 -0
  5. data/app/assets/javascripts/stackoverfeeds/application.js +13 -0
  6. data/app/assets/stylesheets/stackoverfeeds/application.css +13 -0
  7. data/app/controllers/stackoverfeeds/application_controller.rb +4 -0
  8. data/app/controllers/stackoverfeeds/so_feeds_controller.rb +10 -0
  9. data/app/helpers/stackoverfeeds/application_helper.rb +4 -0
  10. data/app/helpers/stackoverfeeds/stackoverfeeds_helper.rb +8 -0
  11. data/app/models/stackoverfeeds/so_feed.rb +9 -0
  12. data/app/views/stackoverfeeds/_stackoverflow_feeds.html.erb +28 -0
  13. data/app/views/stackoverfeeds/application.html.erb +14 -0
  14. data/config/routes.rb +3 -0
  15. data/db/migrate/20140402191249_create_stackoverfeeds_so_feeds.rb +14 -0
  16. data/lib/generators/stackoverfeeds/install/install_generator.rb +74 -0
  17. data/lib/generators/stackoverfeeds/install/templates/application.css +7 -0
  18. data/lib/generators/stackoverfeeds/install/templates/application.js +16 -0
  19. data/lib/generators/stackoverfeeds/install/templates/config.yml +14 -0
  20. data/lib/generators/stackoverfeeds/install/templates/feeds.css +791 -0
  21. data/lib/generators/stackoverfeeds/install/templates/feeds.js +21 -0
  22. data/lib/generators/stackoverfeeds/install/templates/schedule.rb +7 -0
  23. data/lib/generators/stackoverfeeds/install/templates/sprites.png +0 -0
  24. data/lib/stackoverfeeds.rb +4 -0
  25. data/lib/stackoverfeeds/engine.rb +11 -0
  26. data/lib/stackoverfeeds/stackoverfeeds_handler.rb +34 -0
  27. data/lib/stackoverfeeds/version.rb +3 -0
  28. data/lib/tasks/stackoverfeeds_tasks.rake +14 -0
  29. data/spec/dummy/README.rdoc +28 -0
  30. data/spec/dummy/Rakefile +6 -0
  31. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  32. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  33. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  34. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  35. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  36. data/spec/dummy/bin/bundle +3 -0
  37. data/spec/dummy/bin/rails +4 -0
  38. data/spec/dummy/bin/rake +4 -0
  39. data/spec/dummy/config.ru +4 -0
  40. data/spec/dummy/config/application.rb +28 -0
  41. data/spec/dummy/config/boot.rb +5 -0
  42. data/spec/dummy/config/database.yml +25 -0
  43. data/spec/dummy/config/environment.rb +5 -0
  44. data/spec/dummy/config/environments/development.rb +29 -0
  45. data/spec/dummy/config/environments/production.rb +80 -0
  46. data/spec/dummy/config/environments/test.rb +36 -0
  47. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  48. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  49. data/spec/dummy/config/initializers/inflections.rb +16 -0
  50. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  51. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  52. data/spec/dummy/config/initializers/session_store.rb +3 -0
  53. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  54. data/spec/dummy/config/locales/en.yml +23 -0
  55. data/spec/dummy/config/routes.rb +4 -0
  56. data/spec/dummy/db/development.sqlite3 +0 -0
  57. data/spec/dummy/db/migrate/20140403144550_create_stackoverfeeds_so_feeds.stackoverfeeds.rb +15 -0
  58. data/spec/dummy/db/schema.rb +27 -0
  59. data/spec/dummy/db/test.sqlite3 +0 -0
  60. data/spec/dummy/log/development.log +19 -0
  61. data/spec/dummy/log/test.log +772 -0
  62. data/spec/dummy/public/404.html +58 -0
  63. data/spec/dummy/public/422.html +58 -0
  64. data/spec/dummy/public/500.html +57 -0
  65. data/spec/dummy/public/favicon.ico +0 -0
  66. data/spec/dummy/spec/helpers/stackoverfeeds_spec.rb +20 -0
  67. data/spec/dummy/spec/lib/stackoverfeeds_handler_spec.rb +17 -0
  68. data/spec/dummy/spec/models/so_feed_spec.rb +32 -0
  69. data/spec/dummy/spec/resources/member.atom +243 -0
  70. data/spec/dummy/spec/spec_helper.rb +18 -0
  71. data/spec/dummy/spec/support/blueprints.rb +10 -0
  72. metadata +256 -0
@@ -0,0 +1,791 @@
1
+ #stackoverflow_feeds .user-panel .user-panel-content {
2
+ margin-bottom: 10px;
3
+ }
4
+ #stackoverflow_feeds .user-panel table {
5
+ width: 100%}
6
+ #stackoverflow_feeds .user-panel table td {
7
+ padding: 6px 0;
8
+ vertical-align: middle;
9
+ }
10
+ #stackoverflow_feeds .user-panel .question-hyperlink, #stackoverflow_feeds .user-panel .answer-hyperlink, #stackoverflow_feeds .user-panel .site-hyperlink {
11
+ font-size: 110%;
12
+ font-weight: normal;
13
+ line-height: 1.3;
14
+ display: block;
15
+ max-width: 425px;
16
+ overflow: hidden;
17
+ white-space: nowrap;
18
+ text-overflow: ellipsis;
19
+ }
20
+ #stackoverflow_feeds .user-panel .question-hyperlink, #stackoverflow_feeds .user-panel .answer-hyperlink {
21
+ width: 425px;
22
+ }
23
+ #stackoverflow_feeds .user-panel .user-tags td, #stackoverflow_feeds .user-panel .user-badges td {
24
+ padding: 3px;
25
+ }
26
+ #stackoverflow_feeds .user-panel .user-tags td .badge, #stackoverflow_feeds .user-panel .user-badges td .badge {
27
+ margin: 0 3px 3px 0;
28
+ }
29
+ #stackoverflow_feeds .user-panel .user-tags td .badge-tag, #stackoverflow_feeds .user-panel .user-badges td .badge-tag {
30
+ margin: 0 3px 1px 0;
31
+ }
32
+ #stackoverflow_feeds .user-panel .votes-cast-stats {
33
+ margin-left: 10px;
34
+ width: auto;
35
+ }
36
+ #stackoverflow_feeds .user-panel .votes-cast-stats td.desc {
37
+ padding-left: 6px;
38
+ }
39
+ #stackoverflow_feeds .user-panel .votes-cast-stats tr {
40
+ border-top: none;
41
+ }
42
+ #stackoverflow_feeds .user-panel #leagueRank a {
43
+ color: #07c;
44
+ float: right;
45
+ padding-top: 15px;
46
+ }
47
+ #stackoverflow_feeds .user-panel .favicon {
48
+ height: 16px;
49
+ }
50
+ #stackoverflow_feeds .user-panel-mod-info {
51
+ background-color: #fff7e5;
52
+ border: solid 1px #ffefc6;
53
+ padding: 4px;
54
+ margin-bottom: 10px;
55
+ }
56
+ #stackoverflow_feeds .user-panel-mod-info table {
57
+ margin-bottom: 0;
58
+ }
59
+ #stackoverflow_feeds .user-panel-mod-info table tr {
60
+ border-top: none !important;
61
+ }
62
+ #stackoverflow_feeds .user-panel-mod-info table td {
63
+ padding: 3px 8px 3px 3px;
64
+ vertical-align: middle;
65
+ }
66
+ #stackoverflow_feeds .user-panel-mod-info table td.spacer {
67
+ width: 20px;
68
+ }
69
+ #stackoverflow_feeds .user-panel-mod-info .mod-label {
70
+ color: #999;
71
+ }
72
+ #stackoverflow_feeds .user-panel-mod-info .mod-label.extra-padding {
73
+ padding-left: 30px;
74
+ }
75
+ #stackoverflow_feeds .user-panel-mod-info .ip-address-lookup {
76
+ font-weight: bold;
77
+ }
78
+ #stackoverflow_feeds .user-tab .subheader .blocked-info .detail-info, #stackoverflow_feeds .user-panel-mod-info .detail-info, #stackoverflow_feeds .user-tab .subheader .blocked-info .blocked-no, #stackoverflow_feeds .user-panel-mod-info .blocked-no {
79
+ color: #888;
80
+ }
81
+ #stackoverflow_feeds .user-tab .subheader .blocked-info a, #stackoverflow_feeds .user-panel-mod-info a {
82
+ color: #07c;
83
+ }
84
+ #stackoverflow_feeds .user-tab .subheader .blocked-info a:visited, #stackoverflow_feeds .user-panel-mod-info a:visited {
85
+ color: #07c;
86
+ }
87
+ #stackoverflow_feeds .user-tab .subheader .blocked-info a.user-moderator-link, #stackoverflow_feeds .user-panel-mod-info a.user-moderator-link {
88
+ font-weight: bold;
89
+ }
90
+ #stackoverflow_feeds .user-tab .subheader .blocked-info .blocked-yes, #stackoverflow_feeds .user-panel-mod-info .blocked-yes {
91
+ font-weight: bold;
92
+ color: #800000;
93
+ }
94
+ #stackoverflow_feeds .user-tab .subheader .blocked-info {
95
+ font-size: 12px;
96
+ }
97
+ #stackoverflow_feeds .user-panel-left {
98
+ margin-right: 30px;
99
+ }
100
+ #stackoverflow_feeds .user-tab .subheader {
101
+ border-bottom: 0;
102
+ }
103
+ #stackoverflow_feeds .user-tab .subheader .subtabs {
104
+ float: none;
105
+ padding-top: 5px;
106
+ width: auto;
107
+ }
108
+ #stackoverflow_feeds .user-tab .subheader .count {
109
+ font-weight: normal;
110
+ color: #808080;
111
+ }
112
+ #stackoverflow_feeds .user-questions .question-summary {
113
+ width: 900px;
114
+ }
115
+ #stackoverflow_feeds .user-rep .rep-amount {
116
+ padding-right: 10px;
117
+ min-width: 20px;
118
+ }
119
+ #stackoverflow_feeds .user-rep .rep-up {
120
+ color: #008000;
121
+ }
122
+ #stackoverflow_feeds .user-rep .rep-down {
123
+ color: #f00;
124
+ }
125
+ #stackoverflow_feeds .user-rep .special-rep {
126
+ background-color: #008000;
127
+ color: #fff;
128
+ padding: 1px 3px;
129
+ margin-right: 5px;
130
+ -moz-border-radius: 2px;
131
+ -webkit-border-radius: 2px;
132
+ border-radius: 1px;
133
+ font-size: 11px;
134
+ }
135
+ #stackoverflow_feeds .user-rep-chart-summary {
136
+ width: 465px;
137
+ height: 35px;
138
+ font-size: 0;
139
+ border-bottom: 1px solid #ddd;
140
+ }
141
+ #stackoverflow_feeds .user-rep-chart-summary .user-rep-chart-summary-tooltip {
142
+ display: inline-block;
143
+ position: relative;
144
+ height: 100%;
145
+ width: 13px;
146
+ margin-right: 2.5px;
147
+ }
148
+ #stackoverflow_feeds .user-rep-chart-summary .user-rep-chart-summary-tooltip:last-child {
149
+ margin-right: 0;
150
+ }
151
+ #stackoverflow_feeds .user-rep-chart-summary .user-rep-chart-summary-tooltip:hover {
152
+ background-color: #eee;
153
+ }
154
+ #stackoverflow_feeds .user-rep-chart-summary .user-rep-chart-summary-bar {
155
+ position: absolute;
156
+ width: 13px;
157
+ background-color: #acc99d;
158
+ bottom: 0;
159
+ }
160
+ #stackoverflow_feeds #tabs a {
161
+ padding-left: 7px;
162
+ padding-right: 7px;
163
+ }
164
+ #stackoverflow_feeds .bounty-indicator-tab {
165
+ margin-right: 0;
166
+ }
167
+ #stackoverflow_feeds .user-rep-full .no-rep-results {
168
+ text-align: center;
169
+ padding-top: 10px;
170
+ }
171
+ #stackoverflow_feeds .user-rep-full #stats {
172
+ margin: 10px 0;
173
+ }
174
+ #stackoverflow_feeds .user-rep-full .rep-table {
175
+ width: 100%}
176
+ #stackoverflow_feeds .user-rep-full .rep-table-row>td {
177
+ border-bottom: dotted 1px #f0f0f0;
178
+ padding-top: 2px;
179
+ padding-bottom: 6px;
180
+ cursor: pointer;
181
+ }
182
+ #stackoverflow_feeds .user-rep-full .tbl-reputation {
183
+ width: 100%}
184
+ #stackoverflow_feeds .user-rep-full #stats .bounty-indicator-tab {
185
+ margin-right: 0;
186
+ }
187
+ #stackoverflow_feeds .user-rep-full #stats .accept-indicator-tab {
188
+ background-color: #008000;
189
+ }
190
+ #stackoverflow_feeds .user-rep-full #stats .accept-indicator-tab-deleted {
191
+ background-color: #800000;
192
+ }
193
+ #stackoverflow_feeds .user-rep-full .rep-cell {
194
+ font-weight: bold;
195
+ padding: 2px;
196
+ white-space: nowrap;
197
+ width: 50px;
198
+ text-align: right;
199
+ font-size: 140%}
200
+ #stackoverflow_feeds .user-rep-full .rep-left {
201
+ padding: 2px;
202
+ white-space: nowrap;
203
+ width: 50px;
204
+ text-align: right;
205
+ }
206
+ #stackoverflow_feeds .user-rep-full .rep-big {
207
+ font-weight: bold;
208
+ font-size: 110%}
209
+ #stackoverflow_feeds .user-rep-full .rep-up {
210
+ color: #008000;
211
+ }
212
+ #stackoverflow_feeds .user-rep-full .rep-sep {
213
+ color: #444;
214
+ font-weight: normal;
215
+ }
216
+ #stackoverflow_feeds .user-rep-full .rep-down {
217
+ color: #800000;
218
+ }
219
+ #stackoverflow_feeds .user-rep-full .rep-neutral {
220
+ color: #444;
221
+ }
222
+ #stackoverflow_feeds .user-rep-full .rep-time {
223
+ width: 80px;
224
+ padding-left: 15px;
225
+ }
226
+ #stackoverflow_feeds .user-rep-full .rep-link a, #stackoverflow_feeds .user-rep-full .rep-link a.question-hyperlink, #stackoverflow_feeds .user-rep-full .rep-link a.answer-hyperlink {
227
+ font-size: 100%;
228
+ line-height: 1;
229
+ }
230
+ #stackoverflow_feeds .user-rep-full .rep-info, #stackoverflow_feeds .user-rep-full .rep-desc {
231
+ color: #666;
232
+ }
233
+ #stackoverflow_feeds .user-rep-full .rep-desc {
234
+ padding-right: 10px;
235
+ width: 70px;
236
+ }
237
+ #stackoverflow_feeds .user-rep-full .rep-day {
238
+ color: #666;
239
+ }
240
+ #stackoverflow_feeds .user-rep-full .rep-none {
241
+ color: #999;
242
+ }
243
+ #stackoverflow_feeds .user-rep-full .rep-footnote {
244
+ padding: 10px 0 5px 0;
245
+ color: #888;
246
+ text-align: center;
247
+ }
248
+ #stackoverflow_feeds .user-rep-full .rep-table .loaded-body {
249
+ background: #fcfcfc;
250
+ background: rgba(1, 1, 1, 0.02);
251
+ }
252
+ #stackoverflow_feeds .user-rep-full .rep-breakdown {
253
+ padding: 6px 0;
254
+ }
255
+ #stackoverflow_feeds .user-rep-full .rep-breakdown-row>td {
256
+ padding-bottom: 6px;
257
+ }
258
+ #stackoverflow_feeds .user-rep-full .rep-recent-row {
259
+ background-color: #ffd;
260
+ }
261
+ #stackoverflow_feeds .user-rep-full .expandable-row {
262
+ cursor: pointer;
263
+ }
264
+ #stackoverflow_feeds .user-rep-full .timeline-date, #stackoverflow_feeds .user-rep-full .rep-time {
265
+ padding-right: 5px;
266
+ color: #bbb;
267
+ }
268
+ #stackoverflow_feeds .user-rep-full .timeline-date {
269
+ display: inline-block;
270
+ min-width: 85px;
271
+ }
272
+ #stackoverflow_feeds .user-rep-full .rep-no-changes {
273
+ text-align: center;
274
+ color: #888;
275
+ }
276
+ #stackoverflow_feeds .user-tags, #stackoverflow_feeds .user-badges {
277
+ width: 100%}
278
+ #stackoverflow_feeds .user-tags .answer-votes, #stackoverflow_feeds .user-badges .answer-votes {
279
+ margin-right: 5px;
280
+ width: 25px;
281
+ margin-top: 2px;
282
+ }
283
+ #stackoverflow_feeds .user-page-content {
284
+ padding-top: 5px;
285
+ }
286
+ #stackoverflow_feeds #user-info-container {
287
+ margin-bottom: 10px;
288
+ }
289
+ #stackoverflow_feeds .answer-summary {
290
+ padding: 5px 0;
291
+ float: left;
292
+ border-bottom: 1px solid #f0f0f0;
293
+ width: 100%}
294
+ #stackoverflow_feeds .answer-link {
295
+ padding: 7px 10px 4px 10px;
296
+ margin-top: 0;
297
+ }
298
+ #stackoverflow_feeds #user-tab-accounts .account-container {
299
+ border-bottom: 1px solid #f0f0f0;
300
+ overflow: auto;
301
+ clear: both;
302
+ padding: 15px;
303
+ text-align: left;
304
+ }
305
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-icon {
306
+ width: 48px;
307
+ height: 48px;
308
+ float: left;
309
+ margin-right: 15px;
310
+ text-align: center;
311
+ }
312
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-icon img {
313
+ width: 48px;
314
+ height: 48px;
315
+ display: block;
316
+ -ms-interpolation-mode: bicubic;
317
+ image-rendering: optimizeQuality;
318
+ }
319
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-site {
320
+ float: left;
321
+ width: 401px;
322
+ }
323
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-site h2 {
324
+ font-size: 16px;
325
+ line-height: 16px;
326
+ margin-bottom: 4px;
327
+ margin-top: 0 !important;
328
+ }
329
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-site p {
330
+ margin-bottom: 2px;
331
+ }
332
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-stat {
333
+ float: left;
334
+ margin-left: 15px;
335
+ font-size: 11px;
336
+ text-align: center;
337
+ width: 80px;
338
+ }
339
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-stat .account-number {
340
+ display: inline-block;
341
+ font-size: 18px;
342
+ font-weight: bold;
343
+ width: 100%}
344
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-stat .account-number, #stackoverflow_feeds #user-tab-accounts .account-container .account-stat .account-badges {
345
+ height: 20px;
346
+ }
347
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-stat .account-badges .badgecount {
348
+ font-size: 15px;
349
+ font-weight: bold;
350
+ }
351
+ #stackoverflow_feeds #user-tab-accounts .account-container .account-stat.account-stat-wide {
352
+ width: 138px;
353
+ }
354
+ #stackoverflow_feeds .history-table {
355
+ margin-bottom: 10px;
356
+ line-height: 125%}
357
+ #stackoverflow_feeds .history-table span.revision-comment {
358
+ line-height: 180%}
359
+ #stackoverflow_feeds .history-table .comments {
360
+ border-top: none;
361
+ }
362
+ #stackoverflow_feeds .history-table td {
363
+ padding: 0 5px 5px 0;
364
+ }
365
+ #stackoverflow_feeds .history-table p {
366
+ margin-bottom: 10px;
367
+ margin-top: 3px;
368
+ }
369
+ #stackoverflow_feeds .history-table .date_brick {
370
+ margin-left: 0;
371
+ float: left;
372
+ }
373
+ #stackoverflow_feeds .history-table td {
374
+ padding: 5px;
375
+ vertical-align: middle;
376
+ }
377
+ #stackoverflow_feeds .history-table>tbody>tr {
378
+ border-top: 1px solid #f0f0f0;
379
+ }
380
+ #stackoverflow_feeds .history-table>tbody>tr:first-child {
381
+ border-top: none;
382
+ }
383
+ #stackoverflow_feeds .history-table>tbody>tr>td:last-child {
384
+ width: 100%}
385
+ #stackoverflow_feeds .history-table .loaded-body {
386
+ border-top: none;
387
+ }
388
+ #stackoverflow_feeds .history-table .loaded-body td:last-child {
389
+ width: auto;
390
+ }
391
+ #stackoverflow_feeds .history-table .date {
392
+ text-align: left;
393
+ font-size: 24px;
394
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
395
+ width: 45px;
396
+ }
397
+ #stackoverflow_feeds .history-table .reviewed-action {
398
+ background-color: #eee;
399
+ font-weight: bold;
400
+ padding: 2px;
401
+ }
402
+ #stackoverflow_feeds .no-content {
403
+ padding-top: 25px;
404
+ color: #999;
405
+ text-align: center;
406
+ }
407
+ #stackoverflow_feeds .user-tab-content .user-tags td, #stackoverflow_feeds .user-tab-content .user-badges td {
408
+ padding: 3px 0;
409
+ }
410
+ #stackoverflow_feeds .question-summary {
411
+ width: 100%;
412
+ border-bottom: 1px solid #f0f0f0;
413
+ }
414
+ #stackoverflow_feeds .count-cell, #stackoverflow_feeds .icon-cell {
415
+ width: 30px;
416
+ }
417
+ #stackoverflow_feeds .user-answers {
418
+ overflow: auto;
419
+ }
420
+ #stackoverflow_feeds #small-user-info .logo {
421
+ float: left;
422
+ }
423
+ #stackoverflow_feeds .subheader {
424
+ margin-bottom: 10px;
425
+ }
426
+ #stackoverflow_feeds .empty {
427
+ margin-bottom: 10px;
428
+ }
429
+ #stackoverflow_feeds .user-tab-content .question-summary {
430
+ width: auto;
431
+ float: none;
432
+ }
433
+ #stackoverflow_feeds .user-tab-content .question-summary .cp {
434
+ float: left;
435
+ }
436
+ #stackoverflow_feeds .user-tab-content .question-summary .favorites-count, #stackoverflow_feeds .user-tab-content .question-summary .favorites-count-off {
437
+ margin-top: 0;
438
+ }
439
+ #stackoverflow_feeds .user-tab-content .question-summary .summary {
440
+ float: none;
441
+ width: auto;
442
+ padding-left: 200px;
443
+ }
444
+ #stackoverflow_feeds .user-tab-content .question-summary .bounty-comment {
445
+ margin-right: 4px;
446
+ float: left;
447
+ line-height: 1;
448
+ }
449
+ #stackoverflow_feeds .user-tab-content .question-summary .bounty-comment .relativetime {
450
+ font-weight: normal;
451
+ }
452
+ #stackoverflow_feeds .highlight-row {
453
+ background-color: #ffd;
454
+ }
455
+ #stackoverflow_feeds #user-tab-questions .star-off {
456
+ cursor: default;
457
+ }
458
+ #stackoverflow_feeds .expander-arrow-hide, #stackoverflow_feeds .expander-arrow-show {
459
+ display: inline-block;
460
+ width: 27px;
461
+ height: 21px;
462
+ background-position: 5px -870px;
463
+ }
464
+ #stackoverflow_feeds .expander-arrow-show {
465
+ background-position: 5px -905px;
466
+ }
467
+ #stackoverflow_feeds .expander-arrow-small-hide, #stackoverflow_feeds .expander-arrow-small-show {
468
+ display: inline-block;
469
+ width: 15px;
470
+ height: 16px;
471
+ background-position: 0 -935px;
472
+ }
473
+ #stackoverflow_feeds .expander-arrow-small-show {
474
+ background-position: 0 -960px;
475
+ }
476
+ #stackoverflow_feeds .answer-hyperlink {
477
+ color: #555 !important;
478
+ font-weight: bold;
479
+ }
480
+ #stackoverflow_feeds .question-hyperlink {
481
+ font-weight: bold;
482
+ }
483
+ #stackoverflow_feeds .answer-link {
484
+ float: left;
485
+ width: 700px;
486
+ margin-top: 5px;
487
+ padding-left: 10px;
488
+ color: #555;
489
+ }
490
+ #stackoverflow_feeds .answer-link a {
491
+ font-weight: bold;
492
+ }
493
+ #stackoverflow_feeds .answer-summary {
494
+ padding: 3px;
495
+ clear: both;
496
+ }
497
+ #stackoverflow_feeds .user-details td {
498
+ color: #000;
499
+ padding: 4px 0 4px 0;
500
+ }
501
+ #stackoverflow_feeds a, #stackoverflow_feeds .envelope-on, #stackoverflow_feeds .envelope-off, #stackoverflow_feeds .vote-up-off, #stackoverflow_feeds .vote-up-on, #stackoverflow_feeds .vote-down-off, #stackoverflow_feeds .vote-down-on, #stackoverflow_feeds .star-on, #stackoverflow_feeds .star-off, #stackoverflow_feeds .comment-up-off, #stackoverflow_feeds .comment-up-on, #stackoverflow_feeds .comment-flag, #stackoverflow_feeds .edited-yes, #stackoverflow_feeds .feed-icon, #stackoverflow_feeds .statsarrow, #stackoverflow_feeds .vote-accepted-off, #stackoverflow_feeds .vote-accepted-on, #stackoverflow_feeds .vote-accepted-bounty, #stackoverflow_feeds .badge-earned-check, #stackoverflow_feeds .delete-tag, #stackoverflow_feeds .grippie, #stackoverflow_feeds .expander-arrow-hide, #stackoverflow_feeds .expander-arrow-show, #stackoverflow_feeds .expander-arrow-small-hide, #stackoverflow_feeds .expander-arrow-small-show, #stackoverflow_feeds .anonymous-gravatar, #stackoverflow_feeds .badge1, #stackoverflow_feeds .badge2, #stackoverflow_feeds .badge3, #stackoverflow_feeds .add-interesting-tag-on, #stackoverflow_feeds .add-interesting-tag-off, #stackoverflow_feeds .fb-share, #stackoverflow_feeds .twitter-share, #stackoverflow_feeds .gp-share {
502
+ background-image: url('/assets/stackoverfeeds/sprites.png?v=f936a8b3d6ea');
503
+ background-repeat: no-repeat;
504
+ overflow: hidden;
505
+ }
506
+ #stackoverflow_feeds html, #stackoverflow_feeds body, #stackoverflow_feeds div, #stackoverflow_feeds span, #stackoverflow_feeds applet, #stackoverflow_feeds object, #stackoverflow_feeds iframe, #stackoverflow_feeds h1, #stackoverflow_feeds h2, #stackoverflow_feeds h3, #stackoverflow_feeds h4, #stackoverflow_feeds h5, #stackoverflow_feeds h6, #stackoverflow_feeds p, #stackoverflow_feeds blockquote, #stackoverflow_feeds pre, #stackoverflow_feeds a, #stackoverflow_feeds abbr, #stackoverflow_feeds acronym, #stackoverflow_feeds address, #stackoverflow_feeds big, #stackoverflow_feeds cite, #stackoverflow_feeds code, #stackoverflow_feeds del, #stackoverflow_feeds dfn, #stackoverflow_feeds em, #stackoverflow_feeds font, #stackoverflow_feeds img, #stackoverflow_feeds ins, #stackoverflow_feeds kbd, #stackoverflow_feeds q, #stackoverflow_feeds s, #stackoverflow_feeds samp, #stackoverflow_feeds small, #stackoverflow_feeds strike, #stackoverflow_feeds strong, #stackoverflow_feeds sub, #stackoverflow_feeds sup, #stackoverflow_feeds tt, #stackoverflow_feeds var, #stackoverflow_feeds b, #stackoverflow_feeds u, #stackoverflow_feeds i, #stackoverflow_feeds center, #stackoverflow_feeds dl, #stackoverflow_feeds dt, #stackoverflow_feeds dd, #stackoverflow_feeds ol, #stackoverflow_feeds ul, #stackoverflow_feeds li, #stackoverflow_feeds fieldset, #stackoverflow_feeds form, #stackoverflow_feeds label, #stackoverflow_feeds legend, #stackoverflow_feeds table, #stackoverflow_feeds caption, #stackoverflow_feeds tbody, #stackoverflow_feeds tfoot, #stackoverflow_feeds thead, #stackoverflow_feeds tr, #stackoverflow_feeds th, #stackoverflow_feeds td {
507
+ margin: 0;
508
+ padding: 0;
509
+ border: 0;
510
+ font-size: 100%;
511
+ vertical-align: baseline;
512
+ background: transparent;
513
+ }
514
+ #stackoverflow_feeds body {
515
+ line-height: 1;
516
+ }
517
+ #stackoverflow_feeds ol, #stackoverflow_feeds ul {
518
+ list-style: none;
519
+ }
520
+ #stackoverflow_feeds blockquote, #stackoverflow_feeds q {
521
+ quotes: none;
522
+ }
523
+ #stackoverflow_feeds blockquote:before, #stackoverflow_feeds blockquote:after, #stackoverflow_feeds q:before, #stackoverflow_feeds q:after {
524
+ content: '';
525
+ content: none;
526
+ }
527
+ #stackoverflow_feeds ins {
528
+ text-decoration: none;
529
+ }
530
+ #stackoverflow_feeds del {
531
+ text-decoration: line-through;
532
+ }
533
+ #stackoverflow_feeds table {
534
+ border-collapse: collapse;
535
+ border-spacing: 0;
536
+ }
537
+ #stackoverflow_feeds body {
538
+ background: #fff;
539
+ color: #000;
540
+ font-family: Arial, Liberation Sans, DejaVu Sans, sans-serif;
541
+ font-size: 80%;
542
+ text-align: center;
543
+ }
544
+ #stackoverflow_feeds code {
545
+ font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
546
+ background-color: #eee;
547
+ }
548
+ #stackoverflow_feeds textarea {
549
+ font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
550
+ border: 1px solid #999;
551
+ font-size: 90%
552
+ }
553
+ #stackoverflow_feeds input, #stackoverflow_feeds select, #stackoverflow_feeds button, #stackoverflow_feeds .button, #stackoverflow_feeds a.button:link, #stackoverflow_feeds a.button:visited {
554
+ border: 1px solid #999;
555
+ font-size: 100%;
556
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
557
+ }
558
+ #stackoverflow_feeds input {
559
+ margin: 5px 0 5px 0;
560
+ padding: 3px;
561
+ }
562
+ #stackoverflow_feeds input[type="button"], #stackoverflow_feeds input[type="submit"], #stackoverflow_feeds .button, #stackoverflow_feeds a.button:link, #stackoverflow_feeds a.button:visited {
563
+ padding: .3em .6em;
564
+ box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
565
+ background-color: #333;
566
+ color: #fff;
567
+ border: 1px solid #000 !important;
568
+ border-radius: 3px;
569
+ text-decoration: none;
570
+ }
571
+ #stackoverflow_feeds pre {
572
+ padding: 5px;
573
+ font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
574
+ margin-bottom: 10px;
575
+ background-color: #eee;
576
+ overflow: auto;
577
+ width: auto;
578
+ width: 650px;
579
+ padding-bottom: 20px;
580
+ max-height: 600px;
581
+ }
582
+ #stackoverflow_feeds pre {
583
+ max-height: none\9;
584
+ }
585
+ #stackoverflow_feeds blockquote {
586
+ margin-bottom: 10px;
587
+ padding: 10px 10px 1px 10px;
588
+ background-color: #eee;
589
+ }
590
+ #stackoverflow_feeds b, #stackoverflow_feeds strong {
591
+ font-weight: bold;
592
+ }
593
+ #stackoverflow_feeds i, #stackoverflow_feeds em {
594
+ font-style: italic;
595
+ }
596
+ #stackoverflow_feeds ul {
597
+ list-style: disc;
598
+ margin-left: 30px;
599
+ margin-bottom: 1em;
600
+ }
601
+ #stackoverflow_feeds ol ul, #stackoverflow_feeds ul ol, #stackoverflow_feeds ul ul, #stackoverflow_feeds ol ol {
602
+ margin-bottom: 0;
603
+ }
604
+ #stackoverflow_feeds p {
605
+ clear: both;
606
+ margin-bottom: 1em;
607
+ }
608
+ #stackoverflow_feeds ol {
609
+ list-style: decimal;
610
+ margin-left: 30px;
611
+ margin-bottom: 1em;
612
+ }
613
+ #stackoverflow_feeds a {
614
+ color: #07c;
615
+ text-decoration: none;
616
+ cursor: pointer;
617
+ }
618
+ #stackoverflow_feeds a:hover {
619
+ text-decoration: underline;
620
+ }
621
+ #stackoverflow_feeds a:visited {
622
+ color: #4a6b82;
623
+ }
624
+ #stackoverflow_feeds h1 {
625
+ font-family: Trebuchet MS, Liberation Sans, DejaVu Sans, sans-serif;
626
+ font-weight: bold;
627
+ font-size: 170%;
628
+ margin-bottom: 7px;
629
+ line-height: 1.3;
630
+ }
631
+ #stackoverflow_feeds h2 {
632
+ font-family: Trebuchet MS, Liberation Sans, DejaVu Sans, sans-serif;
633
+ font-size: 140%;
634
+ font-weight: bold;
635
+ margin-bottom: 7px;
636
+ line-height: 1.3;
637
+ }
638
+ #stackoverflow_feeds h3 {
639
+ font-family: Trebuchet MS, Liberation Sans, DejaVu Sans, sans-serif;
640
+ font-size: 110%;
641
+ font-weight: bold;
642
+ margin-bottom: 5px;
643
+ line-height: 1.3;
644
+ }
645
+ #stackoverflow_feeds hr {
646
+ border: 0;
647
+ color: #aaa;
648
+ background-color: #aaa;
649
+ height: 1px;
650
+ margin-bottom: 20px;
651
+ }
652
+ #stackoverflow_feeds sup {
653
+ font-size: 80%;
654
+ position: relative;
655
+ top: -0.4em;
656
+ }
657
+ #stackoverflow_feeds sub {
658
+ position: relative;
659
+ top: .3em;
660
+ font-size: 80%}
661
+ #stackoverflow_feeds kbd {
662
+ padding: .1em .6em;
663
+ border: 1px solid #ccc;
664
+ font-size: 11px;
665
+ font-family: Arial, Helvetica, sans-serif;
666
+ background-color: #f7f7f7;
667
+ color: #333;
668
+ -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
669
+ -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
670
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
671
+ border-radius: 3px;
672
+ display: inline-block;
673
+ margin: 0 .1em;
674
+ text-shadow: 0 1px 0 #fff;
675
+ line-height: 1.4;
676
+ white-space: nowrap;
677
+ }
678
+ #stackoverflow_feeds input[type=checkbox], #stackoverflow_feeds input[type=radio] {
679
+ border: none;
680
+ }
681
+ #stackoverflow_feeds p code {
682
+ padding: 1px 5px 1px 5px;
683
+ }
684
+ #stackoverflow_feeds code {
685
+ white-space: pre-wrap;
686
+ }
687
+ #stackoverflow_feeds pre code {
688
+ white-space: inherit;
689
+ }
690
+ #stackoverflow_feeds .container {
691
+ text-align: left;
692
+ width: 100%;
693
+ zoom: 1;
694
+ }
695
+ #stackoverflow_feeds .comments {
696
+ -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
697
+ }
698
+ #stackoverflow_feeds .comments {
699
+ width: 660px;
700
+ border-top: dotted 1px #aaa;
701
+ margin-top: 10px;
702
+ padding-bottom: 10px;
703
+ line-height: 135%;
704
+ color: #444;
705
+ }
706
+ #stackoverflow_feeds .comments>table {
707
+ width: 100%
708
+ }
709
+ #stackoverflow_feeds .comments-link {
710
+ padding: 0 3px 2px 3px;
711
+ color: #888;
712
+ }
713
+ #stackoverflow_feeds a.comments-link:hover {
714
+ padding: 0 3px 2px 3px;
715
+ background-color: #777;
716
+ color: #fff;
717
+ text-decoration: none;
718
+ }
719
+ #stackoverflow_feeds tr.comment>td {
720
+ padding-top: 5px;
721
+ padding-bottom: 5px;
722
+ border-bottom: dotted 1px #ddd;
723
+ }
724
+ #stackoverflow_feeds tr.comment:hover {
725
+ background-color: #fafafa;
726
+ }
727
+ #stackoverflow_feeds .comment img {
728
+ vertical-align: middle;
729
+ }
730
+ #stackoverflow_feeds .comment-flag, #stackoverflow_feeds .comment-up, #stackoverflow_feeds .comment-delete {
731
+ visibility: hidden;
732
+ cursor: pointer;
733
+ }
734
+ #stackoverflow_feeds .comment:hover .comment-flag, #stackoverflow_feeds .comment:hover .comment-up, #stackoverflow_feeds .comment:hover .comment-delete, #stackoverflow_feeds .comment:hover .comment-edit-hide, #stackoverflow_feeds .comment-up-on {
735
+ visibility: visible;
736
+ }
737
+ #stackoverflow_feeds .comment-actions {
738
+ padding-left: 3px;
739
+ width: 15px;
740
+ }
741
+ #stackoverflow_feeds .comment-score span {
742
+ font-size: 110%;
743
+ color: #666;
744
+ font-weight: bold;
745
+ padding-right: 2px;
746
+ }
747
+ #stackoverflow_feeds .comment-text, #stackoverflow_feeds .comment-form {
748
+ vertical-align: text-top;
749
+ padding: 0 6px 0 7px;
750
+ }
751
+ #stackoverflow_feeds .comment-text .comment-edited {
752
+ vertical-align: top;
753
+ margin-top: 3px;
754
+ margin-left: 2px;
755
+ }
756
+ #stackoverflow_feeds a.comment-user {
757
+ white-space: nowrap;
758
+ padding: 0;
759
+ }
760
+ #stackoverflow_feeds a.comment-user.owner {
761
+ padding: 2px 5px 2px 5px;
762
+ }
763
+ #stackoverflow_feeds .comment-date {
764
+ color: #999;
765
+ }
766
+ #stackoverflow_feeds .comment-edit-hide {
767
+ visibility: hidden;
768
+ }
769
+ #stackoverflow_feeds .comment-form>form>table {
770
+ text-align: left;
771
+ margin-top: 5px;
772
+ margin-right: 5px;
773
+ vertical-align: top;
774
+ }
775
+ #stackoverflow_feeds .comment-form>form>table td {
776
+ vertical-align: top;
777
+ }
778
+ #stackoverflow_feeds .comment-form>form input {
779
+ margin-left: 10px;
780
+ margin-top: 0;
781
+ display: block;
782
+ cursor: pointer;
783
+ }
784
+ #stackoverflow_feeds .comment-form .edit-comment-cancel, #stackoverflow_feeds .comment-form .comment-help-link {
785
+ margin-left: 10px;
786
+ }
787
+ #stackoverflow_feeds .comment-form>form textarea {
788
+ margin-bottom: 4px;
789
+ height: 5em;
790
+ resize: vertical;
791
+ }