jquery-ui-bootstrap-rails 0.0.1 → 0.0.2

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