bootstrap-generators 3.0.0.1 → 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -8
  3. data/Rakefile +3 -7
  4. data/lib/bootstrap/generators/version.rb +1 -1
  5. data/lib/generators/bootstrap/install/templates/assets/stylesheets/bootstrap-variables.less +57 -40
  6. data/lib/generators/bootstrap/install/templates/assets/stylesheets/bootstrap-variables.scss +57 -40
  7. data/lib/generators/bootstrap/install/templates/layouts/starter.html.erb +1 -1
  8. data/lib/generators/bootstrap/install/templates/layouts/starter.html.haml +1 -1
  9. data/readme-template.md.erb +1 -1
  10. data/vendor/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  11. data/vendor/assets/fonts/glyphicons-halflings-regular.svg +200 -199
  12. data/vendor/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  13. data/vendor/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  14. data/vendor/assets/javascripts/bootstrap.js +5 -5
  15. data/vendor/assets/javascripts/bootstrap/affix.js +4 -4
  16. data/vendor/assets/javascripts/bootstrap/alert.js +3 -3
  17. data/vendor/assets/javascripts/bootstrap/button.js +3 -3
  18. data/vendor/assets/javascripts/bootstrap/carousel.js +4 -4
  19. data/vendor/assets/javascripts/bootstrap/collapse.js +4 -4
  20. data/vendor/assets/javascripts/bootstrap/dropdown.js +4 -4
  21. data/vendor/assets/javascripts/bootstrap/modal.js +4 -4
  22. data/vendor/assets/javascripts/bootstrap/popover.js +4 -4
  23. data/vendor/assets/javascripts/bootstrap/scrollspy.js +4 -4
  24. data/vendor/assets/javascripts/bootstrap/tab.js +5 -5
  25. data/vendor/assets/javascripts/bootstrap/tooltip.js +4 -4
  26. data/vendor/assets/javascripts/bootstrap/transition.js +3 -3
  27. data/vendor/assets/stylesheets/bootstrap.css +1039 -746
  28. data/vendor/twitter/bootstrap/less/alerts.less +1 -1
  29. data/vendor/twitter/bootstrap/less/bootstrap.less +0 -10
  30. data/vendor/twitter/bootstrap/less/breadcrumbs.less +2 -2
  31. data/vendor/twitter/bootstrap/less/button-groups.less +6 -1
  32. data/vendor/twitter/bootstrap/less/buttons.less +2 -4
  33. data/vendor/twitter/bootstrap/less/carousel.less +32 -10
  34. data/vendor/twitter/bootstrap/less/code.less +5 -8
  35. data/vendor/twitter/bootstrap/less/dropdowns.less +1 -2
  36. data/vendor/twitter/bootstrap/less/forms.less +21 -10
  37. data/vendor/twitter/bootstrap/less/glyphicons.less +20 -15
  38. data/vendor/twitter/bootstrap/less/grid.less +32 -285
  39. data/vendor/twitter/bootstrap/less/input-groups.less +9 -0
  40. data/vendor/twitter/bootstrap/less/jumbotron.less +2 -2
  41. data/vendor/twitter/bootstrap/less/list-group.less +12 -12
  42. data/vendor/twitter/bootstrap/less/mixins.less +164 -29
  43. data/vendor/twitter/bootstrap/less/modals.less +2 -11
  44. data/vendor/twitter/bootstrap/less/navbar.less +10 -7
  45. data/vendor/twitter/bootstrap/less/navs.less +53 -20
  46. data/vendor/twitter/bootstrap/less/normalize.less +16 -6
  47. data/vendor/twitter/bootstrap/less/pagination.less +2 -0
  48. data/vendor/twitter/bootstrap/less/panels.less +31 -7
  49. data/vendor/twitter/bootstrap/less/print.less +6 -1
  50. data/vendor/twitter/bootstrap/less/progress-bars.less +4 -7
  51. data/vendor/twitter/bootstrap/less/responsive-utilities.less +57 -68
  52. data/vendor/twitter/bootstrap/less/scaffolding.less +1 -12
  53. data/vendor/twitter/bootstrap/less/tables.less +40 -40
  54. data/vendor/twitter/bootstrap/less/theme.less +32 -17
  55. data/vendor/twitter/bootstrap/less/thumbnails.less +14 -15
  56. data/vendor/twitter/bootstrap/less/tooltip.less +8 -8
  57. data/vendor/twitter/bootstrap/less/type.less +71 -30
  58. data/vendor/twitter/bootstrap/less/utilities.less +15 -1
  59. data/vendor/twitter/bootstrap/less/variables.less +56 -39
  60. data/vendor/twitter/bootstrap/sass/_alerts.scss +1 -1
  61. data/vendor/twitter/bootstrap/sass/_breadcrumbs.scss +2 -2
  62. data/vendor/twitter/bootstrap/sass/_button-groups.scss +6 -1
  63. data/vendor/twitter/bootstrap/sass/_buttons.scss +2 -4
  64. data/vendor/twitter/bootstrap/sass/_carousel.scss +32 -10
  65. data/vendor/twitter/bootstrap/sass/_close.scss +2 -0
  66. data/vendor/twitter/bootstrap/sass/_code.scss +5 -8
  67. data/vendor/twitter/bootstrap/sass/_dropdowns.scss +1 -2
  68. data/vendor/twitter/bootstrap/sass/_forms.scss +23 -10
  69. data/vendor/twitter/bootstrap/sass/_glyphicons.scss +20 -15
  70. data/vendor/twitter/bootstrap/sass/_grid.scss +32 -285
  71. data/vendor/twitter/bootstrap/sass/_input-groups.scss +9 -0
  72. data/vendor/twitter/bootstrap/sass/_jumbotron.scss +2 -2
  73. data/vendor/twitter/bootstrap/sass/_list-group.scss +16 -16
  74. data/vendor/twitter/bootstrap/sass/_mixins.scss +167 -34
  75. data/vendor/twitter/bootstrap/sass/_modals.scss +2 -15
  76. data/vendor/twitter/bootstrap/sass/_navbar.scss +10 -7
  77. data/vendor/twitter/bootstrap/sass/_navs.scss +53 -20
  78. data/vendor/twitter/bootstrap/sass/_normalize.scss +16 -6
  79. data/vendor/twitter/bootstrap/sass/_pagination.scss +2 -0
  80. data/vendor/twitter/bootstrap/sass/_panels.scss +31 -7
  81. data/vendor/twitter/bootstrap/sass/_print.scss +6 -1
  82. data/vendor/twitter/bootstrap/sass/_progress-bars.scss +4 -7
  83. data/vendor/twitter/bootstrap/sass/_responsive-utilities.scss +37 -48
  84. data/vendor/twitter/bootstrap/sass/_scaffolding.scss +1 -12
  85. data/vendor/twitter/bootstrap/sass/_tables.scss +52 -44
  86. data/vendor/twitter/bootstrap/sass/_theme.scss +26 -11
  87. data/vendor/twitter/bootstrap/sass/_thumbnails.scss +13 -12
  88. data/vendor/twitter/bootstrap/sass/_tooltip.scss +8 -8
  89. data/vendor/twitter/bootstrap/sass/_type.scss +71 -30
  90. data/vendor/twitter/bootstrap/sass/_utilities.scss +15 -1
  91. data/vendor/twitter/bootstrap/sass/_variables.scss +56 -39
  92. data/vendor/twitter/bootstrap/sass/bootstrap.scss +0 -10
  93. metadata +2 -5
  94. data/vendor/assets/javascripts/bootstrap-ie.js +0 -2
  95. data/vendor/assets/javascripts/bootstrap-ie/html5shiv.js +0 -8
  96. data/vendor/assets/javascripts/bootstrap-ie/respond.min.js +0 -6
@@ -1,12 +1,12 @@
1
- //= require bootstrap/affix
2
1
  //= require bootstrap/scrollspy
3
- //= require bootstrap/collapse
4
- //= require bootstrap/alert
5
2
  //= require bootstrap/dropdown
3
+ //= require bootstrap/tab
6
4
  //= require bootstrap/button
5
+ //= require bootstrap/collapse
7
6
  //= require bootstrap/modal
8
7
  //= require bootstrap/carousel
8
+ //= require bootstrap/alert
9
+ //= require bootstrap/transition
9
10
  //= require bootstrap/tooltip
10
11
  //= require bootstrap/popover
11
- //= require bootstrap/transition
12
- //= require bootstrap/tab
12
+ //= require bootstrap/affix
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: affix.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#affix
2
+ * Bootstrap: affix.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#affix
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -123,4 +123,4 @@
123
123
  })
124
124
  })
125
125
 
126
- }(window.jQuery);
126
+ }(jQuery);
@@ -1,6 +1,6 @@
1
1
  /* ========================================================================
2
- * Bootstrap: alert.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#alerts
2
+ * Bootstrap: alert.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#alerts
4
4
  * ========================================================================
5
5
  * Copyright 2013 Twitter, Inc.
6
6
  *
@@ -95,4 +95,4 @@
95
95
 
96
96
  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
97
97
 
98
- }(window.jQuery);
98
+ }(jQuery);
@@ -1,6 +1,6 @@
1
1
  /* ========================================================================
2
- * Bootstrap: button.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#buttons
2
+ * Bootstrap: button.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#buttons
4
4
  * ========================================================================
5
5
  * Copyright 2013 Twitter, Inc.
6
6
  *
@@ -106,4 +106,4 @@
106
106
  e.preventDefault()
107
107
  })
108
108
 
109
- }(window.jQuery);
109
+ }(jQuery);
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: carousel.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#carousel
2
+ * Bootstrap: carousel.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#carousel
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -214,4 +214,4 @@
214
214
  })
215
215
  })
216
216
 
217
- }(window.jQuery);
217
+ }(jQuery);
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: collapse.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#collapse
2
+ * Bootstrap: collapse.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#collapse
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -176,4 +176,4 @@
176
176
  $target.collapse(option)
177
177
  })
178
178
 
179
- }(window.jQuery);
179
+ }(jQuery);
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: dropdown.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#dropdowns
2
+ * Bootstrap: dropdown.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#dropdowns
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -151,4 +151,4 @@
151
151
  .on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
152
152
  .on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
153
153
 
154
- }(window.jQuery);
154
+ }(jQuery);
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: modal.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#modals
2
+ * Bootstrap: modal.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#modals
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -243,4 +243,4 @@
243
243
  .on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
244
244
  .on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
245
245
 
246
- }(window.jQuery);
246
+ }(jQuery);
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: popover.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#popovers
2
+ * Bootstrap: popover.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#popovers
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -114,4 +114,4 @@
114
114
  return this
115
115
  }
116
116
 
117
- }(window.jQuery);
117
+ }(jQuery);
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: scrollspy.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#scrollspy
2
+ * Bootstrap: scrollspy.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#scrollspy
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -155,4 +155,4 @@
155
155
  })
156
156
  })
157
157
 
158
- }(window.jQuery);
158
+ }(jQuery);
@@ -1,8 +1,8 @@
1
1
  /* ========================================================================
2
- * Bootstrap: tab.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#tabs
2
+ * Bootstrap: tab.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#tabs
4
4
  * ========================================================================
5
- * Copyright 2012 Twitter, Inc.
5
+ * Copyright 2013 Twitter, Inc.
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -30,7 +30,7 @@
30
30
  Tab.prototype.show = function () {
31
31
  var $this = this.element
32
32
  var $ul = $this.closest('ul:not(.dropdown-menu)')
33
- var selector = $this.attr('data-target')
33
+ var selector = $this.data('target')
34
34
 
35
35
  if (!selector) {
36
36
  selector = $this.attr('href')
@@ -132,4 +132,4 @@
132
132
  $(this).tab('show')
133
133
  })
134
134
 
135
- }(window.jQuery);
135
+ }(jQuery);
@@ -1,9 +1,9 @@
1
1
  /* ========================================================================
2
- * Bootstrap: tooltip.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#tooltip
2
+ * Bootstrap: tooltip.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#tooltip
4
4
  * Inspired by the original jQuery.tipsy by Jason Frame
5
5
  * ========================================================================
6
- * Copyright 2012 Twitter, Inc.
6
+ * Copyright 2013 Twitter, Inc.
7
7
  *
8
8
  * Licensed under the Apache License, Version 2.0 (the "License");
9
9
  * you may not use this file except in compliance with the License.
@@ -383,4 +383,4 @@
383
383
  return this
384
384
  }
385
385
 
386
- }(window.jQuery);
386
+ }(jQuery);
@@ -1,6 +1,6 @@
1
1
  /* ========================================================================
2
- * Bootstrap: transition.js v3.0.0
3
- * http://twbs.github.com/bootstrap/javascript.html#transitions
2
+ * Bootstrap: transition.js v3.0.2
3
+ * http://getbootstrap.com/javascript/#transitions
4
4
  * ========================================================================
5
5
  * Copyright 2013 Twitter, Inc.
6
6
  *
@@ -53,4 +53,4 @@
53
53
  $.support.transition = transitionEnd()
54
54
  })
55
55
 
56
- }(window.jQuery);
56
+ }(jQuery);
@@ -1,14 +1,12 @@
1
1
  /*!
2
- * Bootstrap v3.0.0
3
- *
4
- * Copyright 2013 Twitter, Inc
5
- * Licensed under the Apache License v2.0
6
- * http://www.apache.org/licenses/LICENSE-2.0
2
+ * Bootstrap v3.0.2 by @fat and @mdo
3
+ * Copyright 2013 Twitter, Inc.
4
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0
7
5
  *
8
6
  * Designed and built with all the love in the world by @mdo and @fat.
9
7
  */
10
8
 
11
- /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
9
+ /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
12
10
 
13
11
  article,
14
12
  aside,
@@ -36,7 +34,8 @@ audio:not([controls]) {
36
34
  height: 0;
37
35
  }
38
36
 
39
- [hidden] {
37
+ [hidden],
38
+ template {
40
39
  display: none;
41
40
  }
42
41
 
@@ -50,6 +49,10 @@ body {
50
49
  margin: 0;
51
50
  }
52
51
 
52
+ a {
53
+ background: transparent;
54
+ }
55
+
53
56
  a:focus {
54
57
  outline: thin dotted;
55
58
  }
@@ -230,7 +233,6 @@ table {
230
233
  abbr[title]:after {
231
234
  content: " (" attr(title) ")";
232
235
  }
233
- .ir a:after,
234
236
  a[href^="javascript:"]:after,
235
237
  a[href^="#"]:after {
236
238
  content: "";
@@ -263,6 +265,9 @@ table {
263
265
  h3 {
264
266
  page-break-after: avoid;
265
267
  }
268
+ select {
269
+ background: #fff !important;
270
+ }
266
271
  .navbar {
267
272
  display: none;
268
273
  }
@@ -316,13 +321,6 @@ textarea {
316
321
  line-height: inherit;
317
322
  }
318
323
 
319
- button,
320
- input,
321
- select[multiple],
322
- textarea {
323
- background-image: none;
324
- }
325
-
326
324
  a {
327
325
  color: #428bca;
328
326
  text-decoration: none;
@@ -385,7 +383,7 @@ hr {
385
383
  padding: 0;
386
384
  margin: -1px;
387
385
  overflow: hidden;
388
- clip: rect(0 0 0 0);
386
+ clip: rect(0, 0, 0, 0);
389
387
  border: 0;
390
388
  }
391
389
 
@@ -395,7 +393,7 @@ p {
395
393
 
396
394
  .lead {
397
395
  margin-bottom: 20px;
398
- font-size: 16.099999999999998px;
396
+ font-size: 16px;
399
397
  font-weight: 200;
400
398
  line-height: 1.4;
401
399
  }
@@ -406,7 +404,8 @@ p {
406
404
  }
407
405
  }
408
406
 
409
- small {
407
+ small,
408
+ .small {
410
409
  font-size: 85%;
411
410
  }
412
411
 
@@ -422,22 +421,42 @@ cite {
422
421
  color: #428bca;
423
422
  }
424
423
 
424
+ .text-primary:hover {
425
+ color: #3071a9;
426
+ }
427
+
425
428
  .text-warning {
426
429
  color: #c09853;
427
430
  }
428
431
 
432
+ .text-warning:hover {
433
+ color: #a47e3c;
434
+ }
435
+
429
436
  .text-danger {
430
437
  color: #b94a48;
431
438
  }
432
439
 
440
+ .text-danger:hover {
441
+ color: #953b39;
442
+ }
443
+
433
444
  .text-success {
434
445
  color: #468847;
435
446
  }
436
447
 
448
+ .text-success:hover {
449
+ color: #356635;
450
+ }
451
+
437
452
  .text-info {
438
453
  color: #3a87ad;
439
454
  }
440
455
 
456
+ .text-info:hover {
457
+ color: #2d6987;
458
+ }
459
+
441
460
  .text-left {
442
461
  text-align: left;
443
462
  }
@@ -465,6 +484,7 @@ h6,
465
484
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
466
485
  font-weight: 500;
467
486
  line-height: 1.1;
487
+ color: inherit;
468
488
  }
469
489
 
470
490
  h1 small,
@@ -478,7 +498,19 @@ h6 small,
478
498
  .h3 small,
479
499
  .h4 small,
480
500
  .h5 small,
481
- .h6 small {
501
+ .h6 small,
502
+ h1 .small,
503
+ h2 .small,
504
+ h3 .small,
505
+ h4 .small,
506
+ h5 .small,
507
+ h6 .small,
508
+ .h1 .small,
509
+ .h2 .small,
510
+ .h3 .small,
511
+ .h4 .small,
512
+ .h5 .small,
513
+ .h6 .small {
482
514
  font-weight: normal;
483
515
  line-height: 1;
484
516
  color: #999999;
@@ -491,6 +523,15 @@ h3 {
491
523
  margin-bottom: 10px;
492
524
  }
493
525
 
526
+ h1 small,
527
+ h2 small,
528
+ h3 small,
529
+ h1 .small,
530
+ h2 .small,
531
+ h3 .small {
532
+ font-size: 65%;
533
+ }
534
+
494
535
  h4,
495
536
  h5,
496
537
  h6 {
@@ -498,6 +539,15 @@ h6 {
498
539
  margin-bottom: 10px;
499
540
  }
500
541
 
542
+ h4 small,
543
+ h5 small,
544
+ h6 small,
545
+ h4 .small,
546
+ h5 .small,
547
+ h6 .small {
548
+ font-size: 75%;
549
+ }
550
+
501
551
  h1,
502
552
  .h1 {
503
553
  font-size: 36px;
@@ -528,23 +578,6 @@ h6,
528
578
  font-size: 12px;
529
579
  }
530
580
 
531
- h1 small,
532
- .h1 small {
533
- font-size: 24px;
534
- }
535
-
536
- h2 small,
537
- .h2 small {
538
- font-size: 18px;
539
- }
540
-
541
- h3 small,
542
- .h3 small,
543
- h4 small,
544
- .h4 small {
545
- font-size: 14px;
546
- }
547
-
548
581
  .page-header {
549
582
  padding-bottom: 9px;
550
583
  margin: 40px 0 20px;
@@ -580,6 +613,10 @@ ol ol {
580
613
  padding-left: 5px;
581
614
  }
582
615
 
616
+ .list-inline > li:first-child {
617
+ padding-left: 0;
618
+ }
619
+
583
620
  dl {
584
621
  margin-bottom: 20px;
585
622
  }
@@ -673,34 +710,36 @@ blockquote.pull-right {
673
710
  }
674
711
 
675
712
  blockquote.pull-right p,
676
- blockquote.pull-right small {
713
+ blockquote.pull-right small,
714
+ blockquote.pull-right .small {
677
715
  text-align: right;
678
716
  }
679
717
 
680
- blockquote.pull-right small:before {
718
+ blockquote.pull-right small:before,
719
+ blockquote.pull-right .small:before {
681
720
  content: '';
682
721
  }
683
722
 
684
- blockquote.pull-right small:after {
723
+ blockquote.pull-right small:after,
724
+ blockquote.pull-right .small:after {
685
725
  content: '\00A0 \2014';
686
726
  }
687
727
 
688
- q:before,
689
- q:after,
690
728
  blockquote:before,
691
729
  blockquote:after {
692
730
  content: "";
693
731
  }
694
732
 
695
733
  address {
696
- display: block;
697
734
  margin-bottom: 20px;
698
735
  font-style: normal;
699
736
  line-height: 1.428571429;
700
737
  }
701
738
 
702
739
  code,
703
- pre {
740
+ kbd,
741
+ pre,
742
+ samp {
704
743
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
705
744
  }
706
745
 
@@ -727,17 +766,13 @@ pre {
727
766
  border-radius: 4px;
728
767
  }
729
768
 
730
- pre.prettyprint {
731
- margin-bottom: 20px;
732
- }
733
-
734
769
  pre code {
735
770
  padding: 0;
736
771
  font-size: inherit;
737
772
  color: inherit;
738
773
  white-space: pre-wrap;
739
774
  background-color: transparent;
740
- border: 0;
775
+ border-radius: 0;
741
776
  }
742
777
 
743
778
  .pre-scrollable {
@@ -798,52 +833,52 @@ pre code {
798
833
  }
799
834
 
800
835
  .col-xs-1,
801
- .col-xs-2,
802
- .col-xs-3,
803
- .col-xs-4,
804
- .col-xs-5,
805
- .col-xs-6,
806
- .col-xs-7,
807
- .col-xs-8,
808
- .col-xs-9,
809
- .col-xs-10,
810
- .col-xs-11,
811
- .col-xs-12,
812
836
  .col-sm-1,
813
- .col-sm-2,
814
- .col-sm-3,
815
- .col-sm-4,
816
- .col-sm-5,
817
- .col-sm-6,
818
- .col-sm-7,
819
- .col-sm-8,
820
- .col-sm-9,
821
- .col-sm-10,
822
- .col-sm-11,
823
- .col-sm-12,
824
837
  .col-md-1,
825
- .col-md-2,
826
- .col-md-3,
827
- .col-md-4,
828
- .col-md-5,
829
- .col-md-6,
830
- .col-md-7,
831
- .col-md-8,
832
- .col-md-9,
833
- .col-md-10,
834
- .col-md-11,
835
- .col-md-12,
836
838
  .col-lg-1,
839
+ .col-xs-2,
840
+ .col-sm-2,
841
+ .col-md-2,
837
842
  .col-lg-2,
843
+ .col-xs-3,
844
+ .col-sm-3,
845
+ .col-md-3,
838
846
  .col-lg-3,
847
+ .col-xs-4,
848
+ .col-sm-4,
849
+ .col-md-4,
839
850
  .col-lg-4,
851
+ .col-xs-5,
852
+ .col-sm-5,
853
+ .col-md-5,
840
854
  .col-lg-5,
855
+ .col-xs-6,
856
+ .col-sm-6,
857
+ .col-md-6,
841
858
  .col-lg-6,
859
+ .col-xs-7,
860
+ .col-sm-7,
861
+ .col-md-7,
842
862
  .col-lg-7,
863
+ .col-xs-8,
864
+ .col-sm-8,
865
+ .col-md-8,
843
866
  .col-lg-8,
867
+ .col-xs-9,
868
+ .col-sm-9,
869
+ .col-md-9,
844
870
  .col-lg-9,
871
+ .col-xs-10,
872
+ .col-sm-10,
873
+ .col-md-10,
845
874
  .col-lg-10,
875
+ .col-xs-11,
876
+ .col-sm-11,
877
+ .col-md-11,
846
878
  .col-lg-11,
879
+ .col-xs-12,
880
+ .col-sm-12,
881
+ .col-md-12,
847
882
  .col-lg-12 {
848
883
  position: relative;
849
884
  min-height: 1px;
@@ -865,211 +900,385 @@ pre code {
865
900
  float: left;
866
901
  }
867
902
 
868
- .col-xs-1 {
869
- width: 8.333333333333332%;
903
+ .col-xs-12 {
904
+ width: 100%;
870
905
  }
871
906
 
872
- .col-xs-2 {
873
- width: 16.666666666666664%;
907
+ .col-xs-11 {
908
+ width: 91.66666666666666%;
874
909
  }
875
910
 
876
- .col-xs-3 {
877
- width: 25%;
911
+ .col-xs-10 {
912
+ width: 83.33333333333334%;
878
913
  }
879
914
 
880
- .col-xs-4 {
881
- width: 33.33333333333333%;
915
+ .col-xs-9 {
916
+ width: 75%;
882
917
  }
883
918
 
884
- .col-xs-5 {
885
- width: 41.66666666666667%;
919
+ .col-xs-8 {
920
+ width: 66.66666666666666%;
921
+ }
922
+
923
+ .col-xs-7 {
924
+ width: 58.333333333333336%;
886
925
  }
887
926
 
888
927
  .col-xs-6 {
889
928
  width: 50%;
890
929
  }
891
930
 
892
- .col-xs-7 {
893
- width: 58.333333333333336%;
931
+ .col-xs-5 {
932
+ width: 41.66666666666667%;
894
933
  }
895
934
 
896
- .col-xs-8 {
897
- width: 66.66666666666666%;
935
+ .col-xs-4 {
936
+ width: 33.33333333333333%;
898
937
  }
899
938
 
900
- .col-xs-9 {
901
- width: 75%;
939
+ .col-xs-3 {
940
+ width: 25%;
902
941
  }
903
942
 
904
- .col-xs-10 {
905
- width: 83.33333333333334%;
943
+ .col-xs-2 {
944
+ width: 16.666666666666664%;
906
945
  }
907
946
 
908
- .col-xs-11 {
909
- width: 91.66666666666666%;
947
+ .col-xs-1 {
948
+ width: 8.333333333333332%;
910
949
  }
911
950
 
912
- .col-xs-12 {
913
- width: 100%;
951
+ .col-xs-pull-12 {
952
+ right: 100%;
914
953
  }
915
954
 
916
- @media (min-width: 768px) {
917
- .container {
918
- max-width: 750px;
919
- }
920
- .col-sm-1,
921
- .col-sm-2,
922
- .col-sm-3,
923
- .col-sm-4,
924
- .col-sm-5,
925
- .col-sm-6,
926
- .col-sm-7,
927
- .col-sm-8,
928
- .col-sm-9,
929
- .col-sm-10,
930
- .col-sm-11 {
931
- float: left;
932
- }
933
- .col-sm-1 {
934
- width: 8.333333333333332%;
935
- }
936
- .col-sm-2 {
937
- width: 16.666666666666664%;
938
- }
939
- .col-sm-3 {
940
- width: 25%;
941
- }
942
- .col-sm-4 {
943
- width: 33.33333333333333%;
944
- }
945
- .col-sm-5 {
946
- width: 41.66666666666667%;
947
- }
948
- .col-sm-6 {
949
- width: 50%;
950
- }
951
- .col-sm-7 {
952
- width: 58.333333333333336%;
953
- }
954
- .col-sm-8 {
955
- width: 66.66666666666666%;
956
- }
957
- .col-sm-9 {
958
- width: 75%;
959
- }
960
- .col-sm-10 {
961
- width: 83.33333333333334%;
962
- }
963
- .col-sm-11 {
964
- width: 91.66666666666666%;
965
- }
966
- .col-sm-12 {
967
- width: 100%;
968
- }
969
- .col-sm-push-1 {
970
- left: 8.333333333333332%;
971
- }
972
- .col-sm-push-2 {
973
- left: 16.666666666666664%;
974
- }
975
- .col-sm-push-3 {
976
- left: 25%;
977
- }
978
- .col-sm-push-4 {
979
- left: 33.33333333333333%;
980
- }
981
- .col-sm-push-5 {
982
- left: 41.66666666666667%;
983
- }
984
- .col-sm-push-6 {
985
- left: 50%;
986
- }
987
- .col-sm-push-7 {
988
- left: 58.333333333333336%;
989
- }
990
- .col-sm-push-8 {
991
- left: 66.66666666666666%;
992
- }
993
- .col-sm-push-9 {
994
- left: 75%;
955
+ .col-xs-pull-11 {
956
+ right: 91.66666666666666%;
957
+ }
958
+
959
+ .col-xs-pull-10 {
960
+ right: 83.33333333333334%;
961
+ }
962
+
963
+ .col-xs-pull-9 {
964
+ right: 75%;
965
+ }
966
+
967
+ .col-xs-pull-8 {
968
+ right: 66.66666666666666%;
969
+ }
970
+
971
+ .col-xs-pull-7 {
972
+ right: 58.333333333333336%;
973
+ }
974
+
975
+ .col-xs-pull-6 {
976
+ right: 50%;
977
+ }
978
+
979
+ .col-xs-pull-5 {
980
+ right: 41.66666666666667%;
981
+ }
982
+
983
+ .col-xs-pull-4 {
984
+ right: 33.33333333333333%;
985
+ }
986
+
987
+ .col-xs-pull-3 {
988
+ right: 25%;
989
+ }
990
+
991
+ .col-xs-pull-2 {
992
+ right: 16.666666666666664%;
993
+ }
994
+
995
+ .col-xs-pull-1 {
996
+ right: 8.333333333333332%;
997
+ }
998
+
999
+ .col-xs-pull-0 {
1000
+ right: 0;
1001
+ }
1002
+
1003
+ .col-xs-push-12 {
1004
+ left: 100%;
1005
+ }
1006
+
1007
+ .col-xs-push-11 {
1008
+ left: 91.66666666666666%;
1009
+ }
1010
+
1011
+ .col-xs-push-10 {
1012
+ left: 83.33333333333334%;
1013
+ }
1014
+
1015
+ .col-xs-push-9 {
1016
+ left: 75%;
1017
+ }
1018
+
1019
+ .col-xs-push-8 {
1020
+ left: 66.66666666666666%;
1021
+ }
1022
+
1023
+ .col-xs-push-7 {
1024
+ left: 58.333333333333336%;
1025
+ }
1026
+
1027
+ .col-xs-push-6 {
1028
+ left: 50%;
1029
+ }
1030
+
1031
+ .col-xs-push-5 {
1032
+ left: 41.66666666666667%;
1033
+ }
1034
+
1035
+ .col-xs-push-4 {
1036
+ left: 33.33333333333333%;
1037
+ }
1038
+
1039
+ .col-xs-push-3 {
1040
+ left: 25%;
1041
+ }
1042
+
1043
+ .col-xs-push-2 {
1044
+ left: 16.666666666666664%;
1045
+ }
1046
+
1047
+ .col-xs-push-1 {
1048
+ left: 8.333333333333332%;
1049
+ }
1050
+
1051
+ .col-xs-push-0 {
1052
+ left: 0;
1053
+ }
1054
+
1055
+ .col-xs-offset-12 {
1056
+ margin-left: 100%;
1057
+ }
1058
+
1059
+ .col-xs-offset-11 {
1060
+ margin-left: 91.66666666666666%;
1061
+ }
1062
+
1063
+ .col-xs-offset-10 {
1064
+ margin-left: 83.33333333333334%;
1065
+ }
1066
+
1067
+ .col-xs-offset-9 {
1068
+ margin-left: 75%;
1069
+ }
1070
+
1071
+ .col-xs-offset-8 {
1072
+ margin-left: 66.66666666666666%;
1073
+ }
1074
+
1075
+ .col-xs-offset-7 {
1076
+ margin-left: 58.333333333333336%;
1077
+ }
1078
+
1079
+ .col-xs-offset-6 {
1080
+ margin-left: 50%;
1081
+ }
1082
+
1083
+ .col-xs-offset-5 {
1084
+ margin-left: 41.66666666666667%;
1085
+ }
1086
+
1087
+ .col-xs-offset-4 {
1088
+ margin-left: 33.33333333333333%;
1089
+ }
1090
+
1091
+ .col-xs-offset-3 {
1092
+ margin-left: 25%;
1093
+ }
1094
+
1095
+ .col-xs-offset-2 {
1096
+ margin-left: 16.666666666666664%;
1097
+ }
1098
+
1099
+ .col-xs-offset-1 {
1100
+ margin-left: 8.333333333333332%;
1101
+ }
1102
+
1103
+ .col-xs-offset-0 {
1104
+ margin-left: 0;
1105
+ }
1106
+
1107
+ @media (min-width: 768px) {
1108
+ .container {
1109
+ width: 750px;
995
1110
  }
996
- .col-sm-push-10 {
997
- left: 83.33333333333334%;
1111
+ .col-sm-1,
1112
+ .col-sm-2,
1113
+ .col-sm-3,
1114
+ .col-sm-4,
1115
+ .col-sm-5,
1116
+ .col-sm-6,
1117
+ .col-sm-7,
1118
+ .col-sm-8,
1119
+ .col-sm-9,
1120
+ .col-sm-10,
1121
+ .col-sm-11 {
1122
+ float: left;
998
1123
  }
999
- .col-sm-push-11 {
1000
- left: 91.66666666666666%;
1124
+ .col-sm-12 {
1125
+ width: 100%;
1001
1126
  }
1002
- .col-sm-pull-1 {
1003
- right: 8.333333333333332%;
1127
+ .col-sm-11 {
1128
+ width: 91.66666666666666%;
1004
1129
  }
1005
- .col-sm-pull-2 {
1006
- right: 16.666666666666664%;
1130
+ .col-sm-10 {
1131
+ width: 83.33333333333334%;
1007
1132
  }
1008
- .col-sm-pull-3 {
1009
- right: 25%;
1133
+ .col-sm-9 {
1134
+ width: 75%;
1010
1135
  }
1011
- .col-sm-pull-4 {
1012
- right: 33.33333333333333%;
1136
+ .col-sm-8 {
1137
+ width: 66.66666666666666%;
1013
1138
  }
1014
- .col-sm-pull-5 {
1015
- right: 41.66666666666667%;
1139
+ .col-sm-7 {
1140
+ width: 58.333333333333336%;
1016
1141
  }
1017
- .col-sm-pull-6 {
1018
- right: 50%;
1142
+ .col-sm-6 {
1143
+ width: 50%;
1019
1144
  }
1020
- .col-sm-pull-7 {
1021
- right: 58.333333333333336%;
1145
+ .col-sm-5 {
1146
+ width: 41.66666666666667%;
1022
1147
  }
1023
- .col-sm-pull-8 {
1024
- right: 66.66666666666666%;
1148
+ .col-sm-4 {
1149
+ width: 33.33333333333333%;
1025
1150
  }
1026
- .col-sm-pull-9 {
1027
- right: 75%;
1151
+ .col-sm-3 {
1152
+ width: 25%;
1028
1153
  }
1029
- .col-sm-pull-10 {
1030
- right: 83.33333333333334%;
1154
+ .col-sm-2 {
1155
+ width: 16.666666666666664%;
1156
+ }
1157
+ .col-sm-1 {
1158
+ width: 8.333333333333332%;
1159
+ }
1160
+ .col-sm-pull-12 {
1161
+ right: 100%;
1031
1162
  }
1032
1163
  .col-sm-pull-11 {
1033
1164
  right: 91.66666666666666%;
1034
1165
  }
1035
- .col-sm-offset-1 {
1036
- margin-left: 8.333333333333332%;
1166
+ .col-sm-pull-10 {
1167
+ right: 83.33333333333334%;
1037
1168
  }
1038
- .col-sm-offset-2 {
1039
- margin-left: 16.666666666666664%;
1169
+ .col-sm-pull-9 {
1170
+ right: 75%;
1040
1171
  }
1041
- .col-sm-offset-3 {
1042
- margin-left: 25%;
1172
+ .col-sm-pull-8 {
1173
+ right: 66.66666666666666%;
1043
1174
  }
1044
- .col-sm-offset-4 {
1045
- margin-left: 33.33333333333333%;
1175
+ .col-sm-pull-7 {
1176
+ right: 58.333333333333336%;
1046
1177
  }
1047
- .col-sm-offset-5 {
1048
- margin-left: 41.66666666666667%;
1178
+ .col-sm-pull-6 {
1179
+ right: 50%;
1049
1180
  }
1050
- .col-sm-offset-6 {
1051
- margin-left: 50%;
1181
+ .col-sm-pull-5 {
1182
+ right: 41.66666666666667%;
1052
1183
  }
1053
- .col-sm-offset-7 {
1054
- margin-left: 58.333333333333336%;
1184
+ .col-sm-pull-4 {
1185
+ right: 33.33333333333333%;
1055
1186
  }
1056
- .col-sm-offset-8 {
1057
- margin-left: 66.66666666666666%;
1187
+ .col-sm-pull-3 {
1188
+ right: 25%;
1058
1189
  }
1059
- .col-sm-offset-9 {
1060
- margin-left: 75%;
1190
+ .col-sm-pull-2 {
1191
+ right: 16.666666666666664%;
1061
1192
  }
1062
- .col-sm-offset-10 {
1063
- margin-left: 83.33333333333334%;
1193
+ .col-sm-pull-1 {
1194
+ right: 8.333333333333332%;
1195
+ }
1196
+ .col-sm-pull-0 {
1197
+ right: 0;
1198
+ }
1199
+ .col-sm-push-12 {
1200
+ left: 100%;
1201
+ }
1202
+ .col-sm-push-11 {
1203
+ left: 91.66666666666666%;
1204
+ }
1205
+ .col-sm-push-10 {
1206
+ left: 83.33333333333334%;
1207
+ }
1208
+ .col-sm-push-9 {
1209
+ left: 75%;
1210
+ }
1211
+ .col-sm-push-8 {
1212
+ left: 66.66666666666666%;
1213
+ }
1214
+ .col-sm-push-7 {
1215
+ left: 58.333333333333336%;
1216
+ }
1217
+ .col-sm-push-6 {
1218
+ left: 50%;
1219
+ }
1220
+ .col-sm-push-5 {
1221
+ left: 41.66666666666667%;
1222
+ }
1223
+ .col-sm-push-4 {
1224
+ left: 33.33333333333333%;
1225
+ }
1226
+ .col-sm-push-3 {
1227
+ left: 25%;
1228
+ }
1229
+ .col-sm-push-2 {
1230
+ left: 16.666666666666664%;
1231
+ }
1232
+ .col-sm-push-1 {
1233
+ left: 8.333333333333332%;
1234
+ }
1235
+ .col-sm-push-0 {
1236
+ left: 0;
1237
+ }
1238
+ .col-sm-offset-12 {
1239
+ margin-left: 100%;
1064
1240
  }
1065
1241
  .col-sm-offset-11 {
1066
1242
  margin-left: 91.66666666666666%;
1067
1243
  }
1244
+ .col-sm-offset-10 {
1245
+ margin-left: 83.33333333333334%;
1246
+ }
1247
+ .col-sm-offset-9 {
1248
+ margin-left: 75%;
1249
+ }
1250
+ .col-sm-offset-8 {
1251
+ margin-left: 66.66666666666666%;
1252
+ }
1253
+ .col-sm-offset-7 {
1254
+ margin-left: 58.333333333333336%;
1255
+ }
1256
+ .col-sm-offset-6 {
1257
+ margin-left: 50%;
1258
+ }
1259
+ .col-sm-offset-5 {
1260
+ margin-left: 41.66666666666667%;
1261
+ }
1262
+ .col-sm-offset-4 {
1263
+ margin-left: 33.33333333333333%;
1264
+ }
1265
+ .col-sm-offset-3 {
1266
+ margin-left: 25%;
1267
+ }
1268
+ .col-sm-offset-2 {
1269
+ margin-left: 16.666666666666664%;
1270
+ }
1271
+ .col-sm-offset-1 {
1272
+ margin-left: 8.333333333333332%;
1273
+ }
1274
+ .col-sm-offset-0 {
1275
+ margin-left: 0;
1276
+ }
1068
1277
  }
1069
1278
 
1070
1279
  @media (min-width: 992px) {
1071
1280
  .container {
1072
- max-width: 970px;
1281
+ width: 970px;
1073
1282
  }
1074
1283
  .col-md-1,
1075
1284
  .col-md-2,
@@ -1084,155 +1293,164 @@ pre code {
1084
1293
  .col-md-11 {
1085
1294
  float: left;
1086
1295
  }
1087
- .col-md-1 {
1088
- width: 8.333333333333332%;
1296
+ .col-md-12 {
1297
+ width: 100%;
1089
1298
  }
1090
- .col-md-2 {
1091
- width: 16.666666666666664%;
1299
+ .col-md-11 {
1300
+ width: 91.66666666666666%;
1092
1301
  }
1093
- .col-md-3 {
1094
- width: 25%;
1302
+ .col-md-10 {
1303
+ width: 83.33333333333334%;
1095
1304
  }
1096
- .col-md-4 {
1097
- width: 33.33333333333333%;
1305
+ .col-md-9 {
1306
+ width: 75%;
1098
1307
  }
1099
- .col-md-5 {
1100
- width: 41.66666666666667%;
1308
+ .col-md-8 {
1309
+ width: 66.66666666666666%;
1310
+ }
1311
+ .col-md-7 {
1312
+ width: 58.333333333333336%;
1101
1313
  }
1102
1314
  .col-md-6 {
1103
1315
  width: 50%;
1104
1316
  }
1105
- .col-md-7 {
1106
- width: 58.333333333333336%;
1317
+ .col-md-5 {
1318
+ width: 41.66666666666667%;
1107
1319
  }
1108
- .col-md-8 {
1109
- width: 66.66666666666666%;
1320
+ .col-md-4 {
1321
+ width: 33.33333333333333%;
1110
1322
  }
1111
- .col-md-9 {
1112
- width: 75%;
1323
+ .col-md-3 {
1324
+ width: 25%;
1113
1325
  }
1114
- .col-md-10 {
1115
- width: 83.33333333333334%;
1326
+ .col-md-2 {
1327
+ width: 16.666666666666664%;
1116
1328
  }
1117
- .col-md-11 {
1118
- width: 91.66666666666666%;
1329
+ .col-md-1 {
1330
+ width: 8.333333333333332%;
1119
1331
  }
1120
- .col-md-12 {
1121
- width: 100%;
1332
+ .col-md-pull-12 {
1333
+ right: 100%;
1122
1334
  }
1123
- .col-md-push-0 {
1124
- left: auto;
1335
+ .col-md-pull-11 {
1336
+ right: 91.66666666666666%;
1125
1337
  }
1126
- .col-md-push-1 {
1127
- left: 8.333333333333332%;
1338
+ .col-md-pull-10 {
1339
+ right: 83.33333333333334%;
1128
1340
  }
1129
- .col-md-push-2 {
1130
- left: 16.666666666666664%;
1341
+ .col-md-pull-9 {
1342
+ right: 75%;
1131
1343
  }
1132
- .col-md-push-3 {
1133
- left: 25%;
1344
+ .col-md-pull-8 {
1345
+ right: 66.66666666666666%;
1134
1346
  }
1135
- .col-md-push-4 {
1136
- left: 33.33333333333333%;
1347
+ .col-md-pull-7 {
1348
+ right: 58.333333333333336%;
1137
1349
  }
1138
- .col-md-push-5 {
1139
- left: 41.66666666666667%;
1350
+ .col-md-pull-6 {
1351
+ right: 50%;
1140
1352
  }
1141
- .col-md-push-6 {
1142
- left: 50%;
1353
+ .col-md-pull-5 {
1354
+ right: 41.66666666666667%;
1143
1355
  }
1144
- .col-md-push-7 {
1145
- left: 58.333333333333336%;
1356
+ .col-md-pull-4 {
1357
+ right: 33.33333333333333%;
1146
1358
  }
1147
- .col-md-push-8 {
1148
- left: 66.66666666666666%;
1359
+ .col-md-pull-3 {
1360
+ right: 25%;
1149
1361
  }
1150
- .col-md-push-9 {
1151
- left: 75%;
1362
+ .col-md-pull-2 {
1363
+ right: 16.666666666666664%;
1152
1364
  }
1153
- .col-md-push-10 {
1154
- left: 83.33333333333334%;
1365
+ .col-md-pull-1 {
1366
+ right: 8.333333333333332%;
1367
+ }
1368
+ .col-md-pull-0 {
1369
+ right: 0;
1370
+ }
1371
+ .col-md-push-12 {
1372
+ left: 100%;
1155
1373
  }
1156
1374
  .col-md-push-11 {
1157
1375
  left: 91.66666666666666%;
1158
1376
  }
1159
- .col-md-pull-0 {
1160
- right: auto;
1161
- }
1162
- .col-md-pull-1 {
1163
- right: 8.333333333333332%;
1377
+ .col-md-push-10 {
1378
+ left: 83.33333333333334%;
1164
1379
  }
1165
- .col-md-pull-2 {
1166
- right: 16.666666666666664%;
1380
+ .col-md-push-9 {
1381
+ left: 75%;
1167
1382
  }
1168
- .col-md-pull-3 {
1169
- right: 25%;
1383
+ .col-md-push-8 {
1384
+ left: 66.66666666666666%;
1170
1385
  }
1171
- .col-md-pull-4 {
1172
- right: 33.33333333333333%;
1386
+ .col-md-push-7 {
1387
+ left: 58.333333333333336%;
1173
1388
  }
1174
- .col-md-pull-5 {
1175
- right: 41.66666666666667%;
1389
+ .col-md-push-6 {
1390
+ left: 50%;
1176
1391
  }
1177
- .col-md-pull-6 {
1178
- right: 50%;
1392
+ .col-md-push-5 {
1393
+ left: 41.66666666666667%;
1179
1394
  }
1180
- .col-md-pull-7 {
1181
- right: 58.333333333333336%;
1395
+ .col-md-push-4 {
1396
+ left: 33.33333333333333%;
1182
1397
  }
1183
- .col-md-pull-8 {
1184
- right: 66.66666666666666%;
1398
+ .col-md-push-3 {
1399
+ left: 25%;
1185
1400
  }
1186
- .col-md-pull-9 {
1187
- right: 75%;
1401
+ .col-md-push-2 {
1402
+ left: 16.666666666666664%;
1188
1403
  }
1189
- .col-md-pull-10 {
1190
- right: 83.33333333333334%;
1404
+ .col-md-push-1 {
1405
+ left: 8.333333333333332%;
1191
1406
  }
1192
- .col-md-pull-11 {
1193
- right: 91.66666666666666%;
1407
+ .col-md-push-0 {
1408
+ left: 0;
1194
1409
  }
1195
- .col-md-offset-0 {
1196
- margin-left: 0;
1410
+ .col-md-offset-12 {
1411
+ margin-left: 100%;
1197
1412
  }
1198
- .col-md-offset-1 {
1199
- margin-left: 8.333333333333332%;
1413
+ .col-md-offset-11 {
1414
+ margin-left: 91.66666666666666%;
1200
1415
  }
1201
- .col-md-offset-2 {
1202
- margin-left: 16.666666666666664%;
1416
+ .col-md-offset-10 {
1417
+ margin-left: 83.33333333333334%;
1203
1418
  }
1204
- .col-md-offset-3 {
1205
- margin-left: 25%;
1419
+ .col-md-offset-9 {
1420
+ margin-left: 75%;
1206
1421
  }
1207
- .col-md-offset-4 {
1208
- margin-left: 33.33333333333333%;
1422
+ .col-md-offset-8 {
1423
+ margin-left: 66.66666666666666%;
1209
1424
  }
1210
- .col-md-offset-5 {
1211
- margin-left: 41.66666666666667%;
1425
+ .col-md-offset-7 {
1426
+ margin-left: 58.333333333333336%;
1212
1427
  }
1213
1428
  .col-md-offset-6 {
1214
1429
  margin-left: 50%;
1215
1430
  }
1216
- .col-md-offset-7 {
1217
- margin-left: 58.333333333333336%;
1431
+ .col-md-offset-5 {
1432
+ margin-left: 41.66666666666667%;
1218
1433
  }
1219
- .col-md-offset-8 {
1220
- margin-left: 66.66666666666666%;
1434
+ .col-md-offset-4 {
1435
+ margin-left: 33.33333333333333%;
1221
1436
  }
1222
- .col-md-offset-9 {
1223
- margin-left: 75%;
1437
+ .col-md-offset-3 {
1438
+ margin-left: 25%;
1224
1439
  }
1225
- .col-md-offset-10 {
1226
- margin-left: 83.33333333333334%;
1440
+ .col-md-offset-2 {
1441
+ margin-left: 16.666666666666664%;
1227
1442
  }
1228
- .col-md-offset-11 {
1229
- margin-left: 91.66666666666666%;
1443
+ .col-md-offset-1 {
1444
+ margin-left: 8.333333333333332%;
1445
+ }
1446
+ .col-md-offset-0 {
1447
+ margin-left: 0;
1230
1448
  }
1231
1449
  }
1232
1450
 
1233
1451
  @media (min-width: 1200px) {
1234
1452
  .container {
1235
- max-width: 1170px;
1453
+ width: 1170px;
1236
1454
  }
1237
1455
  .col-lg-1,
1238
1456
  .col-lg-2,
@@ -1247,149 +1465,158 @@ pre code {
1247
1465
  .col-lg-11 {
1248
1466
  float: left;
1249
1467
  }
1250
- .col-lg-1 {
1251
- width: 8.333333333333332%;
1468
+ .col-lg-12 {
1469
+ width: 100%;
1252
1470
  }
1253
- .col-lg-2 {
1254
- width: 16.666666666666664%;
1471
+ .col-lg-11 {
1472
+ width: 91.66666666666666%;
1255
1473
  }
1256
- .col-lg-3 {
1257
- width: 25%;
1474
+ .col-lg-10 {
1475
+ width: 83.33333333333334%;
1258
1476
  }
1259
- .col-lg-4 {
1260
- width: 33.33333333333333%;
1477
+ .col-lg-9 {
1478
+ width: 75%;
1261
1479
  }
1262
- .col-lg-5 {
1263
- width: 41.66666666666667%;
1480
+ .col-lg-8 {
1481
+ width: 66.66666666666666%;
1482
+ }
1483
+ .col-lg-7 {
1484
+ width: 58.333333333333336%;
1264
1485
  }
1265
1486
  .col-lg-6 {
1266
1487
  width: 50%;
1267
1488
  }
1268
- .col-lg-7 {
1269
- width: 58.333333333333336%;
1489
+ .col-lg-5 {
1490
+ width: 41.66666666666667%;
1270
1491
  }
1271
- .col-lg-8 {
1272
- width: 66.66666666666666%;
1492
+ .col-lg-4 {
1493
+ width: 33.33333333333333%;
1273
1494
  }
1274
- .col-lg-9 {
1275
- width: 75%;
1495
+ .col-lg-3 {
1496
+ width: 25%;
1497
+ }
1498
+ .col-lg-2 {
1499
+ width: 16.666666666666664%;
1500
+ }
1501
+ .col-lg-1 {
1502
+ width: 8.333333333333332%;
1276
1503
  }
1277
- .col-lg-10 {
1278
- width: 83.33333333333334%;
1504
+ .col-lg-pull-12 {
1505
+ right: 100%;
1279
1506
  }
1280
- .col-lg-11 {
1281
- width: 91.66666666666666%;
1507
+ .col-lg-pull-11 {
1508
+ right: 91.66666666666666%;
1282
1509
  }
1283
- .col-lg-12 {
1284
- width: 100%;
1510
+ .col-lg-pull-10 {
1511
+ right: 83.33333333333334%;
1285
1512
  }
1286
- .col-lg-push-0 {
1287
- left: auto;
1513
+ .col-lg-pull-9 {
1514
+ right: 75%;
1288
1515
  }
1289
- .col-lg-push-1 {
1290
- left: 8.333333333333332%;
1516
+ .col-lg-pull-8 {
1517
+ right: 66.66666666666666%;
1291
1518
  }
1292
- .col-lg-push-2 {
1293
- left: 16.666666666666664%;
1519
+ .col-lg-pull-7 {
1520
+ right: 58.333333333333336%;
1294
1521
  }
1295
- .col-lg-push-3 {
1296
- left: 25%;
1522
+ .col-lg-pull-6 {
1523
+ right: 50%;
1297
1524
  }
1298
- .col-lg-push-4 {
1299
- left: 33.33333333333333%;
1525
+ .col-lg-pull-5 {
1526
+ right: 41.66666666666667%;
1300
1527
  }
1301
- .col-lg-push-5 {
1302
- left: 41.66666666666667%;
1528
+ .col-lg-pull-4 {
1529
+ right: 33.33333333333333%;
1303
1530
  }
1304
- .col-lg-push-6 {
1305
- left: 50%;
1531
+ .col-lg-pull-3 {
1532
+ right: 25%;
1306
1533
  }
1307
- .col-lg-push-7 {
1308
- left: 58.333333333333336%;
1534
+ .col-lg-pull-2 {
1535
+ right: 16.666666666666664%;
1309
1536
  }
1310
- .col-lg-push-8 {
1311
- left: 66.66666666666666%;
1537
+ .col-lg-pull-1 {
1538
+ right: 8.333333333333332%;
1312
1539
  }
1313
- .col-lg-push-9 {
1314
- left: 75%;
1540
+ .col-lg-pull-0 {
1541
+ right: 0;
1315
1542
  }
1316
- .col-lg-push-10 {
1317
- left: 83.33333333333334%;
1543
+ .col-lg-push-12 {
1544
+ left: 100%;
1318
1545
  }
1319
1546
  .col-lg-push-11 {
1320
1547
  left: 91.66666666666666%;
1321
1548
  }
1322
- .col-lg-pull-0 {
1323
- right: auto;
1324
- }
1325
- .col-lg-pull-1 {
1326
- right: 8.333333333333332%;
1549
+ .col-lg-push-10 {
1550
+ left: 83.33333333333334%;
1327
1551
  }
1328
- .col-lg-pull-2 {
1329
- right: 16.666666666666664%;
1552
+ .col-lg-push-9 {
1553
+ left: 75%;
1330
1554
  }
1331
- .col-lg-pull-3 {
1332
- right: 25%;
1555
+ .col-lg-push-8 {
1556
+ left: 66.66666666666666%;
1333
1557
  }
1334
- .col-lg-pull-4 {
1335
- right: 33.33333333333333%;
1558
+ .col-lg-push-7 {
1559
+ left: 58.333333333333336%;
1336
1560
  }
1337
- .col-lg-pull-5 {
1338
- right: 41.66666666666667%;
1561
+ .col-lg-push-6 {
1562
+ left: 50%;
1339
1563
  }
1340
- .col-lg-pull-6 {
1341
- right: 50%;
1564
+ .col-lg-push-5 {
1565
+ left: 41.66666666666667%;
1342
1566
  }
1343
- .col-lg-pull-7 {
1344
- right: 58.333333333333336%;
1567
+ .col-lg-push-4 {
1568
+ left: 33.33333333333333%;
1345
1569
  }
1346
- .col-lg-pull-8 {
1347
- right: 66.66666666666666%;
1570
+ .col-lg-push-3 {
1571
+ left: 25%;
1348
1572
  }
1349
- .col-lg-pull-9 {
1350
- right: 75%;
1573
+ .col-lg-push-2 {
1574
+ left: 16.666666666666664%;
1351
1575
  }
1352
- .col-lg-pull-10 {
1353
- right: 83.33333333333334%;
1576
+ .col-lg-push-1 {
1577
+ left: 8.333333333333332%;
1354
1578
  }
1355
- .col-lg-pull-11 {
1356
- right: 91.66666666666666%;
1579
+ .col-lg-push-0 {
1580
+ left: 0;
1357
1581
  }
1358
- .col-lg-offset-0 {
1359
- margin-left: 0;
1582
+ .col-lg-offset-12 {
1583
+ margin-left: 100%;
1360
1584
  }
1361
- .col-lg-offset-1 {
1362
- margin-left: 8.333333333333332%;
1585
+ .col-lg-offset-11 {
1586
+ margin-left: 91.66666666666666%;
1363
1587
  }
1364
- .col-lg-offset-2 {
1365
- margin-left: 16.666666666666664%;
1588
+ .col-lg-offset-10 {
1589
+ margin-left: 83.33333333333334%;
1366
1590
  }
1367
- .col-lg-offset-3 {
1368
- margin-left: 25%;
1591
+ .col-lg-offset-9 {
1592
+ margin-left: 75%;
1369
1593
  }
1370
- .col-lg-offset-4 {
1371
- margin-left: 33.33333333333333%;
1594
+ .col-lg-offset-8 {
1595
+ margin-left: 66.66666666666666%;
1372
1596
  }
1373
- .col-lg-offset-5 {
1374
- margin-left: 41.66666666666667%;
1597
+ .col-lg-offset-7 {
1598
+ margin-left: 58.333333333333336%;
1375
1599
  }
1376
1600
  .col-lg-offset-6 {
1377
1601
  margin-left: 50%;
1378
1602
  }
1379
- .col-lg-offset-7 {
1380
- margin-left: 58.333333333333336%;
1603
+ .col-lg-offset-5 {
1604
+ margin-left: 41.66666666666667%;
1381
1605
  }
1382
- .col-lg-offset-8 {
1383
- margin-left: 66.66666666666666%;
1606
+ .col-lg-offset-4 {
1607
+ margin-left: 33.33333333333333%;
1384
1608
  }
1385
- .col-lg-offset-9 {
1386
- margin-left: 75%;
1609
+ .col-lg-offset-3 {
1610
+ margin-left: 25%;
1387
1611
  }
1388
- .col-lg-offset-10 {
1389
- margin-left: 83.33333333333334%;
1612
+ .col-lg-offset-2 {
1613
+ margin-left: 16.666666666666664%;
1390
1614
  }
1391
- .col-lg-offset-11 {
1392
- margin-left: 91.66666666666666%;
1615
+ .col-lg-offset-1 {
1616
+ margin-left: 8.333333333333332%;
1617
+ }
1618
+ .col-lg-offset-0 {
1619
+ margin-left: 0;
1393
1620
  }
1394
1621
  }
1395
1622
 
@@ -1407,33 +1634,33 @@ th {
1407
1634
  margin-bottom: 20px;
1408
1635
  }
1409
1636
 
1410
- .table thead > tr > th,
1411
- .table tbody > tr > th,
1412
- .table tfoot > tr > th,
1413
- .table thead > tr > td,
1414
- .table tbody > tr > td,
1415
- .table tfoot > tr > td {
1637
+ .table > thead > tr > th,
1638
+ .table > tbody > tr > th,
1639
+ .table > tfoot > tr > th,
1640
+ .table > thead > tr > td,
1641
+ .table > tbody > tr > td,
1642
+ .table > tfoot > tr > td {
1416
1643
  padding: 8px;
1417
1644
  line-height: 1.428571429;
1418
1645
  vertical-align: top;
1419
1646
  border-top: 1px solid #dddddd;
1420
1647
  }
1421
1648
 
1422
- .table thead > tr > th {
1649
+ .table > thead > tr > th {
1423
1650
  vertical-align: bottom;
1424
1651
  border-bottom: 2px solid #dddddd;
1425
1652
  }
1426
1653
 
1427
- .table caption + thead tr:first-child th,
1428
- .table colgroup + thead tr:first-child th,
1429
- .table thead:first-child tr:first-child th,
1430
- .table caption + thead tr:first-child td,
1431
- .table colgroup + thead tr:first-child td,
1432
- .table thead:first-child tr:first-child td {
1654
+ .table > caption + thead > tr:first-child > th,
1655
+ .table > colgroup + thead > tr:first-child > th,
1656
+ .table > thead:first-child > tr:first-child > th,
1657
+ .table > caption + thead > tr:first-child > td,
1658
+ .table > colgroup + thead > tr:first-child > td,
1659
+ .table > thead:first-child > tr:first-child > td {
1433
1660
  border-top: 0;
1434
1661
  }
1435
1662
 
1436
- .table tbody + tbody {
1663
+ .table > tbody + tbody {
1437
1664
  border-top: 2px solid #dddddd;
1438
1665
  }
1439
1666
 
@@ -1441,12 +1668,12 @@ th {
1441
1668
  background-color: #ffffff;
1442
1669
  }
1443
1670
 
1444
- .table-condensed thead > tr > th,
1445
- .table-condensed tbody > tr > th,
1446
- .table-condensed tfoot > tr > th,
1447
- .table-condensed thead > tr > td,
1448
- .table-condensed tbody > tr > td,
1449
- .table-condensed tfoot > tr > td {
1671
+ .table-condensed > thead > tr > th,
1672
+ .table-condensed > tbody > tr > th,
1673
+ .table-condensed > tfoot > tr > th,
1674
+ .table-condensed > thead > tr > td,
1675
+ .table-condensed > tbody > tr > td,
1676
+ .table-condensed > tfoot > tr > td {
1450
1677
  padding: 5px;
1451
1678
  }
1452
1679
 
@@ -1517,14 +1744,13 @@ table th[class*="col-"] {
1517
1744
  .table > tbody > tr.success > th,
1518
1745
  .table > tfoot > tr.success > th {
1519
1746
  background-color: #dff0d8;
1520
- border-color: #d6e9c6;
1521
1747
  }
1522
1748
 
1523
1749
  .table-hover > tbody > tr > td.success:hover,
1524
1750
  .table-hover > tbody > tr > th.success:hover,
1525
- .table-hover > tbody > tr.success:hover > td {
1751
+ .table-hover > tbody > tr.success:hover > td,
1752
+ .table-hover > tbody > tr.success:hover > th {
1526
1753
  background-color: #d0e9c6;
1527
- border-color: #c9e2b3;
1528
1754
  }
1529
1755
 
1530
1756
  .table > thead > tr > td.danger,
@@ -1540,14 +1766,13 @@ table th[class*="col-"] {
1540
1766
  .table > tbody > tr.danger > th,
1541
1767
  .table > tfoot > tr.danger > th {
1542
1768
  background-color: #f2dede;
1543
- border-color: #eed3d7;
1544
1769
  }
1545
1770
 
1546
1771
  .table-hover > tbody > tr > td.danger:hover,
1547
1772
  .table-hover > tbody > tr > th.danger:hover,
1548
- .table-hover > tbody > tr.danger:hover > td {
1773
+ .table-hover > tbody > tr.danger:hover > td,
1774
+ .table-hover > tbody > tr.danger:hover > th {
1549
1775
  background-color: #ebcccc;
1550
- border-color: #e6c1c7;
1551
1776
  }
1552
1777
 
1553
1778
  .table > thead > tr > td.warning,
@@ -1563,27 +1788,27 @@ table th[class*="col-"] {
1563
1788
  .table > tbody > tr.warning > th,
1564
1789
  .table > tfoot > tr.warning > th {
1565
1790
  background-color: #fcf8e3;
1566
- border-color: #fbeed5;
1567
1791
  }
1568
1792
 
1569
1793
  .table-hover > tbody > tr > td.warning:hover,
1570
1794
  .table-hover > tbody > tr > th.warning:hover,
1571
- .table-hover > tbody > tr.warning:hover > td {
1795
+ .table-hover > tbody > tr.warning:hover > td,
1796
+ .table-hover > tbody > tr.warning:hover > th {
1572
1797
  background-color: #faf2cc;
1573
- border-color: #f8e5be;
1574
1798
  }
1575
1799
 
1576
- @media (max-width: 768px) {
1800
+ @media (max-width: 767px) {
1577
1801
  .table-responsive {
1578
1802
  width: 100%;
1579
1803
  margin-bottom: 15px;
1580
1804
  overflow-x: scroll;
1581
1805
  overflow-y: hidden;
1582
1806
  border: 1px solid #dddddd;
1807
+ -ms-overflow-style: -ms-autohiding-scrollbar;
1808
+ -webkit-overflow-scrolling: touch;
1583
1809
  }
1584
1810
  .table-responsive > .table {
1585
1811
  margin-bottom: 0;
1586
- background-color: #fff;
1587
1812
  }
1588
1813
  .table-responsive > .table > thead > tr > th,
1589
1814
  .table-responsive > .table > tbody > tr > th,
@@ -1612,10 +1837,8 @@ table th[class*="col-"] {
1612
1837
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1613
1838
  border-right: 0;
1614
1839
  }
1615
- .table-responsive > .table-bordered > thead > tr:last-child > th,
1616
1840
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
1617
1841
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1618
- .table-responsive > .table-bordered > thead > tr:last-child > td,
1619
1842
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
1620
1843
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1621
1844
  border-bottom: 0;
@@ -1689,20 +1912,13 @@ input[type="number"]::-webkit-inner-spin-button {
1689
1912
  height: auto;
1690
1913
  }
1691
1914
 
1692
- .form-control:-moz-placeholder {
1693
- color: #999999;
1694
- }
1695
-
1696
- .form-control::-moz-placeholder {
1697
- color: #999999;
1698
- }
1699
-
1700
- .form-control:-ms-input-placeholder {
1701
- color: #999999;
1702
- }
1703
-
1704
- .form-control::-webkit-input-placeholder {
1705
- color: #999999;
1915
+ output {
1916
+ display: block;
1917
+ padding-top: 7px;
1918
+ font-size: 14px;
1919
+ line-height: 1.428571429;
1920
+ color: #555555;
1921
+ vertical-align: middle;
1706
1922
  }
1707
1923
 
1708
1924
  .form-control {
@@ -1715,6 +1931,7 @@ input[type="number"]::-webkit-inner-spin-button {
1715
1931
  color: #555555;
1716
1932
  vertical-align: middle;
1717
1933
  background-color: #ffffff;
1934
+ background-image: none;
1718
1935
  border: 1px solid #cccccc;
1719
1936
  border-radius: 4px;
1720
1937
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
@@ -1730,6 +1947,22 @@ input[type="number"]::-webkit-inner-spin-button {
1730
1947
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
1731
1948
  }
1732
1949
 
1950
+ .form-control:-moz-placeholder {
1951
+ color: #999999;
1952
+ }
1953
+
1954
+ .form-control::-moz-placeholder {
1955
+ color: #999999;
1956
+ }
1957
+
1958
+ .form-control:-ms-input-placeholder {
1959
+ color: #999999;
1960
+ }
1961
+
1962
+ .form-control::-webkit-input-placeholder {
1963
+ color: #999999;
1964
+ }
1965
+
1733
1966
  .form-control[disabled],
1734
1967
  .form-control[readonly],
1735
1968
  fieldset[disabled] .form-control {
@@ -1842,7 +2075,11 @@ textarea.input-lg {
1842
2075
  }
1843
2076
 
1844
2077
  .has-warning .help-block,
1845
- .has-warning .control-label {
2078
+ .has-warning .control-label,
2079
+ .has-warning .radio,
2080
+ .has-warning .checkbox,
2081
+ .has-warning .radio-inline,
2082
+ .has-warning .checkbox-inline {
1846
2083
  color: #c09853;
1847
2084
  }
1848
2085
 
@@ -1865,7 +2102,11 @@ textarea.input-lg {
1865
2102
  }
1866
2103
 
1867
2104
  .has-error .help-block,
1868
- .has-error .control-label {
2105
+ .has-error .control-label,
2106
+ .has-error .radio,
2107
+ .has-error .checkbox,
2108
+ .has-error .radio-inline,
2109
+ .has-error .checkbox-inline {
1869
2110
  color: #b94a48;
1870
2111
  }
1871
2112
 
@@ -1888,7 +2129,11 @@ textarea.input-lg {
1888
2129
  }
1889
2130
 
1890
2131
  .has-success .help-block,
1891
- .has-success .control-label {
2132
+ .has-success .control-label,
2133
+ .has-success .radio,
2134
+ .has-success .checkbox,
2135
+ .has-success .radio-inline,
2136
+ .has-success .checkbox-inline {
1892
2137
  color: #468847;
1893
2138
  }
1894
2139
 
@@ -1911,7 +2156,6 @@ textarea.input-lg {
1911
2156
  }
1912
2157
 
1913
2158
  .form-control-static {
1914
- padding-top: 7px;
1915
2159
  margin-bottom: 0;
1916
2160
  }
1917
2161
 
@@ -1980,6 +2224,10 @@ textarea.input-lg {
1980
2224
  clear: both;
1981
2225
  }
1982
2226
 
2227
+ .form-horizontal .form-control-static {
2228
+ padding-top: 7px;
2229
+ }
2230
+
1983
2231
  @media (min-width: 768px) {
1984
2232
  .form-horizontal .control-label {
1985
2233
  text-align: right;
@@ -1997,6 +2245,7 @@ textarea.input-lg {
1997
2245
  white-space: nowrap;
1998
2246
  vertical-align: middle;
1999
2247
  cursor: pointer;
2248
+ background-image: none;
2000
2249
  border: 1px solid transparent;
2001
2250
  border-radius: 4px;
2002
2251
  -webkit-user-select: none;
@@ -2386,7 +2635,7 @@ input[type="button"].btn-block {
2386
2635
  @font-face {
2387
2636
  font-family: 'Glyphicons Halflings';
2388
2637
  src: url('/assets/glyphicons-halflings-regular.eot');
2389
- src: url('/assets/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/assets/glyphicons-halflings-regular.woff') format('woff'), url('/assets/glyphicons-halflings-regular.ttf') format('truetype'), url('/assets/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
2638
+ src: url('/assets/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/assets/glyphicons-halflings-regular.woff') format('woff'), url('/assets/glyphicons-halflings-regular.ttf') format('truetype'), url('/assets/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
2390
2639
  }
2391
2640
 
2392
2641
  .glyphicon {
@@ -2398,6 +2647,11 @@ input[type="button"].btn-block {
2398
2647
  font-style: normal;
2399
2648
  font-weight: normal;
2400
2649
  line-height: 1;
2650
+ -moz-osx-font-smoothing: grayscale;
2651
+ }
2652
+
2653
+ .glyphicon:empty {
2654
+ width: 1em;
2401
2655
  }
2402
2656
 
2403
2657
  .glyphicon-asterisk:before {
@@ -2552,6 +2806,10 @@ input[type="button"].btn-block {
2552
2806
  content: "\e032";
2553
2807
  }
2554
2808
 
2809
+ .glyphicon-lock:before {
2810
+ content: "\e033";
2811
+ }
2812
+
2555
2813
  .glyphicon-flag:before {
2556
2814
  content: "\e034";
2557
2815
  }
@@ -2592,10 +2850,18 @@ input[type="button"].btn-block {
2592
2850
  content: "\e043";
2593
2851
  }
2594
2852
 
2853
+ .glyphicon-bookmark:before {
2854
+ content: "\e044";
2855
+ }
2856
+
2595
2857
  .glyphicon-print:before {
2596
2858
  content: "\e045";
2597
2859
  }
2598
2860
 
2861
+ .glyphicon-camera:before {
2862
+ content: "\e046";
2863
+ }
2864
+
2599
2865
  .glyphicon-font:before {
2600
2866
  content: "\e047";
2601
2867
  }
@@ -2808,6 +3074,10 @@ input[type="button"].btn-block {
2808
3074
  content: "\e103";
2809
3075
  }
2810
3076
 
3077
+ .glyphicon-fire:before {
3078
+ content: "\e104";
3079
+ }
3080
+
2811
3081
  .glyphicon-eye-open:before {
2812
3082
  content: "\e105";
2813
3083
  }
@@ -2824,6 +3094,10 @@ input[type="button"].btn-block {
2824
3094
  content: "\e108";
2825
3095
  }
2826
3096
 
3097
+ .glyphicon-calendar:before {
3098
+ content: "\e109";
3099
+ }
3100
+
2827
3101
  .glyphicon-random:before {
2828
3102
  content: "\e110";
2829
3103
  }
@@ -2876,6 +3150,10 @@ input[type="button"].btn-block {
2876
3150
  content: "\e122";
2877
3151
  }
2878
3152
 
3153
+ .glyphicon-bell:before {
3154
+ content: "\e123";
3155
+ }
3156
+
2879
3157
  .glyphicon-certificate:before {
2880
3158
  content: "\e124";
2881
3159
  }
@@ -2924,6 +3202,10 @@ input[type="button"].btn-block {
2924
3202
  content: "\e135";
2925
3203
  }
2926
3204
 
3205
+ .glyphicon-wrench:before {
3206
+ content: "\e136";
3207
+ }
3208
+
2927
3209
  .glyphicon-tasks:before {
2928
3210
  content: "\e137";
2929
3211
  }
@@ -2932,6 +3214,10 @@ input[type="button"].btn-block {
2932
3214
  content: "\e138";
2933
3215
  }
2934
3216
 
3217
+ .glyphicon-briefcase:before {
3218
+ content: "\e139";
3219
+ }
3220
+
2935
3221
  .glyphicon-fullscreen:before {
2936
3222
  content: "\e140";
2937
3223
  }
@@ -2940,6 +3226,10 @@ input[type="button"].btn-block {
2940
3226
  content: "\e141";
2941
3227
  }
2942
3228
 
3229
+ .glyphicon-paperclip:before {
3230
+ content: "\e142";
3231
+ }
3232
+
2943
3233
  .glyphicon-heart-empty:before {
2944
3234
  content: "\e143";
2945
3235
  }
@@ -2952,6 +3242,10 @@ input[type="button"].btn-block {
2952
3242
  content: "\e145";
2953
3243
  }
2954
3244
 
3245
+ .glyphicon-pushpin:before {
3246
+ content: "\e146";
3247
+ }
3248
+
2955
3249
  .glyphicon-usd:before {
2956
3250
  content: "\e148";
2957
3251
  }
@@ -3132,72 +3426,32 @@ input[type="button"].btn-block {
3132
3426
  content: "\e192";
3133
3427
  }
3134
3428
 
3135
- .glyphicon-sound-7-1:before {
3136
- content: "\e193";
3137
- }
3138
-
3139
- .glyphicon-copyright-mark:before {
3140
- content: "\e194";
3141
- }
3142
-
3143
- .glyphicon-registration-mark:before {
3144
- content: "\e195";
3145
- }
3146
-
3147
- .glyphicon-cloud-download:before {
3148
- content: "\e197";
3149
- }
3150
-
3151
- .glyphicon-cloud-upload:before {
3152
- content: "\e198";
3153
- }
3154
-
3155
- .glyphicon-tree-conifer:before {
3156
- content: "\e199";
3157
- }
3158
-
3159
- .glyphicon-tree-deciduous:before {
3160
- content: "\e200";
3161
- }
3162
-
3163
- .glyphicon-briefcase:before {
3164
- content: "\1f4bc";
3165
- }
3166
-
3167
- .glyphicon-calendar:before {
3168
- content: "\1f4c5";
3169
- }
3170
-
3171
- .glyphicon-pushpin:before {
3172
- content: "\1f4cc";
3173
- }
3174
-
3175
- .glyphicon-paperclip:before {
3176
- content: "\1f4ce";
3429
+ .glyphicon-sound-7-1:before {
3430
+ content: "\e193";
3177
3431
  }
3178
3432
 
3179
- .glyphicon-camera:before {
3180
- content: "\1f4f7";
3433
+ .glyphicon-copyright-mark:before {
3434
+ content: "\e194";
3181
3435
  }
3182
3436
 
3183
- .glyphicon-lock:before {
3184
- content: "\1f512";
3437
+ .glyphicon-registration-mark:before {
3438
+ content: "\e195";
3185
3439
  }
3186
3440
 
3187
- .glyphicon-bell:before {
3188
- content: "\1f514";
3441
+ .glyphicon-cloud-download:before {
3442
+ content: "\e197";
3189
3443
  }
3190
3444
 
3191
- .glyphicon-bookmark:before {
3192
- content: "\1f516";
3445
+ .glyphicon-cloud-upload:before {
3446
+ content: "\e198";
3193
3447
  }
3194
3448
 
3195
- .glyphicon-fire:before {
3196
- content: "\1f525";
3449
+ .glyphicon-tree-conifer:before {
3450
+ content: "\e199";
3197
3451
  }
3198
3452
 
3199
- .glyphicon-wrench:before {
3200
- content: "\1f527";
3453
+ .glyphicon-tree-deciduous:before {
3454
+ content: "\e200";
3201
3455
  }
3202
3456
 
3203
3457
  .caret {
@@ -3210,7 +3464,6 @@ input[type="button"].btn-block {
3210
3464
  border-right: 4px solid transparent;
3211
3465
  border-bottom: 0 dotted;
3212
3466
  border-left: 4px solid transparent;
3213
- content: "";
3214
3467
  }
3215
3468
 
3216
3469
  .dropdown {
@@ -3266,9 +3519,9 @@ input[type="button"].btn-block {
3266
3519
 
3267
3520
  .dropdown-menu > li > a:hover,
3268
3521
  .dropdown-menu > li > a:focus {
3269
- color: #ffffff;
3522
+ color: #262626;
3270
3523
  text-decoration: none;
3271
- background-color: #428bca;
3524
+ background-color: #f5f5f5;
3272
3525
  }
3273
3526
 
3274
3527
  .dropdown-menu > .active > a,
@@ -3517,6 +3770,11 @@ input[type="button"].btn-block {
3517
3770
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3518
3771
  }
3519
3772
 
3773
+ .btn-group.open .dropdown-toggle.btn-link {
3774
+ -webkit-box-shadow: none;
3775
+ box-shadow: none;
3776
+ }
3777
+
3520
3778
  .btn .caret {
3521
3779
  margin-left: 0;
3522
3780
  }
@@ -3706,6 +3964,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
3706
3964
  font-size: 14px;
3707
3965
  font-weight: normal;
3708
3966
  line-height: 1;
3967
+ color: #555555;
3709
3968
  text-align: center;
3710
3969
  background-color: #eeeeee;
3711
3970
  border: 1px solid #cccccc;
@@ -3760,6 +4019,14 @@ textarea.input-group-sm > .input-group-btn > .btn {
3760
4019
  white-space: nowrap;
3761
4020
  }
3762
4021
 
4022
+ .input-group-btn:first-child > .btn {
4023
+ margin-right: -1px;
4024
+ }
4025
+
4026
+ .input-group-btn:last-child > .btn {
4027
+ margin-left: -1px;
4028
+ }
4029
+
3763
4030
  .input-group-btn > .btn {
3764
4031
  position: relative;
3765
4032
  }
@@ -3835,6 +4102,13 @@ textarea.input-group-sm > .input-group-btn > .btn {
3835
4102
  border-color: #428bca;
3836
4103
  }
3837
4104
 
4105
+ .nav .open > a .caret,
4106
+ .nav .open > a:hover .caret,
4107
+ .nav .open > a:focus .caret {
4108
+ border-top-color: #2a6496;
4109
+ border-bottom-color: #2a6496;
4110
+ }
4111
+
3838
4112
  .nav .nav-divider {
3839
4113
  height: 1px;
3840
4114
  margin: 9px 0;
@@ -3886,23 +4160,46 @@ textarea.input-group-sm > .input-group-btn > .btn {
3886
4160
  }
3887
4161
 
3888
4162
  .nav-tabs.nav-justified > li > a {
4163
+ margin-bottom: 5px;
3889
4164
  text-align: center;
3890
4165
  }
3891
4166
 
4167
+ .nav-tabs.nav-justified > .dropdown .dropdown-menu {
4168
+ top: auto;
4169
+ left: auto;
4170
+ }
4171
+
3892
4172
  @media (min-width: 768px) {
3893
4173
  .nav-tabs.nav-justified > li {
3894
4174
  display: table-cell;
3895
4175
  width: 1%;
3896
4176
  }
4177
+ .nav-tabs.nav-justified > li > a {
4178
+ margin-bottom: 0;
4179
+ }
3897
4180
  }
3898
4181
 
3899
4182
  .nav-tabs.nav-justified > li > a {
3900
4183
  margin-right: 0;
3901
- border-bottom: 1px solid #dddddd;
4184
+ border-radius: 4px;
3902
4185
  }
3903
4186
 
3904
- .nav-tabs.nav-justified > .active > a {
3905
- border-bottom-color: #ffffff;
4187
+ .nav-tabs.nav-justified > .active > a,
4188
+ .nav-tabs.nav-justified > .active > a:hover,
4189
+ .nav-tabs.nav-justified > .active > a:focus {
4190
+ border: 1px solid #dddddd;
4191
+ }
4192
+
4193
+ @media (min-width: 768px) {
4194
+ .nav-tabs.nav-justified > li > a {
4195
+ border-bottom: 1px solid #dddddd;
4196
+ border-radius: 4px 4px 0 0;
4197
+ }
4198
+ .nav-tabs.nav-justified > .active > a,
4199
+ .nav-tabs.nav-justified > .active > a:hover,
4200
+ .nav-tabs.nav-justified > .active > a:focus {
4201
+ border-bottom-color: #ffffff;
4202
+ }
3906
4203
  }
3907
4204
 
3908
4205
  .nav-pills > li {
@@ -3910,7 +4207,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
3910
4207
  }
3911
4208
 
3912
4209
  .nav-pills > li > a {
3913
- border-radius: 5px;
4210
+ border-radius: 4px;
3914
4211
  }
3915
4212
 
3916
4213
  .nav-pills > li + li {
@@ -3924,6 +4221,13 @@ textarea.input-group-sm > .input-group-btn > .btn {
3924
4221
  background-color: #428bca;
3925
4222
  }
3926
4223
 
4224
+ .nav-pills > li.active > a .caret,
4225
+ .nav-pills > li.active > a:hover .caret,
4226
+ .nav-pills > li.active > a:focus .caret {
4227
+ border-top-color: #ffffff;
4228
+ border-bottom-color: #ffffff;
4229
+ }
4230
+
3927
4231
  .nav-stacked > li {
3928
4232
  float: none;
3929
4233
  }
@@ -3942,14 +4246,23 @@ textarea.input-group-sm > .input-group-btn > .btn {
3942
4246
  }
3943
4247
 
3944
4248
  .nav-justified > li > a {
4249
+ margin-bottom: 5px;
3945
4250
  text-align: center;
3946
4251
  }
3947
4252
 
4253
+ .nav-justified > .dropdown .dropdown-menu {
4254
+ top: auto;
4255
+ left: auto;
4256
+ }
4257
+
3948
4258
  @media (min-width: 768px) {
3949
4259
  .nav-justified > li {
3950
4260
  display: table-cell;
3951
4261
  width: 1%;
3952
4262
  }
4263
+ .nav-justified > li > a {
4264
+ margin-bottom: 0;
4265
+ }
3953
4266
  }
3954
4267
 
3955
4268
  .nav-tabs-justified {
@@ -3958,40 +4271,32 @@ textarea.input-group-sm > .input-group-btn > .btn {
3958
4271
 
3959
4272
  .nav-tabs-justified > li > a {
3960
4273
  margin-right: 0;
3961
- border-bottom: 1px solid #dddddd;
3962
- }
3963
-
3964
- .nav-tabs-justified > .active > a {
3965
- border-bottom-color: #ffffff;
3966
- }
3967
-
3968
- .tabbable:before,
3969
- .tabbable:after {
3970
- display: table;
3971
- content: " ";
3972
- }
3973
-
3974
- .tabbable:after {
3975
- clear: both;
4274
+ border-radius: 4px;
3976
4275
  }
3977
4276
 
3978
- .tabbable:before,
3979
- .tabbable:after {
3980
- display: table;
3981
- content: " ";
4277
+ .nav-tabs-justified > .active > a,
4278
+ .nav-tabs-justified > .active > a:hover,
4279
+ .nav-tabs-justified > .active > a:focus {
4280
+ border: 1px solid #dddddd;
3982
4281
  }
3983
4282
 
3984
- .tabbable:after {
3985
- clear: both;
4283
+ @media (min-width: 768px) {
4284
+ .nav-tabs-justified > li > a {
4285
+ border-bottom: 1px solid #dddddd;
4286
+ border-radius: 4px 4px 0 0;
4287
+ }
4288
+ .nav-tabs-justified > .active > a,
4289
+ .nav-tabs-justified > .active > a:hover,
4290
+ .nav-tabs-justified > .active > a:focus {
4291
+ border-bottom-color: #ffffff;
4292
+ }
3986
4293
  }
3987
4294
 
3988
- .tab-content > .tab-pane,
3989
- .pill-content > .pill-pane {
4295
+ .tab-content > .tab-pane {
3990
4296
  display: none;
3991
4297
  }
3992
4298
 
3993
- .tab-content > .active,
3994
- .pill-content > .active {
4299
+ .tab-content > .active {
3995
4300
  display: block;
3996
4301
  }
3997
4302
 
@@ -4013,7 +4318,6 @@ textarea.input-group-sm > .input-group-btn > .btn {
4013
4318
 
4014
4319
  .navbar {
4015
4320
  position: relative;
4016
- z-index: 1000;
4017
4321
  min-height: 50px;
4018
4322
  margin-bottom: 20px;
4019
4323
  border: 1px solid transparent;
@@ -4118,7 +4422,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
4118
4422
  overflow: visible !important;
4119
4423
  }
4120
4424
  .navbar-collapse.in {
4121
- overflow-y: visible;
4425
+ overflow-y: auto;
4122
4426
  }
4123
4427
  .navbar-collapse .navbar-nav.navbar-left:first-child {
4124
4428
  margin-left: -15px;
@@ -4146,6 +4450,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
4146
4450
  }
4147
4451
 
4148
4452
  .navbar-static-top {
4453
+ z-index: 1000;
4149
4454
  border-width: 0 0 1px;
4150
4455
  }
4151
4456
 
@@ -4160,7 +4465,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
4160
4465
  position: fixed;
4161
4466
  right: 0;
4162
4467
  left: 0;
4163
- border-width: 0 0 1px;
4468
+ z-index: 1030;
4164
4469
  }
4165
4470
 
4166
4471
  @media (min-width: 768px) {
@@ -4172,12 +4477,13 @@ textarea.input-group-sm > .input-group-btn > .btn {
4172
4477
 
4173
4478
  .navbar-fixed-top {
4174
4479
  top: 0;
4175
- z-index: 1030;
4480
+ border-width: 0 0 1px;
4176
4481
  }
4177
4482
 
4178
4483
  .navbar-fixed-bottom {
4179
4484
  bottom: 0;
4180
4485
  margin-bottom: 0;
4486
+ border-width: 1px 0 0;
4181
4487
  }
4182
4488
 
4183
4489
  .navbar-brand {
@@ -4430,7 +4736,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
4430
4736
 
4431
4737
  .navbar-default .navbar-collapse,
4432
4738
  .navbar-default .navbar-form {
4433
- border-color: #e6e6e6;
4739
+ border-color: #e7e7e7;
4434
4740
  }
4435
4741
 
4436
4742
  .navbar-default .navbar-nav > .dropdown > a:hover .caret,
@@ -4687,6 +4993,8 @@ textarea.input-group-sm > .input-group-btn > .btn {
4687
4993
  }
4688
4994
 
4689
4995
  .pagination > .disabled > span,
4996
+ .pagination > .disabled > span:hover,
4997
+ .pagination > .disabled > span:focus,
4690
4998
  .pagination > .disabled > a,
4691
4999
  .pagination > .disabled > a:hover,
4692
5000
  .pagination > .disabled > a:focus {
@@ -4959,6 +5267,7 @@ a.list-group-item.active > .badge,
4959
5267
  height: auto;
4960
5268
  max-width: 100%;
4961
5269
  padding: 4px;
5270
+ margin-bottom: 20px;
4962
5271
  line-height: 1.428571429;
4963
5272
  background-color: #ffffff;
4964
5273
  border: 1px solid #dddddd;
@@ -4971,18 +5280,16 @@ a.list-group-item.active > .badge,
4971
5280
  display: block;
4972
5281
  height: auto;
4973
5282
  max-width: 100%;
5283
+ margin-right: auto;
5284
+ margin-left: auto;
4974
5285
  }
4975
5286
 
4976
5287
  a.thumbnail:hover,
4977
- a.thumbnail:focus {
5288
+ a.thumbnail:focus,
5289
+ a.thumbnail.active {
4978
5290
  border-color: #428bca;
4979
5291
  }
4980
5292
 
4981
- .thumbnail > img {
4982
- margin-right: auto;
4983
- margin-left: auto;
4984
- }
4985
-
4986
5293
  .thumbnail .caption {
4987
5294
  padding: 9px;
4988
5295
  color: #333333;
@@ -5055,11 +5362,11 @@ a.thumbnail:focus {
5055
5362
  .alert-warning {
5056
5363
  color: #c09853;
5057
5364
  background-color: #fcf8e3;
5058
- border-color: #fbeed5;
5365
+ border-color: #faebcc;
5059
5366
  }
5060
5367
 
5061
5368
  .alert-warning hr {
5062
- border-top-color: #f8e5be;
5369
+ border-top-color: #f7e1b5;
5063
5370
  }
5064
5371
 
5065
5372
  .alert-warning .alert-link {
@@ -5069,11 +5376,11 @@ a.thumbnail:focus {
5069
5376
  .alert-danger {
5070
5377
  color: #b94a48;
5071
5378
  background-color: #f2dede;
5072
- border-color: #eed3d7;
5379
+ border-color: #ebccd1;
5073
5380
  }
5074
5381
 
5075
5382
  .alert-danger hr {
5076
- border-top-color: #e6c1c7;
5383
+ border-top-color: #e4b9c0;
5077
5384
  }
5078
5385
 
5079
5386
  .alert-danger .alert-link {
@@ -5131,6 +5438,7 @@ a.thumbnail:focus {
5131
5438
  width: 0;
5132
5439
  height: 100%;
5133
5440
  font-size: 12px;
5441
+ line-height: 20px;
5134
5442
  color: #ffffff;
5135
5443
  text-align: center;
5136
5444
  background-color: #428bca;
@@ -5150,9 +5458,6 @@ a.thumbnail:focus {
5150
5458
 
5151
5459
  .progress.active .progress-bar {
5152
5460
  -webkit-animation: progress-bar-stripes 2s linear infinite;
5153
- -moz-animation: progress-bar-stripes 2s linear infinite;
5154
- -ms-animation: progress-bar-stripes 2s linear infinite;
5155
- -o-animation: progress-bar-stripes 2s linear infinite;
5156
5461
  animation: progress-bar-stripes 2s linear infinite;
5157
5462
  }
5158
5463
 
@@ -5283,24 +5588,24 @@ a.list-group-item:focus {
5283
5588
  background-color: #f5f5f5;
5284
5589
  }
5285
5590
 
5286
- .list-group-item.active,
5287
- .list-group-item.active:hover,
5288
- .list-group-item.active:focus {
5591
+ a.list-group-item.active,
5592
+ a.list-group-item.active:hover,
5593
+ a.list-group-item.active:focus {
5289
5594
  z-index: 2;
5290
5595
  color: #ffffff;
5291
5596
  background-color: #428bca;
5292
5597
  border-color: #428bca;
5293
5598
  }
5294
5599
 
5295
- .list-group-item.active .list-group-item-heading,
5296
- .list-group-item.active:hover .list-group-item-heading,
5297
- .list-group-item.active:focus .list-group-item-heading {
5600
+ a.list-group-item.active .list-group-item-heading,
5601
+ a.list-group-item.active:hover .list-group-item-heading,
5602
+ a.list-group-item.active:focus .list-group-item-heading {
5298
5603
  color: inherit;
5299
5604
  }
5300
5605
 
5301
- .list-group-item.active .list-group-item-text,
5302
- .list-group-item.active:hover .list-group-item-text,
5303
- .list-group-item.active:focus .list-group-item-text {
5606
+ a.list-group-item.active .list-group-item-text,
5607
+ a.list-group-item.active:hover .list-group-item-text,
5608
+ a.list-group-item.active:focus .list-group-item-text {
5304
5609
  color: #e1edf7;
5305
5610
  }
5306
5611
 
@@ -5368,14 +5673,66 @@ a.list-group-item:focus {
5368
5673
  border-top-width: 0;
5369
5674
  }
5370
5675
 
5371
- .panel > .table {
5676
+ .panel > .table,
5677
+ .panel > .table-responsive {
5372
5678
  margin-bottom: 0;
5373
5679
  }
5374
5680
 
5375
- .panel > .panel-body + .table {
5681
+ .panel > .panel-body + .table,
5682
+ .panel > .panel-body + .table-responsive {
5376
5683
  border-top: 1px solid #dddddd;
5377
5684
  }
5378
5685
 
5686
+ .panel > .table-bordered,
5687
+ .panel > .table-responsive > .table-bordered {
5688
+ border: 0;
5689
+ }
5690
+
5691
+ .panel > .table-bordered > thead > tr > th:first-child,
5692
+ .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
5693
+ .panel > .table-bordered > tbody > tr > th:first-child,
5694
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
5695
+ .panel > .table-bordered > tfoot > tr > th:first-child,
5696
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
5697
+ .panel > .table-bordered > thead > tr > td:first-child,
5698
+ .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
5699
+ .panel > .table-bordered > tbody > tr > td:first-child,
5700
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
5701
+ .panel > .table-bordered > tfoot > tr > td:first-child,
5702
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
5703
+ border-left: 0;
5704
+ }
5705
+
5706
+ .panel > .table-bordered > thead > tr > th:last-child,
5707
+ .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
5708
+ .panel > .table-bordered > tbody > tr > th:last-child,
5709
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
5710
+ .panel > .table-bordered > tfoot > tr > th:last-child,
5711
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
5712
+ .panel > .table-bordered > thead > tr > td:last-child,
5713
+ .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
5714
+ .panel > .table-bordered > tbody > tr > td:last-child,
5715
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
5716
+ .panel > .table-bordered > tfoot > tr > td:last-child,
5717
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
5718
+ border-right: 0;
5719
+ }
5720
+
5721
+ .panel > .table-bordered > thead > tr:last-child > th,
5722
+ .panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
5723
+ .panel > .table-bordered > tbody > tr:last-child > th,
5724
+ .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
5725
+ .panel > .table-bordered > tfoot > tr:last-child > th,
5726
+ .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
5727
+ .panel > .table-bordered > thead > tr:last-child > td,
5728
+ .panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
5729
+ .panel > .table-bordered > tbody > tr:last-child > td,
5730
+ .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
5731
+ .panel > .table-bordered > tfoot > tr:last-child > td,
5732
+ .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
5733
+ border-bottom: 0;
5734
+ }
5735
+
5379
5736
  .panel-heading {
5380
5737
  padding: 10px 15px;
5381
5738
  border-bottom: 1px solid transparent;
@@ -5383,6 +5740,10 @@ a.list-group-item:focus {
5383
5740
  border-top-left-radius: 3px;
5384
5741
  }
5385
5742
 
5743
+ .panel-heading > .dropdown .dropdown-toggle {
5744
+ color: inherit;
5745
+ }
5746
+
5386
5747
  .panel-title {
5387
5748
  margin-top: 0;
5388
5749
  margin-bottom: 0;
@@ -5441,6 +5802,10 @@ a.list-group-item:focus {
5441
5802
  border-top-color: #dddddd;
5442
5803
  }
5443
5804
 
5805
+ .panel-default > .panel-heading > .dropdown .caret {
5806
+ border-color: #333333 transparent;
5807
+ }
5808
+
5444
5809
  .panel-default > .panel-footer + .panel-collapse .panel-body {
5445
5810
  border-bottom-color: #dddddd;
5446
5811
  }
@@ -5459,6 +5824,10 @@ a.list-group-item:focus {
5459
5824
  border-top-color: #428bca;
5460
5825
  }
5461
5826
 
5827
+ .panel-primary > .panel-heading > .dropdown .caret {
5828
+ border-color: #ffffff transparent;
5829
+ }
5830
+
5462
5831
  .panel-primary > .panel-footer + .panel-collapse .panel-body {
5463
5832
  border-bottom-color: #428bca;
5464
5833
  }
@@ -5477,44 +5846,56 @@ a.list-group-item:focus {
5477
5846
  border-top-color: #d6e9c6;
5478
5847
  }
5479
5848
 
5849
+ .panel-success > .panel-heading > .dropdown .caret {
5850
+ border-color: #468847 transparent;
5851
+ }
5852
+
5480
5853
  .panel-success > .panel-footer + .panel-collapse .panel-body {
5481
5854
  border-bottom-color: #d6e9c6;
5482
5855
  }
5483
5856
 
5484
5857
  .panel-warning {
5485
- border-color: #fbeed5;
5858
+ border-color: #faebcc;
5486
5859
  }
5487
5860
 
5488
5861
  .panel-warning > .panel-heading {
5489
5862
  color: #c09853;
5490
5863
  background-color: #fcf8e3;
5491
- border-color: #fbeed5;
5864
+ border-color: #faebcc;
5492
5865
  }
5493
5866
 
5494
5867
  .panel-warning > .panel-heading + .panel-collapse .panel-body {
5495
- border-top-color: #fbeed5;
5868
+ border-top-color: #faebcc;
5869
+ }
5870
+
5871
+ .panel-warning > .panel-heading > .dropdown .caret {
5872
+ border-color: #c09853 transparent;
5496
5873
  }
5497
5874
 
5498
5875
  .panel-warning > .panel-footer + .panel-collapse .panel-body {
5499
- border-bottom-color: #fbeed5;
5876
+ border-bottom-color: #faebcc;
5500
5877
  }
5501
5878
 
5502
5879
  .panel-danger {
5503
- border-color: #eed3d7;
5880
+ border-color: #ebccd1;
5504
5881
  }
5505
5882
 
5506
5883
  .panel-danger > .panel-heading {
5507
5884
  color: #b94a48;
5508
5885
  background-color: #f2dede;
5509
- border-color: #eed3d7;
5886
+ border-color: #ebccd1;
5510
5887
  }
5511
5888
 
5512
5889
  .panel-danger > .panel-heading + .panel-collapse .panel-body {
5513
- border-top-color: #eed3d7;
5890
+ border-top-color: #ebccd1;
5891
+ }
5892
+
5893
+ .panel-danger > .panel-heading > .dropdown .caret {
5894
+ border-color: #b94a48 transparent;
5514
5895
  }
5515
5896
 
5516
5897
  .panel-danger > .panel-footer + .panel-collapse .panel-body {
5517
- border-bottom-color: #eed3d7;
5898
+ border-bottom-color: #ebccd1;
5518
5899
  }
5519
5900
 
5520
5901
  .panel-info {
@@ -5531,6 +5912,10 @@ a.list-group-item:focus {
5531
5912
  border-top-color: #bce8f1;
5532
5913
  }
5533
5914
 
5915
+ .panel-info > .panel-heading > .dropdown .caret {
5916
+ border-color: #3a87ad transparent;
5917
+ }
5918
+
5534
5919
  .panel-info > .panel-footer + .panel-collapse .panel-body {
5535
5920
  border-bottom-color: #bce8f1;
5536
5921
  }
@@ -5593,12 +5978,6 @@ button.close {
5593
5978
  overflow: hidden;
5594
5979
  }
5595
5980
 
5596
- body.modal-open,
5597
- .modal-open .navbar-fixed-top,
5598
- .modal-open .navbar-fixed-bottom {
5599
- margin-right: 15px;
5600
- }
5601
-
5602
5981
  .modal {
5603
5982
  position: fixed;
5604
5983
  top: 0;
@@ -5628,6 +6007,7 @@ body.modal-open,
5628
6007
  }
5629
6008
 
5630
6009
  .modal-dialog {
6010
+ position: relative;
5631
6011
  z-index: 1050;
5632
6012
  width: auto;
5633
6013
  padding: 10px;
@@ -5729,8 +6109,6 @@ body.modal-open,
5729
6109
 
5730
6110
  @media screen and (min-width: 768px) {
5731
6111
  .modal-dialog {
5732
- right: auto;
5733
- left: 50%;
5734
6112
  width: 600px;
5735
6113
  padding-top: 30px;
5736
6114
  padding-bottom: 30px;
@@ -6103,11 +6481,20 @@ body.modal-open,
6103
6481
  .carousel-control .glyphicon-chevron-right {
6104
6482
  position: absolute;
6105
6483
  top: 50%;
6106
- left: 50%;
6107
6484
  z-index: 5;
6108
6485
  display: inline-block;
6109
6486
  }
6110
6487
 
6488
+ .carousel-control .icon-prev,
6489
+ .carousel-control .glyphicon-chevron-left {
6490
+ left: 50%;
6491
+ }
6492
+
6493
+ .carousel-control .icon-next,
6494
+ .carousel-control .glyphicon-chevron-right {
6495
+ right: 50%;
6496
+ }
6497
+
6111
6498
  .carousel-control .icon-prev,
6112
6499
  .carousel-control .icon-next {
6113
6500
  width: 20px;
@@ -6144,6 +6531,8 @@ body.modal-open,
6144
6531
  margin: 1px;
6145
6532
  text-indent: -999px;
6146
6533
  cursor: pointer;
6534
+ background-color: #000 \9;
6535
+ background-color: rgba(0, 0, 0, 0);
6147
6536
  border: 1px solid #ffffff;
6148
6537
  border-radius: 10px;
6149
6538
  }
@@ -6173,6 +6562,8 @@ body.modal-open,
6173
6562
  }
6174
6563
 
6175
6564
  @media screen and (min-width: 768px) {
6565
+ .carousel-control .glyphicons-chevron-left,
6566
+ .carousel-control .glyphicons-chevron-right,
6176
6567
  .carousel-control .icon-prev,
6177
6568
  .carousel-control .icon-next {
6178
6569
  width: 30px;
@@ -6201,6 +6592,12 @@ body.modal-open,
6201
6592
  clear: both;
6202
6593
  }
6203
6594
 
6595
+ .center-block {
6596
+ display: block;
6597
+ margin-right: auto;
6598
+ margin-left: auto;
6599
+ }
6600
+
6204
6601
  .pull-right {
6205
6602
  float: right !important;
6206
6603
  }
@@ -6229,33 +6626,21 @@ body.modal-open,
6229
6626
  border: 0;
6230
6627
  }
6231
6628
 
6232
- .affix {
6233
- position: fixed;
6234
- }
6235
-
6236
- @-ms-viewport {
6237
- width: device-width;
6238
- }
6239
-
6240
- @media screen and (max-width: 400px) {
6241
- @-ms-viewport {
6242
- width: 320px;
6243
- }
6244
- }
6245
-
6246
6629
  .hidden {
6247
6630
  display: none !important;
6248
6631
  visibility: hidden !important;
6249
6632
  }
6250
6633
 
6251
- .visible-xs {
6252
- display: none !important;
6634
+ .affix {
6635
+ position: fixed;
6253
6636
  }
6254
6637
 
6255
- tr.visible-xs {
6256
- display: none !important;
6638
+ @-ms-viewport {
6639
+ width: device-width;
6257
6640
  }
6258
6641
 
6642
+ .visible-xs,
6643
+ tr.visible-xs,
6259
6644
  th.visible-xs,
6260
6645
  td.visible-xs {
6261
6646
  display: none !important;
@@ -6313,14 +6698,8 @@ td.visible-xs {
6313
6698
  }
6314
6699
  }
6315
6700
 
6316
- .visible-sm {
6317
- display: none !important;
6318
- }
6319
-
6320
- tr.visible-sm {
6321
- display: none !important;
6322
- }
6323
-
6701
+ .visible-sm,
6702
+ tr.visible-sm,
6324
6703
  th.visible-sm,
6325
6704
  td.visible-sm {
6326
6705
  display: none !important;
@@ -6378,14 +6757,8 @@ td.visible-sm {
6378
6757
  }
6379
6758
  }
6380
6759
 
6381
- .visible-md {
6382
- display: none !important;
6383
- }
6384
-
6385
- tr.visible-md {
6386
- display: none !important;
6387
- }
6388
-
6760
+ .visible-md,
6761
+ tr.visible-md,
6389
6762
  th.visible-md,
6390
6763
  td.visible-md {
6391
6764
  display: none !important;
@@ -6443,14 +6816,8 @@ td.visible-md {
6443
6816
  }
6444
6817
  }
6445
6818
 
6446
- .visible-lg {
6447
- display: none !important;
6448
- }
6449
-
6450
- tr.visible-lg {
6451
- display: none !important;
6452
- }
6453
-
6819
+ .visible-lg,
6820
+ tr.visible-lg,
6454
6821
  th.visible-lg,
6455
6822
  td.visible-lg {
6456
6823
  display: none !important;
@@ -6522,12 +6889,8 @@ td.hidden-xs {
6522
6889
  }
6523
6890
 
6524
6891
  @media (max-width: 767px) {
6525
- .hidden-xs {
6526
- display: none !important;
6527
- }
6528
- tr.hidden-xs {
6529
- display: none !important;
6530
- }
6892
+ .hidden-xs,
6893
+ tr.hidden-xs,
6531
6894
  th.hidden-xs,
6532
6895
  td.hidden-xs {
6533
6896
  display: none !important;
@@ -6535,12 +6898,8 @@ td.hidden-xs {
6535
6898
  }
6536
6899
 
6537
6900
  @media (min-width: 768px) and (max-width: 991px) {
6538
- .hidden-xs.hidden-sm {
6539
- display: none !important;
6540
- }
6541
- tr.hidden-xs.hidden-sm {
6542
- display: none !important;
6543
- }
6901
+ .hidden-xs.hidden-sm,
6902
+ tr.hidden-xs.hidden-sm,
6544
6903
  th.hidden-xs.hidden-sm,
6545
6904
  td.hidden-xs.hidden-sm {
6546
6905
  display: none !important;
@@ -6548,12 +6907,8 @@ td.hidden-xs {
6548
6907
  }
6549
6908
 
6550
6909
  @media (min-width: 992px) and (max-width: 1199px) {
6551
- .hidden-xs.hidden-md {
6552
- display: none !important;
6553
- }
6554
- tr.hidden-xs.hidden-md {
6555
- display: none !important;
6556
- }
6910
+ .hidden-xs.hidden-md,
6911
+ tr.hidden-xs.hidden-md,
6557
6912
  th.hidden-xs.hidden-md,
6558
6913
  td.hidden-xs.hidden-md {
6559
6914
  display: none !important;
@@ -6561,12 +6916,8 @@ td.hidden-xs {
6561
6916
  }
6562
6917
 
6563
6918
  @media (min-width: 1200px) {
6564
- .hidden-xs.hidden-lg {
6565
- display: none !important;
6566
- }
6567
- tr.hidden-xs.hidden-lg {
6568
- display: none !important;
6569
- }
6919
+ .hidden-xs.hidden-lg,
6920
+ tr.hidden-xs.hidden-lg,
6570
6921
  th.hidden-xs.hidden-lg,
6571
6922
  td.hidden-xs.hidden-lg {
6572
6923
  display: none !important;
@@ -6587,12 +6938,8 @@ td.hidden-sm {
6587
6938
  }
6588
6939
 
6589
6940
  @media (max-width: 767px) {
6590
- .hidden-sm.hidden-xs {
6591
- display: none !important;
6592
- }
6593
- tr.hidden-sm.hidden-xs {
6594
- display: none !important;
6595
- }
6941
+ .hidden-sm.hidden-xs,
6942
+ tr.hidden-sm.hidden-xs,
6596
6943
  th.hidden-sm.hidden-xs,
6597
6944
  td.hidden-sm.hidden-xs {
6598
6945
  display: none !important;
@@ -6600,12 +6947,8 @@ td.hidden-sm {
6600
6947
  }
6601
6948
 
6602
6949
  @media (min-width: 768px) and (max-width: 991px) {
6603
- .hidden-sm {
6604
- display: none !important;
6605
- }
6606
- tr.hidden-sm {
6607
- display: none !important;
6608
- }
6950
+ .hidden-sm,
6951
+ tr.hidden-sm,
6609
6952
  th.hidden-sm,
6610
6953
  td.hidden-sm {
6611
6954
  display: none !important;
@@ -6613,12 +6956,8 @@ td.hidden-sm {
6613
6956
  }
6614
6957
 
6615
6958
  @media (min-width: 992px) and (max-width: 1199px) {
6616
- .hidden-sm.hidden-md {
6617
- display: none !important;
6618
- }
6619
- tr.hidden-sm.hidden-md {
6620
- display: none !important;
6621
- }
6959
+ .hidden-sm.hidden-md,
6960
+ tr.hidden-sm.hidden-md,
6622
6961
  th.hidden-sm.hidden-md,
6623
6962
  td.hidden-sm.hidden-md {
6624
6963
  display: none !important;
@@ -6626,12 +6965,8 @@ td.hidden-sm {
6626
6965
  }
6627
6966
 
6628
6967
  @media (min-width: 1200px) {
6629
- .hidden-sm.hidden-lg {
6630
- display: none !important;
6631
- }
6632
- tr.hidden-sm.hidden-lg {
6633
- display: none !important;
6634
- }
6968
+ .hidden-sm.hidden-lg,
6969
+ tr.hidden-sm.hidden-lg,
6635
6970
  th.hidden-sm.hidden-lg,
6636
6971
  td.hidden-sm.hidden-lg {
6637
6972
  display: none !important;
@@ -6652,12 +6987,8 @@ td.hidden-md {
6652
6987
  }
6653
6988
 
6654
6989
  @media (max-width: 767px) {
6655
- .hidden-md.hidden-xs {
6656
- display: none !important;
6657
- }
6658
- tr.hidden-md.hidden-xs {
6659
- display: none !important;
6660
- }
6990
+ .hidden-md.hidden-xs,
6991
+ tr.hidden-md.hidden-xs,
6661
6992
  th.hidden-md.hidden-xs,
6662
6993
  td.hidden-md.hidden-xs {
6663
6994
  display: none !important;
@@ -6665,12 +6996,8 @@ td.hidden-md {
6665
6996
  }
6666
6997
 
6667
6998
  @media (min-width: 768px) and (max-width: 991px) {
6668
- .hidden-md.hidden-sm {
6669
- display: none !important;
6670
- }
6671
- tr.hidden-md.hidden-sm {
6672
- display: none !important;
6673
- }
6999
+ .hidden-md.hidden-sm,
7000
+ tr.hidden-md.hidden-sm,
6674
7001
  th.hidden-md.hidden-sm,
6675
7002
  td.hidden-md.hidden-sm {
6676
7003
  display: none !important;
@@ -6678,12 +7005,8 @@ td.hidden-md {
6678
7005
  }
6679
7006
 
6680
7007
  @media (min-width: 992px) and (max-width: 1199px) {
6681
- .hidden-md {
6682
- display: none !important;
6683
- }
6684
- tr.hidden-md {
6685
- display: none !important;
6686
- }
7008
+ .hidden-md,
7009
+ tr.hidden-md,
6687
7010
  th.hidden-md,
6688
7011
  td.hidden-md {
6689
7012
  display: none !important;
@@ -6691,12 +7014,8 @@ td.hidden-md {
6691
7014
  }
6692
7015
 
6693
7016
  @media (min-width: 1200px) {
6694
- .hidden-md.hidden-lg {
6695
- display: none !important;
6696
- }
6697
- tr.hidden-md.hidden-lg {
6698
- display: none !important;
6699
- }
7017
+ .hidden-md.hidden-lg,
7018
+ tr.hidden-md.hidden-lg,
6700
7019
  th.hidden-md.hidden-lg,
6701
7020
  td.hidden-md.hidden-lg {
6702
7021
  display: none !important;
@@ -6717,12 +7036,8 @@ td.hidden-lg {
6717
7036
  }
6718
7037
 
6719
7038
  @media (max-width: 767px) {
6720
- .hidden-lg.hidden-xs {
6721
- display: none !important;
6722
- }
6723
- tr.hidden-lg.hidden-xs {
6724
- display: none !important;
6725
- }
7039
+ .hidden-lg.hidden-xs,
7040
+ tr.hidden-lg.hidden-xs,
6726
7041
  th.hidden-lg.hidden-xs,
6727
7042
  td.hidden-lg.hidden-xs {
6728
7043
  display: none !important;
@@ -6730,12 +7045,8 @@ td.hidden-lg {
6730
7045
  }
6731
7046
 
6732
7047
  @media (min-width: 768px) and (max-width: 991px) {
6733
- .hidden-lg.hidden-sm {
6734
- display: none !important;
6735
- }
6736
- tr.hidden-lg.hidden-sm {
6737
- display: none !important;
6738
- }
7048
+ .hidden-lg.hidden-sm,
7049
+ tr.hidden-lg.hidden-sm,
6739
7050
  th.hidden-lg.hidden-sm,
6740
7051
  td.hidden-lg.hidden-sm {
6741
7052
  display: none !important;
@@ -6743,12 +7054,8 @@ td.hidden-lg {
6743
7054
  }
6744
7055
 
6745
7056
  @media (min-width: 992px) and (max-width: 1199px) {
6746
- .hidden-lg.hidden-md {
6747
- display: none !important;
6748
- }
6749
- tr.hidden-lg.hidden-md {
6750
- display: none !important;
6751
- }
7057
+ .hidden-lg.hidden-md,
7058
+ tr.hidden-lg.hidden-md,
6752
7059
  th.hidden-lg.hidden-md,
6753
7060
  td.hidden-lg.hidden-md {
6754
7061
  display: none !important;
@@ -6756,26 +7063,16 @@ td.hidden-lg {
6756
7063
  }
6757
7064
 
6758
7065
  @media (min-width: 1200px) {
6759
- .hidden-lg {
6760
- display: none !important;
6761
- }
6762
- tr.hidden-lg {
6763
- display: none !important;
6764
- }
7066
+ .hidden-lg,
7067
+ tr.hidden-lg,
6765
7068
  th.hidden-lg,
6766
7069
  td.hidden-lg {
6767
7070
  display: none !important;
6768
7071
  }
6769
7072
  }
6770
7073
 
6771
- .visible-print {
6772
- display: none !important;
6773
- }
6774
-
6775
- tr.visible-print {
6776
- display: none !important;
6777
- }
6778
-
7074
+ .visible-print,
7075
+ tr.visible-print,
6779
7076
  th.visible-print,
6780
7077
  td.visible-print {
6781
7078
  display: none !important;
@@ -6792,12 +7089,8 @@ td.visible-print {
6792
7089
  td.visible-print {
6793
7090
  display: table-cell !important;
6794
7091
  }
6795
- .hidden-print {
6796
- display: none !important;
6797
- }
6798
- tr.hidden-print {
6799
- display: none !important;
6800
- }
7092
+ .hidden-print,
7093
+ tr.hidden-print,
6801
7094
  th.hidden-print,
6802
7095
  td.hidden-print {
6803
7096
  display: none !important;