http_log 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/Rakefile +38 -0
  3. data/app/assets/javascripts/http_log.js +14 -0
  4. data/app/assets/stylesheets/http_log.css +12 -0
  5. data/app/controllers/http_log/requests_controller.rb +10 -0
  6. data/app/models/http_log/request.rb +35 -0
  7. data/app/views/http_log/requests/show.html.erb +59 -0
  8. data/app/views/layouts/http_log/requests.html.erb +30 -0
  9. data/config/routes.rb +3 -0
  10. data/lib/http_log/http_request.rb +30 -0
  11. data/lib/http_log/middleware.rb +40 -0
  12. data/lib/http_log/railtie.rb +37 -0
  13. data/lib/http_log/version.rb +3 -0
  14. data/lib/http_log.rb +23 -0
  15. data/lib/tasks/http_logger_tasks.rake +4 -0
  16. data/readme.md +106 -0
  17. data/test/dummy/README.rdoc +261 -0
  18. data/test/dummy/Rakefile +7 -0
  19. data/test/dummy/app/assets/images/image.jpg +0 -0
  20. data/test/dummy/app/assets/javascripts/application.js +14 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  22. data/test/dummy/app/controllers/application_controller.rb +2 -0
  23. data/test/dummy/app/controllers/echo_controller.rb +5 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/config/application.rb +62 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +31 -0
  30. data/test/dummy/config/environments/production.rb +64 -0
  31. data/test/dummy/config/environments/test.rb +35 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/inflections.rb +15 -0
  34. data/test/dummy/config/initializers/mime_types.rb +5 -0
  35. data/test/dummy/config/initializers/secret_token.rb +7 -0
  36. data/test/dummy/config/initializers/session_store.rb +8 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +10 -0
  38. data/test/dummy/config/locales/en.yml +5 -0
  39. data/test/dummy/config/mongoid.yml +7 -0
  40. data/test/dummy/config/routes.rb +4 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/log/test.log +8567 -0
  43. data/test/dummy/public/404.html +26 -0
  44. data/test/dummy/public/422.html +26 -0
  45. data/test/dummy/public/500.html +25 -0
  46. data/test/dummy/public/favicon.ico +0 -0
  47. data/test/dummy/script/rails +6 -0
  48. data/test/dummy/tmp/cache/assets/C56/AF0/sprockets%2F8bd6bc711946e979052328c24a265273 +2491 -0
  49. data/test/dummy/tmp/cache/assets/C88/730/sprockets%2F5b9d71c4883306a9e7425d3149785b0a +0 -0
  50. data/test/dummy/tmp/cache/assets/CAC/FC0/sprockets%2F143f0911dfc3cc1692f4d429654d7422 +0 -0
  51. data/test/dummy/tmp/cache/assets/CBD/000/sprockets%2F9d2bd18b820d1d20830ad0411e05a317 +0 -0
  52. data/test/dummy/tmp/cache/assets/CD7/500/sprockets%2Fae345f99053c3b580c5421a1a8a9b509 +0 -0
  53. data/test/dummy/tmp/cache/assets/CD7/9B0/sprockets%2Fef051dd1922500356c22d85b54b94ef4 +0 -0
  54. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  55. data/test/dummy/tmp/cache/assets/CD8/EB0/sprockets%2Ff6249465d0ba565203e326e971ba33dc +0 -0
  56. data/test/dummy/tmp/cache/assets/D00/890/sprockets%2F641813db3a41029a3f60b1ef90e95eb2 +0 -0
  57. data/test/dummy/tmp/cache/assets/D05/B40/sprockets%2F6ec40b73403c5c791c98c130a66f03eb +0 -0
  58. data/test/dummy/tmp/cache/assets/D14/B90/sprockets%2F22c02508890f4a42d489f5cb9995bcaa +0 -0
  59. data/test/dummy/tmp/cache/assets/D18/BC0/sprockets%2Fcc96a74afecc950f9b1923750a624666 +0 -0
  60. data/test/dummy/tmp/cache/assets/D1C/3F0/sprockets%2Ff3cb97c67a28f035a79bf35393a493b6 +0 -0
  61. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  62. data/test/dummy/tmp/cache/assets/D39/6B0/sprockets%2F8d0238243bc83309bfffe73733edb00d +0 -0
  63. data/test/dummy/tmp/cache/assets/D3E/820/sprockets%2F6260e7992ddc6fc2380ba3b8c032dd94 +0 -0
  64. data/test/dummy/tmp/cache/assets/D47/EC0/sprockets%2Fdc5e701826b1ce3f37c1c89bf75f2538 +0 -0
  65. data/test/dummy/tmp/cache/assets/D4A/E60/sprockets%2Fbfb99140fe3d1ff718034c6a8e18847d +0 -0
  66. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  67. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +2496 -0
  68. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  69. data/test/dummy/tmp/cache/assets/D5B/D40/sprockets%2F04e9e640af4cc213ef17ba39d31f2a40 +0 -0
  70. data/test/dummy/tmp/cache/assets/D60/660/sprockets%2F180c4ea684d2eadbbd5e85d302601b74 +0 -0
  71. data/test/dummy/tmp/cache/assets/D80/D90/sprockets%2Fe73320ffabc376681cd17ed79d9b93e7 +0 -0
  72. data/test/dummy/tmp/cache/assets/D84/4B0/sprockets%2F6a24f73a9cc3c9f978a16a79afe6818b +0 -0
  73. data/test/dummy/tmp/cache/assets/D8D/D50/sprockets%2Fd4f3b2c5183658aa13fa2d8511e6bcba +0 -0
  74. data/test/dummy/tmp/cache/assets/DB9/CD0/sprockets%2F58dda55967442f12eac66cfe9ef69bf6 +0 -0
  75. data/test/dummy/tmp/cache/assets/DC1/380/sprockets%2Fc4cf1e25b6a6e86e6cb37dd2413fbb00 +0 -0
  76. data/test/dummy/tmp/cache/assets/DC4/7C0/sprockets%2Fcba25fb6f81b385a80ef50f3405b2ded +0 -0
  77. data/test/dummy/tmp/cache/assets/DC7/430/sprockets%2F3a58abcdb48a00fb9f180e8ddf3e9203 +0 -0
  78. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  79. data/test/dummy/tmp/cache/assets/DF5/D50/sprockets%2F5ad27ea47264a1fb2bafb977f50d2fca +0 -0
  80. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  81. data/test/dummy/tmp/cache/assets/E07/410/sprockets%2F490f1cfa897fcbe947b0ff03ec38dfb1 +0 -0
  82. data/test/dummy/tmp/cache/assets/E0C/3A0/sprockets%2Fef495ecd04bb6d988d0865ebbebf3c63 +0 -0
  83. data/test/dummy/tmp/cache/assets/E0D/320/sprockets%2Fbf429fbc894ba0b9e4e65fd9825c1fbe +0 -0
  84. data/test/dummy/tmp/cache/assets/E23/000/sprockets%2Fa2e82546ad8185cbdbbcc6b7fa33db3c +0 -0
  85. data/test/dummy/tmp/cache/assets/E54/5F0/sprockets%2Fffb07dbaf19b3044d2fb165c1eefaf9a +0 -0
  86. data/test/integration/filters_test.rb +37 -0
  87. data/test/integration/logging_test.rb +144 -0
  88. data/test/integration/response_test.rb +11 -0
  89. data/test/integration/retrieve_request_test.rb +13 -0
  90. data/test/support/database_cleaner.rb +17 -0
  91. data/test/support/http_logger.rb +7 -0
  92. data/test/test_helper.rb +10 -0
  93. metadata +274 -0
@@ -0,0 +1,2491 @@
1
+ o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1326969281.99437: @value{I"
2
+ class:EFI"BundledAsset;
3
+ FI"id;
4
+ F"%1b93a79fc725e8a47271af3ac4736073I"logical_path;
5
+ F"twitter/bootstrap.cssI"
6
+ F"�/Users/adam/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/twitter-bootstrap-rails-1.4.3/vendor/assets/stylesheets/twitter/bootstrap.css.lessI"content_type;
7
+ FI"
8
+ FI"
9
+ mtime;
10
+ FI"2012-01-09T15:14:14+01:00;
11
+ FI" body;
12
+ FI":�/*!
13
+ * Bootstrap @VERSION
14
+ *
15
+ * Copyright 2011 Twitter, Inc
16
+ * Licensed under the Apache License v2.0
17
+ * http://www.apache.org/licenses/LICENSE-2.0
18
+ *
19
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
20
+ * Date: @DATE
21
+ */
22
+ /* Reset.less
23
+ * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
24
+ * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
25
+ html, body {
26
+ margin: 0;
27
+ padding: 0;
28
+ }
29
+ h1,
30
+ h2,
31
+ h3,
32
+ h4,
33
+ h5,
34
+ h6,
35
+ p,
36
+ blockquote,
37
+ pre,
38
+ a,
39
+ abbr,
40
+ acronym,
41
+ address,
42
+ cite,
43
+ code,
44
+ del,
45
+ dfn,
46
+ em,
47
+ img,
48
+ q,
49
+ s,
50
+ samp,
51
+ small,
52
+ strike,
53
+ strong,
54
+ sub,
55
+ sup,
56
+ tt,
57
+ var,
58
+ dd,
59
+ dl,
60
+ dt,
61
+ li,
62
+ ol,
63
+ ul,
64
+ fieldset,
65
+ form,
66
+ label,
67
+ legend,
68
+ button,
69
+ table,
70
+ caption,
71
+ tbody,
72
+ tfoot,
73
+ thead,
74
+ tr,
75
+ th,
76
+ td {
77
+ margin: 0;
78
+ padding: 0;
79
+ border: 0;
80
+ font-weight: normal;
81
+ font-style: normal;
82
+ font-size: 100%;
83
+ line-height: 1;
84
+ font-family: inherit;
85
+ }
86
+ table {
87
+ border-collapse: collapse;
88
+ border-spacing: 0;
89
+ }
90
+ ol, ul {
91
+ list-style: none;
92
+ }
93
+ q:before,
94
+ q:after,
95
+ blockquote:before,
96
+ blockquote:after {
97
+ content: "";
98
+ }
99
+ html {
100
+ overflow-y: scroll;
101
+ font-size: 100%;
102
+ -webkit-text-size-adjust: 100%;
103
+ -ms-text-size-adjust: 100%;
104
+ }
105
+ a:focus {
106
+ outline: thin dotted;
107
+ }
108
+ a:hover, a:active {
109
+ outline: 0;
110
+ }
111
+ article,
112
+ aside,
113
+ details,
114
+ figcaption,
115
+ figure,
116
+ footer,
117
+ header,
118
+ hgroup,
119
+ nav,
120
+ section {
121
+ display: block;
122
+ }
123
+ audio, canvas, video {
124
+ display: inline-block;
125
+ *display: inline;
126
+ *zoom: 1;
127
+ }
128
+ audio:not([controls]) {
129
+ display: none;
130
+ }
131
+ sub, sup {
132
+ font-size: 75%;
133
+ line-height: 0;
134
+ position: relative;
135
+ vertical-align: baseline;
136
+ }
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+ sub {
141
+ bottom: -0.25em;
142
+ }
143
+ img {
144
+ border: 0;
145
+ -ms-interpolation-mode: bicubic;
146
+ }
147
+ button,
148
+ input,
149
+ select,
150
+ textarea {
151
+ font-size: 100%;
152
+ margin: 0;
153
+ vertical-align: baseline;
154
+ *vertical-align: middle;
155
+ }
156
+ button, input {
157
+ line-height: normal;
158
+ *overflow: visible;
159
+ }
160
+ button::-moz-focus-inner, input::-moz-focus-inner {
161
+ border: 0;
162
+ padding: 0;
163
+ }
164
+ button,
165
+ input[type="button"],
166
+ input[type="reset"],
167
+ input[type="submit"] {
168
+ cursor: pointer;
169
+ -webkit-appearance: button;
170
+ }
171
+ input[type="search"] {
172
+ -webkit-appearance: textfield;
173
+ -webkit-box-sizing: content-box;
174
+ -moz-box-sizing: content-box;
175
+ box-sizing: content-box;
176
+ }
177
+ input[type="search"]::-webkit-search-decoration {
178
+ -webkit-appearance: none;
179
+ }
180
+ textarea {
181
+ overflow: auto;
182
+ vertical-align: top;
183
+ }
184
+ /* Variables.less
185
+ * Variables to customize the look and feel of Bootstrap
186
+ * ----------------------------------------------------- */
187
+ /* Mixins.less
188
+ * Snippets of reusable CSS to develop faster and keep code readable
189
+ * ----------------------------------------------------------------- */
190
+ /*
191
+ * Scaffolding
192
+ * Basic and global styles for generating a grid system, structural layout, and page templates
193
+ * ------------------------------------------------------------------------------------------- */
194
+ body {
195
+ background-color: #ffffff;
196
+ margin: 0;
197
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
198
+ font-size: 13px;
199
+ font-weight: normal;
200
+ line-height: 18px;
201
+ color: #404040;
202
+ }
203
+ .container {
204
+ width: 940px;
205
+ margin-left: auto;
206
+ margin-right: auto;
207
+ zoom: 1;
208
+ }
209
+ .container:before, .container:after {
210
+ display: table;
211
+ content: "";
212
+ zoom: 1;
213
+ }
214
+ .container:after {
215
+ clear: both;
216
+ }
217
+ .container-fluid {
218
+ position: relative;
219
+ min-width: 940px;
220
+ padding-left: 20px;
221
+ padding-right: 20px;
222
+ zoom: 1;
223
+ }
224
+ .container-fluid:before, .container-fluid:after {
225
+ display: table;
226
+ content: "";
227
+ zoom: 1;
228
+ }
229
+ .container-fluid:after {
230
+ clear: both;
231
+ }
232
+ .container-fluid > .sidebar {
233
+ position: absolute;
234
+ top: 0;
235
+ left: 20px;
236
+ width: 220px;
237
+ }
238
+ .container-fluid > .content {
239
+ margin-left: 240px;
240
+ }
241
+ a {
242
+ color: #0069d6;
243
+ text-decoration: none;
244
+ line-height: inherit;
245
+ font-weight: inherit;
246
+ }
247
+ a:hover {
248
+ color: #00438a;
249
+ text-decoration: underline;
250
+ }
251
+ .pull-right {
252
+ float: right;
253
+ }
254
+ .pull-left {
255
+ float: left;
256
+ }
257
+ .hide {
258
+ display: none;
259
+ }
260
+ .show {
261
+ display: block;
262
+ }
263
+ .row {
264
+ zoom: 1;
265
+ margin-left: -20px;
266
+ }
267
+ .row:before, .row:after {
268
+ display: table;
269
+ content: "";
270
+ zoom: 1;
271
+ }
272
+ .row:after {
273
+ clear: both;
274
+ }
275
+ .row > [class*="span"] {
276
+ display: inline;
277
+ float: left;
278
+ margin-left: 20px;
279
+ }
280
+ .span1 {
281
+ width: 40px;
282
+ }
283
+ .span2 {
284
+ width: 100px;
285
+ }
286
+ .span3 {
287
+ width: 160px;
288
+ }
289
+ .span4 {
290
+ width: 220px;
291
+ }
292
+ .span5 {
293
+ width: 280px;
294
+ }
295
+ .span6 {
296
+ width: 340px;
297
+ }
298
+ .span7 {
299
+ width: 400px;
300
+ }
301
+ .span8 {
302
+ width: 460px;
303
+ }
304
+ .span9 {
305
+ width: 520px;
306
+ }
307
+ .span10 {
308
+ width: 580px;
309
+ }
310
+ .span11 {
311
+ width: 640px;
312
+ }
313
+ .span12 {
314
+ width: 700px;
315
+ }
316
+ .span13 {
317
+ width: 760px;
318
+ }
319
+ .span14 {
320
+ width: 820px;
321
+ }
322
+ .span15 {
323
+ width: 880px;
324
+ }
325
+ .span16 {
326
+ width: 940px;
327
+ }
328
+ .span17 {
329
+ width: 1000px;
330
+ }
331
+ .span18 {
332
+ width: 1060px;
333
+ }
334
+ .span19 {
335
+ width: 1120px;
336
+ }
337
+ .span20 {
338
+ width: 1180px;
339
+ }
340
+ .span21 {
341
+ width: 1240px;
342
+ }
343
+ .span22 {
344
+ width: 1300px;
345
+ }
346
+ .span23 {
347
+ width: 1360px;
348
+ }
349
+ .span24 {
350
+ width: 1420px;
351
+ }
352
+ .row > .offset1 {
353
+ margin-left: 80px;
354
+ }
355
+ .row > .offset2 {
356
+ margin-left: 140px;
357
+ }
358
+ .row > .offset3 {
359
+ margin-left: 200px;
360
+ }
361
+ .row > .offset4 {
362
+ margin-left: 260px;
363
+ }
364
+ .row > .offset5 {
365
+ margin-left: 320px;
366
+ }
367
+ .row > .offset6 {
368
+ margin-left: 380px;
369
+ }
370
+ .row > .offset7 {
371
+ margin-left: 440px;
372
+ }
373
+ .row > .offset8 {
374
+ margin-left: 500px;
375
+ }
376
+ .row > .offset9 {
377
+ margin-left: 560px;
378
+ }
379
+ .row > .offset10 {
380
+ margin-left: 620px;
381
+ }
382
+ .row > .offset11 {
383
+ margin-left: 680px;
384
+ }
385
+ .row > .offset12 {
386
+ margin-left: 740px;
387
+ }
388
+ .span-one-third {
389
+ width: 300px;
390
+ }
391
+ .span-two-thirds {
392
+ width: 620px;
393
+ }
394
+ .row > .offset-one-third {
395
+ margin-left: 340px;
396
+ }
397
+ .row > .offset-two-thirds {
398
+ margin-left: 660px;
399
+ }
400
+ /* Typography.less
401
+ * Headings, body text, lists, code, and more for a versatile and durable typography system
402
+ * ---------------------------------------------------------------------------------------- */
403
+ p {
404
+ font-size: 13px;
405
+ font-weight: normal;
406
+ line-height: 18px;
407
+ margin-bottom: 9px;
408
+ }
409
+ p small {
410
+ font-size: 11px;
411
+ color: #bfbfbf;
412
+ }
413
+ h1,
414
+ h2,
415
+ h3,
416
+ h4,
417
+ h5,
418
+ h6 {
419
+ font-weight: bold;
420
+ color: #404040;
421
+ }
422
+ h1 small,
423
+ h2 small,
424
+ h3 small,
425
+ h4 small,
426
+ h5 small,
427
+ h6 small {
428
+ color: #bfbfbf;
429
+ }
430
+ h1 {
431
+ margin-bottom: 18px;
432
+ font-size: 30px;
433
+ line-height: 36px;
434
+ }
435
+ h1 small {
436
+ font-size: 18px;
437
+ }
438
+ h2 {
439
+ font-size: 24px;
440
+ line-height: 36px;
441
+ }
442
+ h2 small {
443
+ font-size: 14px;
444
+ }
445
+ h3,
446
+ h4,
447
+ h5,
448
+ h6 {
449
+ line-height: 36px;
450
+ }
451
+ h3 {
452
+ font-size: 18px;
453
+ }
454
+ h3 small {
455
+ font-size: 14px;
456
+ }
457
+ h4 {
458
+ font-size: 16px;
459
+ }
460
+ h4 small {
461
+ font-size: 12px;
462
+ }
463
+ h5 {
464
+ font-size: 14px;
465
+ }
466
+ h6 {
467
+ font-size: 13px;
468
+ color: #bfbfbf;
469
+ text-transform: uppercase;
470
+ }
471
+ ul, ol {
472
+ margin: 0 0 18px 25px;
473
+ }
474
+ ul ul,
475
+ ul ol,
476
+ ol ol,
477
+ ol ul {
478
+ margin-bottom: 0;
479
+ }
480
+ ul {
481
+ list-style: disc;
482
+ }
483
+ ol {
484
+ list-style: decimal;
485
+ }
486
+ li {
487
+ line-height: 18px;
488
+ color: #808080;
489
+ }
490
+ ul.unstyled {
491
+ list-style: none;
492
+ margin-left: 0;
493
+ }
494
+ dl {
495
+ margin-bottom: 18px;
496
+ }
497
+ dl dt, dl dd {
498
+ line-height: 18px;
499
+ }
500
+ dl dt {
501
+ font-weight: bold;
502
+ }
503
+ dl dd {
504
+ margin-left: 9px;
505
+ }
506
+ hr {
507
+ margin: 20px 0 19px;
508
+ border: 0;
509
+ border-bottom: 1px solid #eee;
510
+ }
511
+ strong {
512
+ font-style: inherit;
513
+ font-weight: bold;
514
+ }
515
+ em {
516
+ font-style: italic;
517
+ font-weight: inherit;
518
+ line-height: inherit;
519
+ }
520
+ .muted {
521
+ color: #bfbfbf;
522
+ }
523
+ blockquote {
524
+ margin-bottom: 18px;
525
+ border-left: 5px solid #eee;
526
+ padding-left: 15px;
527
+ }
528
+ blockquote p {
529
+ font-size: 14px;
530
+ font-weight: 300;
531
+ line-height: 18px;
532
+ margin-bottom: 0;
533
+ }
534
+ blockquote small {
535
+ display: block;
536
+ font-size: 12px;
537
+ font-weight: 300;
538
+ line-height: 18px;
539
+ color: #bfbfbf;
540
+ }
541
+ blockquote small:before {
542
+ content: '\2014 \00A0';
543
+ }
544
+ address {
545
+ display: block;
546
+ line-height: 18px;
547
+ margin-bottom: 18px;
548
+ }
549
+ code, pre {
550
+ padding: 0 3px 2px;
551
+ font-family: Monaco, Andale Mono, Courier New, monospace;
552
+ font-size: 12px;
553
+ -webkit-border-radius: 3px;
554
+ -moz-border-radius: 3px;
555
+ border-radius: 3px;
556
+ }
557
+ code {
558
+ background-color: #fee9cc;
559
+ color: rgba(0, 0, 0, 0.75);
560
+ padding: 1px 3px;
561
+ }
562
+ pre {
563
+ background-color: #f5f5f5;
564
+ display: block;
565
+ padding: 8.5px;
566
+ margin: 0 0 18px;
567
+ line-height: 18px;
568
+ font-size: 12px;
569
+ border: 1px solid #ccc;
570
+ border: 1px solid rgba(0, 0, 0, 0.15);
571
+ -webkit-border-radius: 3px;
572
+ -moz-border-radius: 3px;
573
+ border-radius: 3px;
574
+ white-space: pre;
575
+ white-space: pre-wrap;
576
+ word-wrap: break-word;
577
+ }
578
+ /* Forms.less
579
+ * Base styles for various input types, form layouts, and states
580
+ * ------------------------------------------------------------- */
581
+ form {
582
+ margin-bottom: 18px;
583
+ }
584
+ fieldset {
585
+ margin-bottom: 18px;
586
+ padding-top: 18px;
587
+ }
588
+ fieldset legend {
589
+ display: block;
590
+ padding-left: 150px;
591
+ font-size: 19.5px;
592
+ line-height: 1;
593
+ color: #404040;
594
+ *padding: 0 0 5px 145px;
595
+ /* IE6-7 */
596
+
597
+ *line-height: 1.5;
598
+ /* IE6-7 */
599
+
600
+ }
601
+ form .clearfix {
602
+ margin-bottom: 18px;
603
+ zoom: 1;
604
+ }
605
+ form .clearfix:before, form .clearfix:after {
606
+ display: table;
607
+ content: "";
608
+ zoom: 1;
609
+ }
610
+ form .clearfix:after {
611
+ clear: both;
612
+ }
613
+ label,
614
+ input,
615
+ select,
616
+ textarea {
617
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
618
+ font-size: 13px;
619
+ font-weight: normal;
620
+ line-height: normal;
621
+ }
622
+ label {
623
+ padding-top: 6px;
624
+ font-size: 13px;
625
+ line-height: 18px;
626
+ float: left;
627
+ width: 130px;
628
+ text-align: right;
629
+ color: #404040;
630
+ }
631
+ form .input {
632
+ margin-left: 150px;
633
+ }
634
+ input[type=checkbox], input[type=radio] {
635
+ cursor: pointer;
636
+ }
637
+ input,
638
+ textarea,
639
+ select,
640
+ .uneditable-input {
641
+ display: inline-block;
642
+ width: 210px;
643
+ height: 18px;
644
+ padding: 4px;
645
+ font-size: 13px;
646
+ line-height: 18px;
647
+ color: #808080;
648
+ border: 1px solid #ccc;
649
+ -webkit-border-radius: 3px;
650
+ -moz-border-radius: 3px;
651
+ border-radius: 3px;
652
+ }
653
+ select {
654
+ padding: initial;
655
+ }
656
+ input[type=checkbox], input[type=radio] {
657
+ width: auto;
658
+ height: auto;
659
+ padding: 0;
660
+ margin: 3px 0;
661
+ *margin-top: 0;
662
+ /* IE6-7 */
663
+
664
+ line-height: normal;
665
+ border: none;
666
+ }
667
+ input[type=file] {
668
+ background-color: #ffffff;
669
+ padding: initial;
670
+ border: initial;
671
+ line-height: initial;
672
+ -webkit-box-shadow: none;
673
+ -moz-box-shadow: none;
674
+ box-shadow: none;
675
+ }
676
+ input[type=button], input[type=reset], input[type=submit] {
677
+ width: auto;
678
+ height: auto;
679
+ }
680
+ select, input[type=file] {
681
+ height: 27px;
682
+ *height: auto;
683
+ line-height: 27px;
684
+ *margin-top: 4px;
685
+ /* For IE7, add top margin to align select with labels */
686
+
687
+ }
688
+ select[multiple] {
689
+ height: inherit;
690
+ background-color: #ffffff;
691
+ }
692
+ textarea {
693
+ height: auto;
694
+ }
695
+ .uneditable-input {
696
+ background-color: #ffffff;
697
+ display: block;
698
+ border-color: #eee;
699
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
700
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
701
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
702
+ cursor: not-allowed;
703
+ }
704
+ :-moz-placeholder {
705
+ color: #bfbfbf;
706
+ }
707
+ ::-webkit-input-placeholder {
708
+ color: #bfbfbf;
709
+ }
710
+ input, textarea {
711
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
712
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
713
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
714
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
715
+ transition: border linear 0.2s, box-shadow linear 0.2s;
716
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
717
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
718
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
719
+ }
720
+ input:focus, textarea:focus {
721
+ outline: 0;
722
+ border-color: rgba(82, 168, 236, 0.8);
723
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
724
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
725
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
726
+ }
727
+ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
728
+ -webkit-box-shadow: none;
729
+ -moz-box-shadow: none;
730
+ box-shadow: none;
731
+ outline: 1px dotted #666;
732
+ }
733
+ form .clearfix.error > label, form .clearfix.error .help-block, form .clearfix.error .help-inline {
734
+ color: #b94a48;
735
+ }
736
+ form .clearfix.error input, form .clearfix.error textarea {
737
+ color: #b94a48;
738
+ border-color: #ee5f5b;
739
+ }
740
+ form .clearfix.error input:focus, form .clearfix.error textarea:focus {
741
+ border-color: #e9322d;
742
+ -webkit-box-shadow: 0 0 6px #f8b9b7;
743
+ -moz-box-shadow: 0 0 6px #f8b9b7;
744
+ box-shadow: 0 0 6px #f8b9b7;
745
+ }
746
+ form .clearfix.error .input-prepend .add-on, form .clearfix.error .input-append .add-on {
747
+ color: #b94a48;
748
+ background-color: #fce6e6;
749
+ border-color: #b94a48;
750
+ }
751
+ form .clearfix.warning > label, form .clearfix.warning .help-block, form .clearfix.warning .help-inline {
752
+ color: #c09853;
753
+ }
754
+ form .clearfix.warning input, form .clearfix.warning textarea {
755
+ color: #c09853;
756
+ border-color: #ccae64;
757
+ }
758
+ form .clearfix.warning input:focus, form .clearfix.warning textarea:focus {
759
+ border-color: #be9a3f;
760
+ -webkit-box-shadow: 0 0 6px #e5d6b1;
761
+ -moz-box-shadow: 0 0 6px #e5d6b1;
762
+ box-shadow: 0 0 6px #e5d6b1;
763
+ }
764
+ form .clearfix.warning .input-prepend .add-on, form .clearfix.warning .input-append .add-on {
765
+ color: #c09853;
766
+ background-color: #d2b877;
767
+ border-color: #c09853;
768
+ }
769
+ form .clearfix.success > label, form .clearfix.success .help-block, form .clearfix.success .help-inline {
770
+ color: #468847;
771
+ }
772
+ form .clearfix.success input, form .clearfix.success textarea {
773
+ color: #468847;
774
+ border-color: #57a957;
775
+ }
776
+ form .clearfix.success input:focus, form .clearfix.success textarea:focus {
777
+ border-color: #458845;
778
+ -webkit-box-shadow: 0 0 6px #9acc9a;
779
+ -moz-box-shadow: 0 0 6px #9acc9a;
780
+ box-shadow: 0 0 6px #9acc9a;
781
+ }
782
+ form .clearfix.success .input-prepend .add-on, form .clearfix.success .input-append .add-on {
783
+ color: #468847;
784
+ background-color: #bcddbc;
785
+ border-color: #468847;
786
+ }
787
+ .input-mini,
788
+ input.mini,
789
+ textarea.mini,
790
+ select.mini {
791
+ width: 60px;
792
+ }
793
+ .input-small,
794
+ input.small,
795
+ textarea.small,
796
+ select.small {
797
+ width: 90px;
798
+ }
799
+ .input-medium,
800
+ input.medium,
801
+ textarea.medium,
802
+ select.medium {
803
+ width: 150px;
804
+ }
805
+ .input-large,
806
+ input.large,
807
+ textarea.large,
808
+ select.large {
809
+ width: 210px;
810
+ }
811
+ .input-xlarge,
812
+ input.xlarge,
813
+ textarea.xlarge,
814
+ select.xlarge {
815
+ width: 270px;
816
+ }
817
+ .input-xxlarge,
818
+ input.xxlarge,
819
+ textarea.xxlarge,
820
+ select.xxlarge {
821
+ width: 530px;
822
+ }
823
+ textarea.xxlarge {
824
+ overflow-y: auto;
825
+ }
826
+ input.span1, textarea.span1 {
827
+ display: inline-block;
828
+ float: none;
829
+ width: 30px;
830
+ margin-left: 0;
831
+ }
832
+ input.span2, textarea.span2 {
833
+ display: inline-block;
834
+ float: none;
835
+ width: 90px;
836
+ margin-left: 0;
837
+ }
838
+ input.span3, textarea.span3 {
839
+ display: inline-block;
840
+ float: none;
841
+ width: 150px;
842
+ margin-left: 0;
843
+ }
844
+ input.span4, textarea.span4 {
845
+ display: inline-block;
846
+ float: none;
847
+ width: 210px;
848
+ margin-left: 0;
849
+ }
850
+ input.span5, textarea.span5 {
851
+ display: inline-block;
852
+ float: none;
853
+ width: 270px;
854
+ margin-left: 0;
855
+ }
856
+ input.span6, textarea.span6 {
857
+ display: inline-block;
858
+ float: none;
859
+ width: 330px;
860
+ margin-left: 0;
861
+ }
862
+ input.span7, textarea.span7 {
863
+ display: inline-block;
864
+ float: none;
865
+ width: 390px;
866
+ margin-left: 0;
867
+ }
868
+ input.span8, textarea.span8 {
869
+ display: inline-block;
870
+ float: none;
871
+ width: 450px;
872
+ margin-left: 0;
873
+ }
874
+ input.span9, textarea.span9 {
875
+ display: inline-block;
876
+ float: none;
877
+ width: 510px;
878
+ margin-left: 0;
879
+ }
880
+ input.span10, textarea.span10 {
881
+ display: inline-block;
882
+ float: none;
883
+ width: 570px;
884
+ margin-left: 0;
885
+ }
886
+ input.span11, textarea.span11 {
887
+ display: inline-block;
888
+ float: none;
889
+ width: 630px;
890
+ margin-left: 0;
891
+ }
892
+ input.span12, textarea.span12 {
893
+ display: inline-block;
894
+ float: none;
895
+ width: 690px;
896
+ margin-left: 0;
897
+ }
898
+ input.span13, textarea.span13 {
899
+ display: inline-block;
900
+ float: none;
901
+ width: 750px;
902
+ margin-left: 0;
903
+ }
904
+ input.span14, textarea.span14 {
905
+ display: inline-block;
906
+ float: none;
907
+ width: 810px;
908
+ margin-left: 0;
909
+ }
910
+ input.span15, textarea.span15 {
911
+ display: inline-block;
912
+ float: none;
913
+ width: 870px;
914
+ margin-left: 0;
915
+ }
916
+ input.span16, textarea.span16 {
917
+ display: inline-block;
918
+ float: none;
919
+ width: 930px;
920
+ margin-left: 0;
921
+ }
922
+ input[disabled],
923
+ select[disabled],
924
+ textarea[disabled],
925
+ input[readonly],
926
+ select[readonly],
927
+ textarea[readonly] {
928
+ background-color: #f5f5f5;
929
+ border-color: #ddd;
930
+ cursor: not-allowed;
931
+ }
932
+ .actions {
933
+ background: #f5f5f5;
934
+ margin-top: 18px;
935
+ margin-bottom: 18px;
936
+ padding: 17px 20px 18px 150px;
937
+ border-top: 1px solid #ddd;
938
+ -webkit-border-radius: 0 0 3px 3px;
939
+ -moz-border-radius: 0 0 3px 3px;
940
+ border-radius: 0 0 3px 3px;
941
+ }
942
+ .actions .secondary-action {
943
+ float: right;
944
+ }
945
+ .actions .secondary-action a {
946
+ line-height: 30px;
947
+ }
948
+ .actions .secondary-action a:hover {
949
+ text-decoration: underline;
950
+ }
951
+ .help-inline, .help-block {
952
+ font-size: 13px;
953
+ line-height: 18px;
954
+ color: #bfbfbf;
955
+ }
956
+ .help-inline {
957
+ padding-left: 5px;
958
+ *position: relative;
959
+ /* IE6-7 */
960
+
961
+ *top: -5px;
962
+ /* IE6-7 */
963
+
964
+ }
965
+ .help-block {
966
+ display: block;
967
+ max-width: 600px;
968
+ }
969
+ .inline-inputs {
970
+ color: #808080;
971
+ }
972
+ .inline-inputs span {
973
+ padding: 0 2px 0 1px;
974
+ }
975
+ .input-prepend input, .input-append input {
976
+ -webkit-border-radius: 0 3px 3px 0;
977
+ -moz-border-radius: 0 3px 3px 0;
978
+ border-radius: 0 3px 3px 0;
979
+ }
980
+ .input-prepend .add-on, .input-append .add-on {
981
+ position: relative;
982
+ background: #f5f5f5;
983
+ border: 1px solid #ccc;
984
+ z-index: 2;
985
+ float: left;
986
+ display: block;
987
+ width: auto;
988
+ min-width: 16px;
989
+ height: 18px;
990
+ padding: 4px 4px 4px 5px;
991
+ margin-right: -1px;
992
+ font-weight: normal;
993
+ line-height: 18px;
994
+ color: #bfbfbf;
995
+ text-align: center;
996
+ text-shadow: 0 1px 0 #ffffff;
997
+ -webkit-border-radius: 3px 0 0 3px;
998
+ -moz-border-radius: 3px 0 0 3px;
999
+ border-radius: 3px 0 0 3px;
1000
+ }
1001
+ .input-prepend .active, .input-append .active {
1002
+ background: #a9dba9;
1003
+ border-color: #46a546;
1004
+ }
1005
+ .input-prepend .add-on {
1006
+ *margin-top: 1px;
1007
+ /* IE6-7 */
1008
+
1009
+ }
1010
+ .input-append input {
1011
+ float: left;
1012
+ -webkit-border-radius: 3px 0 0 3px;
1013
+ -moz-border-radius: 3px 0 0 3px;
1014
+ border-radius: 3px 0 0 3px;
1015
+ }
1016
+ .input-append .add-on {
1017
+ -webkit-border-radius: 0 3px 3px 0;
1018
+ -moz-border-radius: 0 3px 3px 0;
1019
+ border-radius: 0 3px 3px 0;
1020
+ margin-right: 0;
1021
+ margin-left: -1px;
1022
+ }
1023
+ .inputs-list {
1024
+ margin: 0 0 5px;
1025
+ width: 100%;
1026
+ }
1027
+ .inputs-list li {
1028
+ display: block;
1029
+ padding: 0;
1030
+ width: 100%;
1031
+ }
1032
+ .inputs-list label {
1033
+ display: block;
1034
+ float: none;
1035
+ width: auto;
1036
+ padding: 0;
1037
+ margin-left: 20px;
1038
+ line-height: 18px;
1039
+ text-align: left;
1040
+ white-space: normal;
1041
+ }
1042
+ .inputs-list label strong {
1043
+ color: #808080;
1044
+ }
1045
+ .inputs-list label small {
1046
+ font-size: 11px;
1047
+ font-weight: normal;
1048
+ }
1049
+ .inputs-list .inputs-list {
1050
+ margin-left: 25px;
1051
+ margin-bottom: 10px;
1052
+ padding-top: 0;
1053
+ }
1054
+ .inputs-list:first-child {
1055
+ padding-top: 6px;
1056
+ }
1057
+ .inputs-list li + li {
1058
+ padding-top: 2px;
1059
+ }
1060
+ .inputs-list input[type=radio], .inputs-list input[type=checkbox] {
1061
+ margin-bottom: 0;
1062
+ margin-left: -20px;
1063
+ float: left;
1064
+ }
1065
+ .form-stacked {
1066
+ padding-left: 20px;
1067
+ }
1068
+ .form-stacked fieldset {
1069
+ padding-top: 9px;
1070
+ }
1071
+ .form-stacked legend {
1072
+ padding-left: 0;
1073
+ }
1074
+ .form-stacked label {
1075
+ display: block;
1076
+ float: none;
1077
+ width: auto;
1078
+ font-weight: bold;
1079
+ text-align: left;
1080
+ line-height: 20px;
1081
+ padding-top: 0;
1082
+ }
1083
+ .form-stacked .clearfix {
1084
+ margin-bottom: 9px;
1085
+ }
1086
+ .form-stacked .clearfix div.input {
1087
+ margin-left: 0;
1088
+ }
1089
+ .form-stacked .inputs-list {
1090
+ margin-bottom: 0;
1091
+ }
1092
+ .form-stacked .inputs-list li {
1093
+ padding-top: 0;
1094
+ }
1095
+ .form-stacked .inputs-list li label {
1096
+ font-weight: normal;
1097
+ padding-top: 0;
1098
+ }
1099
+ .form-stacked div.clearfix.error {
1100
+ padding-top: 10px;
1101
+ padding-bottom: 10px;
1102
+ padding-left: 10px;
1103
+ margin-top: 0;
1104
+ margin-left: -10px;
1105
+ }
1106
+ .form-stacked .actions {
1107
+ margin-left: -20px;
1108
+ padding-left: 20px;
1109
+ }
1110
+ /*
1111
+ * Tables.less
1112
+ * Tables for, you guessed it, tabular data
1113
+ * ---------------------------------------- */
1114
+ table {
1115
+ width: 100%;
1116
+ margin-bottom: 18px;
1117
+ padding: 0;
1118
+ font-size: 13px;
1119
+ border-collapse: collapse;
1120
+ }
1121
+ table th, table td {
1122
+ padding: 10px 10px 9px;
1123
+ line-height: 18px;
1124
+ text-align: left;
1125
+ }
1126
+ table th {
1127
+ padding-top: 9px;
1128
+ font-weight: bold;
1129
+ vertical-align: middle;
1130
+ }
1131
+ table td {
1132
+ vertical-align: top;
1133
+ border-top: 1px solid #ddd;
1134
+ }
1135
+ table tbody th {
1136
+ border-top: 1px solid #ddd;
1137
+ vertical-align: top;
1138
+ }
1139
+ .condensed-table th, .condensed-table td {
1140
+ padding: 5px 5px 4px;
1141
+ }
1142
+ .bordered-table {
1143
+ border: 1px solid #ddd;
1144
+ border-collapse: separate;
1145
+ *border-collapse: collapse;
1146
+ /* IE7, collapse table to remove spacing */
1147
+
1148
+ -webkit-border-radius: 4px;
1149
+ -moz-border-radius: 4px;
1150
+ border-radius: 4px;
1151
+ }
1152
+ .bordered-table th + th, .bordered-table td + td, .bordered-table th + td {
1153
+ border-left: 1px solid #ddd;
1154
+ }
1155
+ .bordered-table thead tr:first-child th:first-child, .bordered-table tbody tr:first-child td:first-child {
1156
+ -webkit-border-radius: 4px 0 0 0;
1157
+ -moz-border-radius: 4px 0 0 0;
1158
+ border-radius: 4px 0 0 0;
1159
+ }
1160
+ .bordered-table thead tr:first-child th:last-child, .bordered-table tbody tr:first-child td:last-child {
1161
+ -webkit-border-radius: 0 4px 0 0;
1162
+ -moz-border-radius: 0 4px 0 0;
1163
+ border-radius: 0 4px 0 0;
1164
+ }
1165
+ .bordered-table tbody tr:last-child td:first-child {
1166
+ -webkit-border-radius: 0 0 0 4px;
1167
+ -moz-border-radius: 0 0 0 4px;
1168
+ border-radius: 0 0 0 4px;
1169
+ }
1170
+ .bordered-table tbody tr:last-child td:last-child {
1171
+ -webkit-border-radius: 0 0 4px 0;
1172
+ -moz-border-radius: 0 0 4px 0;
1173
+ border-radius: 0 0 4px 0;
1174
+ }
1175
+ table .span1 {
1176
+ width: 20px;
1177
+ }
1178
+ table .span2 {
1179
+ width: 60px;
1180
+ }
1181
+ table .span3 {
1182
+ width: 100px;
1183
+ }
1184
+ table .span4 {
1185
+ width: 140px;
1186
+ }
1187
+ table .span5 {
1188
+ width: 180px;
1189
+ }
1190
+ table .span6 {
1191
+ width: 220px;
1192
+ }
1193
+ table .span7 {
1194
+ width: 260px;
1195
+ }
1196
+ table .span8 {
1197
+ width: 300px;
1198
+ }
1199
+ table .span9 {
1200
+ width: 340px;
1201
+ }
1202
+ table .span10 {
1203
+ width: 380px;
1204
+ }
1205
+ table .span11 {
1206
+ width: 420px;
1207
+ }
1208
+ table .span12 {
1209
+ width: 460px;
1210
+ }
1211
+ table .span13 {
1212
+ width: 500px;
1213
+ }
1214
+ table .span14 {
1215
+ width: 540px;
1216
+ }
1217
+ table .span15 {
1218
+ width: 580px;
1219
+ }
1220
+ table .span16 {
1221
+ width: 620px;
1222
+ }
1223
+ .zebra-striped tbody tr:nth-child(odd) td, .zebra-striped tbody tr:nth-child(odd) th {
1224
+ background-color: #f9f9f9;
1225
+ }
1226
+ .zebra-striped tbody tr:hover td, .zebra-striped tbody tr:hover th {
1227
+ background-color: #f5f5f5;
1228
+ }
1229
+ table .header {
1230
+ cursor: pointer;
1231
+ }
1232
+ table .header:after {
1233
+ content: "";
1234
+ float: right;
1235
+ margin-top: 7px;
1236
+ border-width: 0 4px 4px;
1237
+ border-style: solid;
1238
+ border-color: #000 transparent;
1239
+ visibility: hidden;
1240
+ }
1241
+ table .headerSortUp, table .headerSortDown {
1242
+ background-color: rgba(141, 192, 219, 0.25);
1243
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1244
+ }
1245
+ table .header:hover:after {
1246
+ visibility: visible;
1247
+ }
1248
+ table .headerSortDown:after, table .headerSortDown:hover:after {
1249
+ visibility: visible;
1250
+ filter: alpha(opacity=60);
1251
+ -khtml-opacity: 0.6;
1252
+ -moz-opacity: 0.6;
1253
+ opacity: 0.6;
1254
+ }
1255
+ table .headerSortUp:after {
1256
+ border-bottom: none;
1257
+ border-left: 4px solid transparent;
1258
+ border-right: 4px solid transparent;
1259
+ border-top: 4px solid #000;
1260
+ visibility: visible;
1261
+ -webkit-box-shadow: none;
1262
+ -moz-box-shadow: none;
1263
+ box-shadow: none;
1264
+ filter: alpha(opacity=60);
1265
+ -khtml-opacity: 0.6;
1266
+ -moz-opacity: 0.6;
1267
+ opacity: 0.6;
1268
+ }
1269
+ table .blue {
1270
+ color: #049cdb;
1271
+ border-bottom-color: #049cdb;
1272
+ }
1273
+ table .headerSortUp.blue, table .headerSortDown.blue {
1274
+ background-color: #ade6fe;
1275
+ }
1276
+ table .green {
1277
+ color: #46a546;
1278
+ border-bottom-color: #46a546;
1279
+ }
1280
+ table .headerSortUp.green, table .headerSortDown.green {
1281
+ background-color: #cdeacd;
1282
+ }
1283
+ table .red {
1284
+ color: #9d261d;
1285
+ border-bottom-color: #9d261d;
1286
+ }
1287
+ table .headerSortUp.red, table .headerSortDown.red {
1288
+ background-color: #f4c8c5;
1289
+ }
1290
+ table .yellow {
1291
+ color: #ffc40d;
1292
+ border-bottom-color: #ffc40d;
1293
+ }
1294
+ table .headerSortUp.yellow, table .headerSortDown.yellow {
1295
+ background-color: #fff6d9;
1296
+ }
1297
+ table .orange {
1298
+ color: #f89406;
1299
+ border-bottom-color: #f89406;
1300
+ }
1301
+ table .headerSortUp.orange, table .headerSortDown.orange {
1302
+ background-color: #fee9cc;
1303
+ }
1304
+ table .purple {
1305
+ color: #7a43b6;
1306
+ border-bottom-color: #7a43b6;
1307
+ }
1308
+ table .headerSortUp.purple, table .headerSortDown.purple {
1309
+ background-color: #e2d5f0;
1310
+ }
1311
+ /* Patterns.less
1312
+ * Repeatable UI elements outside the base styles provided from the scaffolding
1313
+ * ---------------------------------------------------------------------------- */
1314
+ .topbar {
1315
+ height: 40px;
1316
+ position: fixed;
1317
+ top: 0;
1318
+ left: 0;
1319
+ right: 0;
1320
+ z-index: 10000;
1321
+ overflow: visible;
1322
+ }
1323
+ .topbar a {
1324
+ color: #bfbfbf;
1325
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1326
+ }
1327
+ .topbar h3 a:hover, .topbar .brand:hover, .topbar ul .active > a {
1328
+ background-color: #333;
1329
+ background-color: rgba(255, 255, 255, 0.05);
1330
+ color: #ffffff;
1331
+ text-decoration: none;
1332
+ }
1333
+ .topbar h3 {
1334
+ position: relative;
1335
+ }
1336
+ .topbar h3 a, .topbar .brand {
1337
+ float: left;
1338
+ display: block;
1339
+ padding: 8px 20px 12px;
1340
+ margin-left: -20px;
1341
+ color: #ffffff;
1342
+ font-size: 20px;
1343
+ font-weight: 200;
1344
+ line-height: 1;
1345
+ }
1346
+ .topbar p {
1347
+ margin: 0;
1348
+ line-height: 40px;
1349
+ }
1350
+ .topbar p a:hover {
1351
+ background-color: transparent;
1352
+ color: #ffffff;
1353
+ }
1354
+ .topbar form {
1355
+ float: left;
1356
+ margin: 5px 0 0 0;
1357
+ position: relative;
1358
+ filter: alpha(opacity=100);
1359
+ -khtml-opacity: 1;
1360
+ -moz-opacity: 1;
1361
+ opacity: 1;
1362
+ }
1363
+ .topbar form.pull-right {
1364
+ float: right;
1365
+ }
1366
+ .topbar input {
1367
+ background-color: #444;
1368
+ background-color: rgba(255, 255, 255, 0.3);
1369
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1370
+ font-size: normal;
1371
+ font-weight: 13px;
1372
+ line-height: 1;
1373
+ padding: 4px 9px;
1374
+ color: #ffffff;
1375
+ color: rgba(255, 255, 255, 0.75);
1376
+ border: 1px solid #111;
1377
+ -webkit-border-radius: 4px;
1378
+ -moz-border-radius: 4px;
1379
+ border-radius: 4px;
1380
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1381
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1382
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1383
+ -webkit-transition: none;
1384
+ -moz-transition: none;
1385
+ -ms-transition: none;
1386
+ -o-transition: none;
1387
+ transition: none;
1388
+ }
1389
+ .topbar input:-moz-placeholder {
1390
+ color: #e6e6e6;
1391
+ }
1392
+ .topbar input::-webkit-input-placeholder {
1393
+ color: #e6e6e6;
1394
+ }
1395
+ .topbar input:hover {
1396
+ background-color: #bfbfbf;
1397
+ background-color: rgba(255, 255, 255, 0.5);
1398
+ color: #ffffff;
1399
+ }
1400
+ .topbar input:focus, .topbar input.focused {
1401
+ outline: 0;
1402
+ background-color: #ffffff;
1403
+ color: #404040;
1404
+ text-shadow: 0 1px 0 #ffffff;
1405
+ border: 0;
1406
+ padding: 5px 10px;
1407
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1408
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1409
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1410
+ }
1411
+ .topbar-inner, .topbar .fill {
1412
+ background-color: #222;
1413
+ background-color: #222222;
1414
+ background-repeat: repeat-x;
1415
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
1416
+ background-image: -moz-linear-gradient(top, #333333, #222222);
1417
+ background-image: -ms-linear-gradient(top, #333333, #222222);
1418
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
1419
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
1420
+ background-image: -o-linear-gradient(top, #333333, #222222);
1421
+ background-image: linear-gradient(top, #333333, #222222);
1422
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1423
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1424
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1425
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1426
+ }
1427
+ .topbar div > ul, .nav {
1428
+ display: block;
1429
+ float: left;
1430
+ margin: 0 10px 0 0;
1431
+ position: relative;
1432
+ left: 0;
1433
+ }
1434
+ .topbar div > ul > li, .nav > li {
1435
+ display: block;
1436
+ float: left;
1437
+ }
1438
+ .topbar div > ul a, .nav a {
1439
+ display: block;
1440
+ float: none;
1441
+ padding: 10px 10px 11px;
1442
+ line-height: 19px;
1443
+ text-decoration: none;
1444
+ }
1445
+ .topbar div > ul a:hover, .nav a:hover {
1446
+ color: #ffffff;
1447
+ text-decoration: none;
1448
+ }
1449
+ .topbar div > ul .active > a, .nav .active > a {
1450
+ background-color: #222;
1451
+ background-color: rgba(0, 0, 0, 0.5);
1452
+ }
1453
+ .topbar div > ul.secondary-nav, .nav.secondary-nav {
1454
+ float: right;
1455
+ margin-left: 10px;
1456
+ margin-right: 0;
1457
+ }
1458
+ .topbar div > ul.secondary-nav .menu-dropdown,
1459
+ .nav.secondary-nav .menu-dropdown,
1460
+ .topbar div > ul.secondary-nav .dropdown-menu,
1461
+ .nav.secondary-nav .dropdown-menu {
1462
+ right: 0;
1463
+ border: 0;
1464
+ }
1465
+ .topbar div > ul a.menu:hover,
1466
+ .nav a.menu:hover,
1467
+ .topbar div > ul li.open .menu,
1468
+ .nav li.open .menu,
1469
+ .topbar div > ul .dropdown-toggle:hover,
1470
+ .nav .dropdown-toggle:hover,
1471
+ .topbar div > ul .dropdown.open .dropdown-toggle,
1472
+ .nav .dropdown.open .dropdown-toggle {
1473
+ background: #444;
1474
+ background: rgba(255, 255, 255, 0.05);
1475
+ }
1476
+ .topbar div > ul .menu-dropdown,
1477
+ .nav .menu-dropdown,
1478
+ .topbar div > ul .dropdown-menu,
1479
+ .nav .dropdown-menu {
1480
+ background-color: #333;
1481
+ }
1482
+ .topbar div > ul .menu-dropdown a.menu,
1483
+ .nav .menu-dropdown a.menu,
1484
+ .topbar div > ul .dropdown-menu a.menu,
1485
+ .nav .dropdown-menu a.menu,
1486
+ .topbar div > ul .menu-dropdown .dropdown-toggle,
1487
+ .nav .menu-dropdown .dropdown-toggle,
1488
+ .topbar div > ul .dropdown-menu .dropdown-toggle,
1489
+ .nav .dropdown-menu .dropdown-toggle {
1490
+ color: #ffffff;
1491
+ }
1492
+ .topbar div > ul .menu-dropdown a.menu.open,
1493
+ .nav .menu-dropdown a.menu.open,
1494
+ .topbar div > ul .dropdown-menu a.menu.open,
1495
+ .nav .dropdown-menu a.menu.open,
1496
+ .topbar div > ul .menu-dropdown .dropdown-toggle.open,
1497
+ .nav .menu-dropdown .dropdown-toggle.open,
1498
+ .topbar div > ul .dropdown-menu .dropdown-toggle.open,
1499
+ .nav .dropdown-menu .dropdown-toggle.open {
1500
+ background: #444;
1501
+ background: rgba(255, 255, 255, 0.05);
1502
+ }
1503
+ .topbar div > ul .menu-dropdown li a,
1504
+ .nav .menu-dropdown li a,
1505
+ .topbar div > ul .dropdown-menu li a,
1506
+ .nav .dropdown-menu li a {
1507
+ color: #999;
1508
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
1509
+ }
1510
+ .topbar div > ul .menu-dropdown li a:hover,
1511
+ .nav .menu-dropdown li a:hover,
1512
+ .topbar div > ul .dropdown-menu li a:hover,
1513
+ .nav .dropdown-menu li a:hover {
1514
+ background-color: #191919;
1515
+ background-repeat: repeat-x;
1516
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
1517
+ background-image: -moz-linear-gradient(top, #292929, #191919);
1518
+ background-image: -ms-linear-gradient(top, #292929, #191919);
1519
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
1520
+ background-image: -webkit-linear-gradient(top, #292929, #191919);
1521
+ background-image: -o-linear-gradient(top, #292929, #191919);
1522
+ background-image: linear-gradient(top, #292929, #191919);
1523
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
1524
+ color: #ffffff;
1525
+ }
1526
+ .topbar div > ul .menu-dropdown .active a,
1527
+ .nav .menu-dropdown .active a,
1528
+ .topbar div > ul .dropdown-menu .active a,
1529
+ .nav .dropdown-menu .active a {
1530
+ color: #ffffff;
1531
+ }
1532
+ .topbar div > ul .menu-dropdown .divider,
1533
+ .nav .menu-dropdown .divider,
1534
+ .topbar div > ul .dropdown-menu .divider,
1535
+ .nav .dropdown-menu .divider {
1536
+ background-color: #222;
1537
+ border-color: #444;
1538
+ }
1539
+ .topbar ul .menu-dropdown li a, .topbar ul .dropdown-menu li a {
1540
+ padding: 4px 15px;
1541
+ }
1542
+ li.menu, .dropdown {
1543
+ position: relative;
1544
+ }
1545
+ a.menu:after, .dropdown-toggle:after {
1546
+ width: 0;
1547
+ height: 0;
1548
+ display: inline-block;
1549
+ content: "↓";
1550
+ text-indent: -99999px;
1551
+ vertical-align: top;
1552
+ margin-top: 8px;
1553
+ margin-left: 4px;
1554
+ border-left: 4px solid transparent;
1555
+ border-right: 4px solid transparent;
1556
+ border-top: 4px solid #ffffff;
1557
+ filter: alpha(opacity=50);
1558
+ -khtml-opacity: 0.5;
1559
+ -moz-opacity: 0.5;
1560
+ opacity: 0.5;
1561
+ }
1562
+ .menu-dropdown, .dropdown-menu {
1563
+ background-color: #ffffff;
1564
+ float: left;
1565
+ display: none;
1566
+ position: absolute;
1567
+ top: 40px;
1568
+ z-index: 900;
1569
+ min-width: 160px;
1570
+ max-width: 220px;
1571
+ _width: 160px;
1572
+ margin-left: 0;
1573
+ margin-right: 0;
1574
+ padding: 6px 0;
1575
+ zoom: 1;
1576
+ border-color: #999;
1577
+ border-color: rgba(0, 0, 0, 0.2);
1578
+ border-style: solid;
1579
+ border-width: 0 1px 1px;
1580
+ -webkit-border-radius: 0 0 6px 6px;
1581
+ -moz-border-radius: 0 0 6px 6px;
1582
+ border-radius: 0 0 6px 6px;
1583
+ -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1584
+ -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1585
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1586
+ -webkit-background-clip: padding-box;
1587
+ -moz-background-clip: padding-box;
1588
+ background-clip: padding-box;
1589
+ }
1590
+ .menu-dropdown li, .dropdown-menu li {
1591
+ float: none;
1592
+ display: block;
1593
+ background-color: none;
1594
+ }
1595
+ .menu-dropdown .divider, .dropdown-menu .divider {
1596
+ height: 1px;
1597
+ margin: 5px 0;
1598
+ overflow: hidden;
1599
+ background-color: #eee;
1600
+ border-bottom: 1px solid #ffffff;
1601
+ }
1602
+ .topbar .dropdown-menu a, .dropdown-menu a {
1603
+ display: block;
1604
+ padding: 4px 15px;
1605
+ clear: both;
1606
+ font-weight: normal;
1607
+ line-height: 18px;
1608
+ color: #808080;
1609
+ text-shadow: 0 1px 0 #ffffff;
1610
+ }
1611
+ .topbar .dropdown-menu a:hover,
1612
+ .dropdown-menu a:hover,
1613
+ .topbar .dropdown-menu a.hover,
1614
+ .dropdown-menu a.hover {
1615
+ background-color: #dddddd;
1616
+ background-repeat: repeat-x;
1617
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
1618
+ background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
1619
+ background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
1620
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
1621
+ background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
1622
+ background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
1623
+ background-image: linear-gradient(top, #eeeeee, #dddddd);
1624
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
1625
+ color: #404040;
1626
+ text-decoration: none;
1627
+ -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
1628
+ -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
1629
+ box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
1630
+ }
1631
+ .open .menu,
1632
+ .dropdown.open .menu,
1633
+ .open .dropdown-toggle,
1634
+ .dropdown.open .dropdown-toggle {
1635
+ color: #ffffff;
1636
+ background: #ccc;
1637
+ background: rgba(0, 0, 0, 0.3);
1638
+ }
1639
+ .open .menu-dropdown,
1640
+ .dropdown.open .menu-dropdown,
1641
+ .open .dropdown-menu,
1642
+ .dropdown.open .dropdown-menu {
1643
+ display: block;
1644
+ }
1645
+ .tabs, .pills {
1646
+ margin: 0 0 18px;
1647
+ padding: 0;
1648
+ list-style: none;
1649
+ zoom: 1;
1650
+ }
1651
+ .tabs:before,
1652
+ .pills:before,
1653
+ .tabs:after,
1654
+ .pills:after {
1655
+ display: table;
1656
+ content: "";
1657
+ zoom: 1;
1658
+ }
1659
+ .tabs:after, .pills:after {
1660
+ clear: both;
1661
+ }
1662
+ .tabs > li, .pills > li {
1663
+ float: left;
1664
+ }
1665
+ .tabs > li > a, .pills > li > a {
1666
+ display: block;
1667
+ }
1668
+ .tabs {
1669
+ border-color: #ddd;
1670
+ border-style: solid;
1671
+ border-width: 0 0 1px;
1672
+ }
1673
+ .tabs > li {
1674
+ position: relative;
1675
+ margin-bottom: -1px;
1676
+ }
1677
+ .tabs > li > a {
1678
+ padding: 0 15px;
1679
+ margin-right: 2px;
1680
+ line-height: 34px;
1681
+ border: 1px solid transparent;
1682
+ -webkit-border-radius: 4px 4px 0 0;
1683
+ -moz-border-radius: 4px 4px 0 0;
1684
+ border-radius: 4px 4px 0 0;
1685
+ }
1686
+ .tabs > li > a:hover {
1687
+ text-decoration: none;
1688
+ background-color: #eee;
1689
+ border-color: #eee #eee #ddd;
1690
+ }
1691
+ .tabs .active > a, .tabs .active > a:hover {
1692
+ color: #808080;
1693
+ background-color: #ffffff;
1694
+ border: 1px solid #ddd;
1695
+ border-bottom-color: transparent;
1696
+ cursor: default;
1697
+ }
1698
+ .tabs .menu-dropdown, .tabs .dropdown-menu {
1699
+ top: 35px;
1700
+ border-width: 1px;
1701
+ -webkit-border-radius: 0 6px 6px 6px;
1702
+ -moz-border-radius: 0 6px 6px 6px;
1703
+ border-radius: 0 6px 6px 6px;
1704
+ }
1705
+ .tabs a.menu:after, .tabs .dropdown-toggle:after {
1706
+ border-top-color: #999;
1707
+ margin-top: 15px;
1708
+ margin-left: 5px;
1709
+ }
1710
+ .tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle {
1711
+ border-color: #999;
1712
+ }
1713
+ .tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
1714
+ border-top-color: #555;
1715
+ }
1716
+ .pills a {
1717
+ margin: 5px 3px 5px 0;
1718
+ padding: 0 15px;
1719
+ line-height: 30px;
1720
+ text-shadow: 0 1px 1px #ffffff;
1721
+ -webkit-border-radius: 15px;
1722
+ -moz-border-radius: 15px;
1723
+ border-radius: 15px;
1724
+ }
1725
+ .pills a:hover {
1726
+ color: #ffffff;
1727
+ text-decoration: none;
1728
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1729
+ background-color: #00438a;
1730
+ }
1731
+ .pills .active a {
1732
+ color: #ffffff;
1733
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1734
+ background-color: #0069d6;
1735
+ }
1736
+ .pills-vertical > li {
1737
+ float: none;
1738
+ }
1739
+ .tab-content > .tab-pane,
1740
+ .pill-content > .pill-pane,
1741
+ .tab-content > div,
1742
+ .pill-content > div {
1743
+ display: none;
1744
+ }
1745
+ .tab-content > .active, .pill-content > .active {
1746
+ display: block;
1747
+ }
1748
+ .breadcrumb {
1749
+ padding: 7px 14px;
1750
+ margin: 0 0 18px;
1751
+ background-color: #f5f5f5;
1752
+ background-repeat: repeat-x;
1753
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
1754
+ background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
1755
+ background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
1756
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
1757
+ background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
1758
+ background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
1759
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
1760
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
1761
+ border: 1px solid #ddd;
1762
+ -webkit-border-radius: 3px;
1763
+ -moz-border-radius: 3px;
1764
+ border-radius: 3px;
1765
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
1766
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
1767
+ box-shadow: inset 0 1px 0 #ffffff;
1768
+ }
1769
+ .breadcrumb li {
1770
+ display: inline;
1771
+ text-shadow: 0 1px 0 #ffffff;
1772
+ }
1773
+ .breadcrumb .divider {
1774
+ padding: 0 5px;
1775
+ color: #bfbfbf;
1776
+ }
1777
+ .breadcrumb .active a {
1778
+ color: #404040;
1779
+ }
1780
+ .hero-unit {
1781
+ background-color: #f5f5f5;
1782
+ margin-bottom: 30px;
1783
+ padding: 60px;
1784
+ -webkit-border-radius: 6px;
1785
+ -moz-border-radius: 6px;
1786
+ border-radius: 6px;
1787
+ }
1788
+ .hero-unit h1 {
1789
+ margin-bottom: 0;
1790
+ font-size: 60px;
1791
+ line-height: 1;
1792
+ letter-spacing: -1px;
1793
+ }
1794
+ .hero-unit p {
1795
+ font-size: 18px;
1796
+ font-weight: 200;
1797
+ line-height: 27px;
1798
+ }
1799
+ footer {
1800
+ margin-top: 17px;
1801
+ padding-top: 17px;
1802
+ border-top: 1px solid #eee;
1803
+ }
1804
+ .page-header {
1805
+ margin-bottom: 17px;
1806
+ border-bottom: 1px solid #ddd;
1807
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1808
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1809
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1810
+ }
1811
+ .page-header h1 {
1812
+ margin-bottom: 8px;
1813
+ }
1814
+ .btn.danger,
1815
+ .alert-message.danger,
1816
+ .btn.danger:hover,
1817
+ .alert-message.danger:hover,
1818
+ .btn.error,
1819
+ .alert-message.error,
1820
+ .btn.error:hover,
1821
+ .alert-message.error:hover,
1822
+ .btn.success,
1823
+ .alert-message.success,
1824
+ .btn.success:hover,
1825
+ .alert-message.success:hover,
1826
+ .btn.info,
1827
+ .alert-message.info,
1828
+ .btn.info:hover,
1829
+ .alert-message.info:hover {
1830
+ color: #ffffff;
1831
+ }
1832
+ .btn .close, .alert-message .close {
1833
+ font-family: Arial, sans-serif;
1834
+ line-height: 18px;
1835
+ }
1836
+ .btn.danger,
1837
+ .alert-message.danger,
1838
+ .btn.error,
1839
+ .alert-message.error {
1840
+ background-color: #c43c35;
1841
+ background-repeat: repeat-x;
1842
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
1843
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
1844
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
1845
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
1846
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
1847
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
1848
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
1849
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
1850
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1851
+ border-color: #c43c35 #c43c35 #882a25;
1852
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1853
+ }
1854
+ .btn.success, .alert-message.success {
1855
+ background-color: #57a957;
1856
+ background-repeat: repeat-x;
1857
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
1858
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
1859
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
1860
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
1861
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
1862
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
1863
+ background-image: linear-gradient(top, #62c462, #57a957);
1864
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
1865
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1866
+ border-color: #57a957 #57a957 #3d773d;
1867
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1868
+ }
1869
+ .btn.info, .alert-message.info {
1870
+ background-color: #339bb9;
1871
+ background-repeat: repeat-x;
1872
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
1873
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
1874
+ background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
1875
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
1876
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
1877
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
1878
+ background-image: linear-gradient(top, #5bc0de, #339bb9);
1879
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
1880
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1881
+ border-color: #339bb9 #339bb9 #22697d;
1882
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1883
+ }
1884
+ .btn {
1885
+ cursor: pointer;
1886
+ display: inline-block;
1887
+ background-color: #e6e6e6;
1888
+ background-repeat: no-repeat;
1889
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1890
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1891
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1892
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1893
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1894
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1895
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1896
+ padding: 5px 14px 6px;
1897
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1898
+ color: #333;
1899
+ font-size: 13px;
1900
+ line-height: normal;
1901
+ border: 1px solid #ccc;
1902
+ border-bottom-color: #bbb;
1903
+ -webkit-border-radius: 4px;
1904
+ -moz-border-radius: 4px;
1905
+ border-radius: 4px;
1906
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1907
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1908
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1909
+ -webkit-transition: 0.1s linear all;
1910
+ -moz-transition: 0.1s linear all;
1911
+ -ms-transition: 0.1s linear all;
1912
+ -o-transition: 0.1s linear all;
1913
+ transition: 0.1s linear all;
1914
+ }
1915
+ .btn:hover {
1916
+ background-position: 0 -15px;
1917
+ color: #333;
1918
+ text-decoration: none;
1919
+ }
1920
+ .btn:focus {
1921
+ outline: 1px dotted #666;
1922
+ }
1923
+ .btn.primary {
1924
+ color: #ffffff;
1925
+ background-color: #0064cd;
1926
+ background-repeat: repeat-x;
1927
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
1928
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
1929
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
1930
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
1931
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
1932
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
1933
+ background-image: linear-gradient(top, #049cdb, #0064cd);
1934
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
1935
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1936
+ border-color: #0064cd #0064cd #003f81;
1937
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1938
+ }
1939
+ .btn.active, .btn:active {
1940
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1941
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1942
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1943
+ }
1944
+ .btn.disabled {
1945
+ cursor: default;
1946
+ background-image: none;
1947
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1948
+ filter: alpha(opacity=65);
1949
+ -khtml-opacity: 0.65;
1950
+ -moz-opacity: 0.65;
1951
+ opacity: 0.65;
1952
+ -webkit-box-shadow: none;
1953
+ -moz-box-shadow: none;
1954
+ box-shadow: none;
1955
+ }
1956
+ .btn[disabled] {
1957
+ cursor: default;
1958
+ background-image: none;
1959
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1960
+ filter: alpha(opacity=65);
1961
+ -khtml-opacity: 0.65;
1962
+ -moz-opacity: 0.65;
1963
+ opacity: 0.65;
1964
+ -webkit-box-shadow: none;
1965
+ -moz-box-shadow: none;
1966
+ box-shadow: none;
1967
+ }
1968
+ .btn.large {
1969
+ font-size: 15px;
1970
+ line-height: normal;
1971
+ padding: 9px 14px 9px;
1972
+ -webkit-border-radius: 6px;
1973
+ -moz-border-radius: 6px;
1974
+ border-radius: 6px;
1975
+ }
1976
+ .btn.small {
1977
+ padding: 7px 9px 7px;
1978
+ font-size: 11px;
1979
+ }
1980
+ :root .alert-message, :root .btn {
1981
+ border-radius: 0 \0;
1982
+ }
1983
+ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1984
+ padding: 0;
1985
+ border: 0;
1986
+ }
1987
+ .close {
1988
+ float: right;
1989
+ color: #000000;
1990
+ font-size: 20px;
1991
+ font-weight: bold;
1992
+ line-height: 13.5px;
1993
+ text-shadow: 0 1px 0 #ffffff;
1994
+ filter: alpha(opacity=25);
1995
+ -khtml-opacity: 0.25;
1996
+ -moz-opacity: 0.25;
1997
+ opacity: 0.25;
1998
+ }
1999
+ .close:hover {
2000
+ color: #000000;
2001
+ text-decoration: none;
2002
+ filter: alpha(opacity=40);
2003
+ -khtml-opacity: 0.4;
2004
+ -moz-opacity: 0.4;
2005
+ opacity: 0.4;
2006
+ }
2007
+ .alert-message {
2008
+ position: relative;
2009
+ padding: 7px 15px;
2010
+ margin-bottom: 18px;
2011
+ color: #404040;
2012
+ background-color: #eedc94;
2013
+ background-repeat: repeat-x;
2014
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
2015
+ background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
2016
+ background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
2017
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
2018
+ background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
2019
+ background-image: -o-linear-gradient(top, #fceec1, #eedc94);
2020
+ background-image: linear-gradient(top, #fceec1, #eedc94);
2021
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
2022
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2023
+ border-color: #eedc94 #eedc94 #e4c652;
2024
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2025
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2026
+ border-width: 1px;
2027
+ border-style: solid;
2028
+ -webkit-border-radius: 4px;
2029
+ -moz-border-radius: 4px;
2030
+ border-radius: 4px;
2031
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2032
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2033
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2034
+ }
2035
+ .alert-message .close {
2036
+ margin-top: 1px;
2037
+ *margin-top: 0;
2038
+ }
2039
+ .alert-message a {
2040
+ font-weight: bold;
2041
+ color: #404040;
2042
+ }
2043
+ .alert-message.danger p a,
2044
+ .alert-message.error p a,
2045
+ .alert-message.success p a,
2046
+ .alert-message.info p a {
2047
+ color: #ffffff;
2048
+ }
2049
+ .alert-message h5 {
2050
+ line-height: 18px;
2051
+ }
2052
+ .alert-message p {
2053
+ margin-bottom: 0;
2054
+ }
2055
+ .alert-message div {
2056
+ margin-top: 5px;
2057
+ margin-bottom: 2px;
2058
+ line-height: 28px;
2059
+ }
2060
+ .alert-message .btn {
2061
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
2062
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
2063
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
2064
+ }
2065
+ .alert-message.block-message {
2066
+ background-image: none;
2067
+ background-color: #fdf5d9;
2068
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2069
+ padding: 14px;
2070
+ border-color: #fceec1;
2071
+ -webkit-box-shadow: none;
2072
+ -moz-box-shadow: none;
2073
+ box-shadow: none;
2074
+ }
2075
+ .alert-message.block-message ul, .alert-message.block-message p {
2076
+ margin-right: 30px;
2077
+ }
2078
+ .alert-message.block-message ul {
2079
+ margin-bottom: 0;
2080
+ }
2081
+ .alert-message.block-message li {
2082
+ color: #404040;
2083
+ }
2084
+ .alert-message.block-message .alert-actions {
2085
+ margin-top: 5px;
2086
+ }
2087
+ .alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
2088
+ color: #404040;
2089
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2090
+ }
2091
+ .alert-message.block-message.error {
2092
+ background-color: #fddfde;
2093
+ border-color: #fbc7c6;
2094
+ }
2095
+ .alert-message.block-message.success {
2096
+ background-color: #d1eed1;
2097
+ border-color: #bfe7bf;
2098
+ }
2099
+ .alert-message.block-message.info {
2100
+ background-color: #ddf4fb;
2101
+ border-color: #c6edf9;
2102
+ }
2103
+ .alert-message.block-message.danger p a,
2104
+ .alert-message.block-message.error p a,
2105
+ .alert-message.block-message.success p a,
2106
+ .alert-message.block-message.info p a {
2107
+ color: #404040;
2108
+ }
2109
+ .pagination {
2110
+ height: 36px;
2111
+ margin: 18px 0;
2112
+ }
2113
+ .pagination ul {
2114
+ float: left;
2115
+ margin: 0;
2116
+ border: 1px solid #ddd;
2117
+ border: 1px solid rgba(0, 0, 0, 0.15);
2118
+ -webkit-border-radius: 3px;
2119
+ -moz-border-radius: 3px;
2120
+ border-radius: 3px;
2121
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2122
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2123
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2124
+ }
2125
+ .pagination li {
2126
+ display: inline;
2127
+ }
2128
+ .pagination a {
2129
+ float: left;
2130
+ padding: 0 14px;
2131
+ line-height: 34px;
2132
+ border-right: 1px solid;
2133
+ border-right-color: #ddd;
2134
+ border-right-color: rgba(0, 0, 0, 0.15);
2135
+ *border-right-color: #ddd;
2136
+ /* IE6-7 */
2137
+
2138
+ text-decoration: none;
2139
+ }
2140
+ .pagination a:hover, .pagination .active a {
2141
+ background-color: #c7eefe;
2142
+ }
2143
+ .pagination .disabled a, .pagination .disabled a:hover {
2144
+ background-color: transparent;
2145
+ color: #bfbfbf;
2146
+ }
2147
+ .pagination .next a {
2148
+ border: 0;
2149
+ }
2150
+ .well {
2151
+ background-color: #f5f5f5;
2152
+ margin-bottom: 20px;
2153
+ padding: 19px;
2154
+ min-height: 20px;
2155
+ border: 1px solid #eee;
2156
+ border: 1px solid rgba(0, 0, 0, 0.05);
2157
+ -webkit-border-radius: 4px;
2158
+ -moz-border-radius: 4px;
2159
+ border-radius: 4px;
2160
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2161
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2162
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2163
+ }
2164
+ .well blockquote {
2165
+ border-color: #ddd;
2166
+ border-color: rgba(0, 0, 0, 0.15);
2167
+ }
2168
+ .modal-backdrop {
2169
+ background-color: #000000;
2170
+ position: fixed;
2171
+ top: 0;
2172
+ left: 0;
2173
+ right: 0;
2174
+ bottom: 0;
2175
+ z-index: 10000;
2176
+ }
2177
+ .modal-backdrop.fade {
2178
+ opacity: 0;
2179
+ }
2180
+ .modal-backdrop, .modal-backdrop.fade.in {
2181
+ filter: alpha(opacity=80);
2182
+ -khtml-opacity: 0.8;
2183
+ -moz-opacity: 0.8;
2184
+ opacity: 0.8;
2185
+ }
2186
+ .modal {
2187
+ position: fixed;
2188
+ top: 50%;
2189
+ left: 50%;
2190
+ z-index: 11000;
2191
+ max-height: 500px;
2192
+ overflow: auto;
2193
+ width: 560px;
2194
+ margin: -250px 0 0 -280px;
2195
+ background-color: #ffffff;
2196
+ border: 1px solid #999;
2197
+ border: 1px solid rgba(0, 0, 0, 0.3);
2198
+ *border: 1px solid #999;
2199
+ /* IE6-7 */
2200
+
2201
+ -webkit-border-radius: 6px;
2202
+ -moz-border-radius: 6px;
2203
+ border-radius: 6px;
2204
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2205
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2206
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2207
+ -webkit-background-clip: padding-box;
2208
+ -moz-background-clip: padding-box;
2209
+ background-clip: padding-box;
2210
+ }
2211
+ .modal .close {
2212
+ margin-top: 7px;
2213
+ }
2214
+ .modal.fade {
2215
+ -webkit-transition: opacity .3s linear, top .3s ease-out;
2216
+ -moz-transition: opacity .3s linear, top .3s ease-out;
2217
+ -ms-transition: opacity .3s linear, top .3s ease-out;
2218
+ -o-transition: opacity .3s linear, top .3s ease-out;
2219
+ transition: opacity .3s linear, top .3s ease-out;
2220
+ top: -25%;
2221
+ }
2222
+ .modal.fade.in {
2223
+ top: 50%;
2224
+ }
2225
+ .modal-header {
2226
+ border-bottom: 1px solid #eee;
2227
+ padding: 5px 15px;
2228
+ }
2229
+ .modal-body {
2230
+ padding: 15px;
2231
+ }
2232
+ .modal-body form {
2233
+ margin-bottom: 0;
2234
+ }
2235
+ .modal-footer {
2236
+ background-color: #f5f5f5;
2237
+ padding: 14px 15px 15px;
2238
+ border-top: 1px solid #ddd;
2239
+ -webkit-border-radius: 0 0 6px 6px;
2240
+ -moz-border-radius: 0 0 6px 6px;
2241
+ border-radius: 0 0 6px 6px;
2242
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
2243
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
2244
+ box-shadow: inset 0 1px 0 #ffffff;
2245
+ zoom: 1;
2246
+ margin-bottom: 0;
2247
+ }
2248
+ .modal-footer:before, .modal-footer:after {
2249
+ display: table;
2250
+ content: "";
2251
+ zoom: 1;
2252
+ }
2253
+ .modal-footer:after {
2254
+ clear: both;
2255
+ }
2256
+ .modal-footer .btn {
2257
+ float: right;
2258
+ margin-left: 5px;
2259
+ }
2260
+ .modal .popover, .modal .twipsy {
2261
+ z-index: 12000;
2262
+ }
2263
+ .twipsy {
2264
+ display: block;
2265
+ position: absolute;
2266
+ visibility: visible;
2267
+ padding: 5px;
2268
+ font-size: 11px;
2269
+ z-index: 1000;
2270
+ filter: alpha(opacity=80);
2271
+ -khtml-opacity: 0.8;
2272
+ -moz-opacity: 0.8;
2273
+ opacity: 0.8;
2274
+ }
2275
+ .twipsy.fade.in {
2276
+ filter: alpha(opacity=80);
2277
+ -khtml-opacity: 0.8;
2278
+ -moz-opacity: 0.8;
2279
+ opacity: 0.8;
2280
+ }
2281
+ .twipsy.above .twipsy-arrow {
2282
+ bottom: 0;
2283
+ left: 50%;
2284
+ margin-left: -5px;
2285
+ border-left: 5px solid transparent;
2286
+ border-right: 5px solid transparent;
2287
+ border-top: 5px solid #000000;
2288
+ }
2289
+ .twipsy.left .twipsy-arrow {
2290
+ top: 50%;
2291
+ right: 0;
2292
+ margin-top: -5px;
2293
+ border-top: 5px solid transparent;
2294
+ border-bottom: 5px solid transparent;
2295
+ border-left: 5px solid #000000;
2296
+ }
2297
+ .twipsy.below .twipsy-arrow {
2298
+ top: 0;
2299
+ left: 50%;
2300
+ margin-left: -5px;
2301
+ border-left: 5px solid transparent;
2302
+ border-right: 5px solid transparent;
2303
+ border-bottom: 5px solid #000000;
2304
+ }
2305
+ .twipsy.right .twipsy-arrow {
2306
+ top: 50%;
2307
+ left: 0;
2308
+ margin-top: -5px;
2309
+ border-top: 5px solid transparent;
2310
+ border-bottom: 5px solid transparent;
2311
+ border-right: 5px solid #000000;
2312
+ }
2313
+ .twipsy-inner {
2314
+ padding: 3px 8px;
2315
+ background-color: #000000;
2316
+ color: white;
2317
+ text-align: center;
2318
+ max-width: 200px;
2319
+ text-decoration: none;
2320
+ -webkit-border-radius: 4px;
2321
+ -moz-border-radius: 4px;
2322
+ border-radius: 4px;
2323
+ }
2324
+ .twipsy-arrow {
2325
+ position: absolute;
2326
+ width: 0;
2327
+ height: 0;
2328
+ }
2329
+ .popover {
2330
+ position: absolute;
2331
+ top: 0;
2332
+ left: 0;
2333
+ z-index: 1000;
2334
+ padding: 5px;
2335
+ display: none;
2336
+ }
2337
+ .popover.above .arrow {
2338
+ bottom: 0;
2339
+ left: 50%;
2340
+ margin-left: -5px;
2341
+ border-left: 5px solid transparent;
2342
+ border-right: 5px solid transparent;
2343
+ border-top: 5px solid #000000;
2344
+ }
2345
+ .popover.right .arrow {
2346
+ top: 50%;
2347
+ left: 0;
2348
+ margin-top: -5px;
2349
+ border-top: 5px solid transparent;
2350
+ border-bottom: 5px solid transparent;
2351
+ border-right: 5px solid #000000;
2352
+ }
2353
+ .popover.below .arrow {
2354
+ top: 0;
2355
+ left: 50%;
2356
+ margin-left: -5px;
2357
+ border-left: 5px solid transparent;
2358
+ border-right: 5px solid transparent;
2359
+ border-bottom: 5px solid #000000;
2360
+ }
2361
+ .popover.left .arrow {
2362
+ top: 50%;
2363
+ right: 0;
2364
+ margin-top: -5px;
2365
+ border-top: 5px solid transparent;
2366
+ border-bottom: 5px solid transparent;
2367
+ border-left: 5px solid #000000;
2368
+ }
2369
+ .popover .arrow {
2370
+ position: absolute;
2371
+ width: 0;
2372
+ height: 0;
2373
+ }
2374
+ .popover .inner {
2375
+ background: #000000;
2376
+ background: rgba(0, 0, 0, 0.8);
2377
+ padding: 3px;
2378
+ overflow: hidden;
2379
+ width: 280px;
2380
+ -webkit-border-radius: 6px;
2381
+ -moz-border-radius: 6px;
2382
+ border-radius: 6px;
2383
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2384
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2385
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2386
+ }
2387
+ .popover .title {
2388
+ background-color: #f5f5f5;
2389
+ padding: 9px 15px;
2390
+ line-height: 1;
2391
+ -webkit-border-radius: 3px 3px 0 0;
2392
+ -moz-border-radius: 3px 3px 0 0;
2393
+ border-radius: 3px 3px 0 0;
2394
+ border-bottom: 1px solid #eee;
2395
+ }
2396
+ .popover .content {
2397
+ background-color: #ffffff;
2398
+ padding: 14px;
2399
+ -webkit-border-radius: 0 0 3px 3px;
2400
+ -moz-border-radius: 0 0 3px 3px;
2401
+ border-radius: 0 0 3px 3px;
2402
+ -webkit-background-clip: padding-box;
2403
+ -moz-background-clip: padding-box;
2404
+ background-clip: padding-box;
2405
+ }
2406
+ .popover .content p, .popover .content ul, .popover .content ol {
2407
+ margin-bottom: 0;
2408
+ }
2409
+ .fade {
2410
+ -webkit-transition: opacity 0.15s linear;
2411
+ -moz-transition: opacity 0.15s linear;
2412
+ -ms-transition: opacity 0.15s linear;
2413
+ -o-transition: opacity 0.15s linear;
2414
+ transition: opacity 0.15s linear;
2415
+ opacity: 0;
2416
+ }
2417
+ .fade.in {
2418
+ opacity: 1;
2419
+ }
2420
+ .label {
2421
+ padding: 1px 3px 2px;
2422
+ font-size: 9.75px;
2423
+ font-weight: bold;
2424
+ color: #ffffff;
2425
+ text-transform: uppercase;
2426
+ white-space: nowrap;
2427
+ background-color: #bfbfbf;
2428
+ -webkit-border-radius: 3px;
2429
+ -moz-border-radius: 3px;
2430
+ border-radius: 3px;
2431
+ text-shadow: none;
2432
+ }
2433
+ .label.important {
2434
+ background-color: #c43c35;
2435
+ }
2436
+ .label.warning {
2437
+ background-color: #f89406;
2438
+ }
2439
+ .label.success {
2440
+ background-color: #46a546;
2441
+ }
2442
+ .label.notice {
2443
+ background-color: #62cffc;
2444
+ }
2445
+ .media-grid {
2446
+ margin-left: -20px;
2447
+ margin-bottom: 0;
2448
+ zoom: 1;
2449
+ }
2450
+ .media-grid:before, .media-grid:after {
2451
+ display: table;
2452
+ content: "";
2453
+ zoom: 1;
2454
+ }
2455
+ .media-grid:after {
2456
+ clear: both;
2457
+ }
2458
+ .media-grid li {
2459
+ display: inline;
2460
+ }
2461
+ .media-grid a {
2462
+ float: left;
2463
+ padding: 4px;
2464
+ margin: 0 0 18px 20px;
2465
+ border: 1px solid #ddd;
2466
+ -webkit-border-radius: 4px;
2467
+ -moz-border-radius: 4px;
2468
+ border-radius: 4px;
2469
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2470
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2471
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2472
+ }
2473
+ .media-grid a img {
2474
+ display: block;
2475
+ }
2476
+ .media-grid a:hover {
2477
+ border-color: #0069d6;
2478
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2479
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2480
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2481
+ }
2482
+ ;
2483
+ TI"asset_paths;
2484
+ F["�/Users/adam/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/twitter-bootstrap-rails-1.4.3/vendor/assets/stylesheets/twitter/bootstrap.css.lessI"dependency_paths;
2485
+ F[{I" path;
2486
+ F"�/Users/adam/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/twitter-bootstrap-rails-1.4.3/vendor/assets/stylesheets/twitter/bootstrap.css.lessI"
2487
+ mtime;
2488
+ FIu: Time
2489
+ T: offsetiI"hexdigest;
2490
+ F"%e2d958bee749bb4051ba6382bb863e17I"
2491
+ F"%ee50e40b36d7dc25c526aaff3fac8c9c