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