patternfly-sass 3.3.6 → 3.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/assets/stylesheets/_patternfly.scss +1 -0
  3. data/assets/stylesheets/patternfly/_alerts.scss +1 -1
  4. data/assets/stylesheets/patternfly/_bootstrap-combobox.scss +1 -1
  5. data/assets/stylesheets/patternfly/_bootstrap-datepicker.scss +5 -5
  6. data/assets/stylesheets/patternfly/_bootstrap-select.scss +7 -9
  7. data/assets/stylesheets/patternfly/_bootstrap-switch.scss +1 -1
  8. data/assets/stylesheets/patternfly/_buttons.scss +4 -4
  9. data/assets/stylesheets/patternfly/_cards.scss +1 -1
  10. data/assets/stylesheets/patternfly/_charts.scss +2 -2
  11. data/assets/stylesheets/patternfly/_color-variables.scss +4 -1
  12. data/assets/stylesheets/patternfly/_datatables.scss +11 -11
  13. data/assets/stylesheets/patternfly/_forms.scss +2 -2
  14. data/assets/stylesheets/patternfly/_infotip.scss +3 -3
  15. data/assets/stylesheets/patternfly/_list-view.scss +3 -3
  16. data/assets/stylesheets/patternfly/_login.scss +5 -6
  17. data/assets/stylesheets/patternfly/_mixin_overrides.scss +3 -3
  18. data/assets/stylesheets/patternfly/_mixins.scss +3 -3
  19. data/assets/stylesheets/patternfly/_modals.scss +1 -1
  20. data/assets/stylesheets/patternfly/_nav-vertical-alt.scss +1 -1
  21. data/assets/stylesheets/patternfly/_navbar.scss +5 -7
  22. data/assets/stylesheets/patternfly/_notifications-drawer.scss +116 -0
  23. data/assets/stylesheets/patternfly/_pager.scss +1 -1
  24. data/assets/stylesheets/patternfly/_pagination.scss +2 -2
  25. data/assets/stylesheets/patternfly/_panels.scss +4 -3
  26. data/assets/stylesheets/patternfly/_popovers.scss +1 -1
  27. data/assets/stylesheets/patternfly/_progress-bars.scss +1 -1
  28. data/assets/stylesheets/patternfly/_search.scss +1 -1
  29. data/assets/stylesheets/patternfly/_sidebar.scss +2 -2
  30. data/assets/stylesheets/patternfly/_spinner.scss +8 -8
  31. data/assets/stylesheets/patternfly/_tables.scss +2 -2
  32. data/assets/stylesheets/patternfly/_toast.scss +2 -2
  33. data/assets/stylesheets/patternfly/_toolbar.scss +3 -3
  34. data/assets/stylesheets/patternfly/_variables.scss +90 -90
  35. data/assets/stylesheets/patternfly/_vertical-nav.scss +2 -2
  36. data/assets/stylesheets/patternfly/lib/bootstrap-datepicker.scss +2 -2
  37. data/bower.json +1 -1
  38. data/lib/patternfly-sass/version.rb +2 -2
  39. data/spec/html/dist/css/patternfly-additions.css +372 -264
  40. data/spec/html/dist/css/patternfly-additions.css.map +1 -1
  41. data/spec/html/dist/css/patternfly-additions.min.css +2 -2
  42. data/spec/html/dist/css/patternfly-additions.min.css.map +1 -1
  43. data/spec/html/dist/css/patternfly.css +323 -303
  44. data/spec/html/dist/css/patternfly.css.map +1 -1
  45. data/spec/html/dist/css/patternfly.min.css +3 -3
  46. data/spec/html/dist/css/patternfly.min.css.map +1 -1
  47. data/spec/html/forms.html +7 -4
  48. data/spec/html/horizontal-navigation.html +759 -0
  49. data/spec/html/index.html +6 -0
  50. data/spec/html/list-view.html +12 -3
  51. data/spec/html/navbar.html +87 -87
  52. data/spec/html/notifications-drawer.html +1624 -0
  53. data/spec/html/vertical-navigation-without-icons.html +4 -6
  54. data/spec/html/vertical-navigation.html +6 -8
  55. data/tasks/converter.rb +6 -0
  56. metadata +8 -3
@@ -145,7 +145,7 @@
145
145
  }
146
146
  &.hidden {
147
147
  &.show-mobile-nav {
148
- box-shadow: 0 0 3px rgba(0,0,0,0.15);
148
+ box-shadow: 0 0 3px rgba($color-pf-black, 0.15);
149
149
  display: block !important;
150
150
  }
151
151
  > .list-group {
@@ -300,7 +300,7 @@
300
300
  font-family: "FontAwesome";
301
301
  font-size: ($font-size-base * 2);
302
302
  line-height: 30px;
303
- padding: $nav-pf-vertical-secondayr-indicator-padding;
303
+ padding: $nav-pf-vertical-secondary-indicator-padding;
304
304
  position: absolute;
305
305
  right: 20px;
306
306
  top: 0;
@@ -106,12 +106,12 @@
106
106
  }
107
107
  .datepicker table tr td.old,
108
108
  .datepicker table tr td.new {
109
- color: #999999;
109
+ color: #9c9c9c;
110
110
  }
111
111
  .datepicker table tr td.disabled,
112
112
  .datepicker table tr td.disabled:hover {
113
113
  background: none;
114
- color: #999999;
114
+ color: #9c9c9c;
115
115
  cursor: default;
116
116
  }
117
117
  .datepicker table tr td.today,
data/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patternfly-sass",
3
- "version": "3.3.6",
3
+ "version": "3.4.0",
4
4
  "license": "Apache-2.0",
5
5
  "homepage": "https://www.patternfly.org",
6
6
  "authors": [
@@ -1,4 +1,4 @@
1
1
  module Patternfly
2
- VERSION = '3.3.6'
3
- PATTERNFLY_SHA = 'e53ce5d07b0a9e8309513b24bf50c0db3d5f3b58'
2
+ VERSION = '3.4.0'
3
+ PATTERNFLY_SHA = '2667fe50ca1ef096a6e51cba68f2f5c13e19c302'
4
4
  end
@@ -139,17 +139,17 @@
139
139
  }
140
140
  .datepicker table tr td.day:hover,
141
141
  .datepicker table tr td.day.focused {
142
- background: #eeeeee;
142
+ background: #f1f1f1;
143
143
  cursor: pointer;
144
144
  }
145
145
  .datepicker table tr td.old,
146
146
  .datepicker table tr td.new {
147
- color: #999999;
147
+ color: #9c9c9c;
148
148
  }
149
149
  .datepicker table tr td.disabled,
150
150
  .datepicker table tr td.disabled:hover {
151
151
  background: none;
152
- color: #999999;
152
+ color: #9c9c9c;
153
153
  cursor: default;
154
154
  }
155
155
  .datepicker table tr td.today,
@@ -306,7 +306,7 @@ fieldset[disabled] .datepicker table tr td.today.disabled:hover.focus {
306
306
  .datepicker table tr td.range:hover,
307
307
  .datepicker table tr td.range.disabled,
308
308
  .datepicker table tr td.range.disabled:hover {
309
- background: #eeeeee;
309
+ background: #f1f1f1;
310
310
  border-radius: 0;
311
311
  }
312
312
  .datepicker table tr td.range.today,
@@ -314,8 +314,8 @@ fieldset[disabled] .datepicker table tr td.today.disabled:hover.focus {
314
314
  .datepicker table tr td.range.today.disabled,
315
315
  .datepicker table tr td.range.today.disabled:hover {
316
316
  color: #000;
317
- background-color: #f7ca77;
318
- border-color: #f1a417;
317
+ background-color: #f8cb79;
318
+ border-color: #f3a618;
319
319
  border-radius: 0;
320
320
  }
321
321
  .datepicker table tr td.range.today:focus,
@@ -327,16 +327,16 @@ fieldset[disabled] .datepicker table tr td.today.disabled:hover.focus {
327
327
  .datepicker table tr td.range.today.disabled.focus,
328
328
  .datepicker table tr td.range.today.disabled:hover.focus {
329
329
  color: #000;
330
- background-color: #f4b747;
331
- border-color: #815608;
330
+ background-color: #f6b848;
331
+ border-color: #855807;
332
332
  }
333
333
  .datepicker table tr td.range.today:hover,
334
334
  .datepicker table tr td.range.today:hover:hover,
335
335
  .datepicker table tr td.range.today.disabled:hover,
336
336
  .datepicker table tr td.range.today.disabled:hover:hover {
337
337
  color: #000;
338
- background-color: #f4b747;
339
- border-color: #bf800c;
338
+ background-color: #f6b848;
339
+ border-color: #c4820a;
340
340
  }
341
341
  .datepicker table tr td.range.today:active,
342
342
  .datepicker table tr td.range.today:hover:active,
@@ -351,8 +351,8 @@ fieldset[disabled] .datepicker table tr td.today.disabled:hover.focus {
351
351
  .open > .dropdown-toggle.datepicker table tr td.range.today.disabled,
352
352
  .open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover {
353
353
  color: #000;
354
- background-color: #f4b747;
355
- border-color: #bf800c;
354
+ background-color: #f6b848;
355
+ border-color: #c4820a;
356
356
  }
357
357
  .datepicker table tr td.range.today:active:hover,
358
358
  .datepicker table tr td.range.today:hover:active:hover,
@@ -391,8 +391,8 @@ fieldset[disabled] .datepicker table tr td.today.disabled:hover.focus {
391
391
  .open > .dropdown-toggle.datepicker table tr td.range.today.disabled.focus,
392
392
  .open > .dropdown-toggle.datepicker table tr td.range.today.disabled:hover.focus {
393
393
  color: #000;
394
- background-color: #f2aa25;
395
- border-color: #815608;
394
+ background-color: #f4ab26;
395
+ border-color: #855807;
396
396
  }
397
397
  .datepicker table tr td.range.today:active,
398
398
  .datepicker table tr td.range.today:hover:active,
@@ -444,14 +444,14 @@ fieldset[disabled] .datepicker table tr td.range.today.focus,
444
444
  fieldset[disabled] .datepicker table tr td.range.today:hover.focus,
445
445
  fieldset[disabled] .datepicker table tr td.range.today.disabled.focus,
446
446
  fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {
447
- background-color: #f7ca77;
448
- border-color: #f1a417;
447
+ background-color: #f8cb79;
448
+ border-color: #f3a618;
449
449
  }
450
450
  .datepicker table tr td.range.today .badge,
451
451
  .datepicker table tr td.range.today:hover .badge,
452
452
  .datepicker table tr td.range.today.disabled .badge,
453
453
  .datepicker table tr td.range.today.disabled:hover .badge {
454
- color: #f7ca77;
454
+ color: #f8cb79;
455
455
  background-color: #000;
456
456
  }
457
457
  .datepicker table tr td.selected,
@@ -459,7 +459,7 @@ fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {
459
459
  .datepicker table tr td.selected.disabled,
460
460
  .datepicker table tr td.selected.disabled:hover {
461
461
  color: #fff;
462
- background-color: #999999;
462
+ background-color: #9c9c9c;
463
463
  border-color: #555555;
464
464
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
465
465
  }
@@ -472,7 +472,7 @@ fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {
472
472
  .datepicker table tr td.selected.disabled.focus,
473
473
  .datepicker table tr td.selected.disabled:hover.focus {
474
474
  color: #fff;
475
- background-color: #808080;
475
+ background-color: #838383;
476
476
  border-color: #161616;
477
477
  }
478
478
  .datepicker table tr td.selected:hover,
@@ -480,7 +480,7 @@ fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {
480
480
  .datepicker table tr td.selected.disabled:hover,
481
481
  .datepicker table tr td.selected.disabled:hover:hover {
482
482
  color: #fff;
483
- background-color: #808080;
483
+ background-color: #838383;
484
484
  border-color: #373737;
485
485
  }
486
486
  .datepicker table tr td.selected:active,
@@ -496,7 +496,7 @@ fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {
496
496
  .open > .dropdown-toggle.datepicker table tr td.selected.disabled,
497
497
  .open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover {
498
498
  color: #fff;
499
- background-color: #808080;
499
+ background-color: #838383;
500
500
  border-color: #373737;
501
501
  }
502
502
  .datepicker table tr td.selected:active:hover,
@@ -536,7 +536,7 @@ fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.focus {
536
536
  .open > .dropdown-toggle.datepicker table tr td.selected.disabled.focus,
537
537
  .open > .dropdown-toggle.datepicker table tr td.selected.disabled:hover.focus {
538
538
  color: #fff;
539
- background-color: #6e6e6e;
539
+ background-color: #717171;
540
540
  border-color: #161616;
541
541
  }
542
542
  .datepicker table tr td.selected:active,
@@ -589,14 +589,14 @@ fieldset[disabled] .datepicker table tr td.selected.focus,
589
589
  fieldset[disabled] .datepicker table tr td.selected:hover.focus,
590
590
  fieldset[disabled] .datepicker table tr td.selected.disabled.focus,
591
591
  fieldset[disabled] .datepicker table tr td.selected.disabled:hover.focus {
592
- background-color: #999999;
592
+ background-color: #9c9c9c;
593
593
  border-color: #555555;
594
594
  }
595
595
  .datepicker table tr td.selected .badge,
596
596
  .datepicker table tr td.selected:hover .badge,
597
597
  .datepicker table tr td.selected.disabled .badge,
598
598
  .datepicker table tr td.selected.disabled:hover .badge {
599
- color: #999999;
599
+ color: #9c9c9c;
600
600
  background-color: #fff;
601
601
  }
602
602
  .datepicker table tr td.active,
@@ -604,8 +604,8 @@ fieldset[disabled] .datepicker table tr td.selected.disabled:hover.focus {
604
604
  .datepicker table tr td.active.disabled,
605
605
  .datepicker table tr td.active.disabled:hover {
606
606
  color: #fff;
607
- background-color: #0085cf;
608
- border-color: #006e9c;
607
+ background-color: #0088ce;
608
+ border-color: #00659c;
609
609
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
610
610
  }
611
611
  .datepicker table tr td.active:focus,
@@ -617,16 +617,16 @@ fieldset[disabled] .datepicker table tr td.selected.disabled:hover.focus {
617
617
  .datepicker table tr td.active.disabled.focus,
618
618
  .datepicker table tr td.active.disabled:hover.focus {
619
619
  color: #fff;
620
- background-color: #00649c;
621
- border-color: #00141d;
620
+ background-color: #00669b;
621
+ border-color: #00121d;
622
622
  }
623
623
  .datepicker table tr td.active:hover,
624
624
  .datepicker table tr td.active:hover:hover,
625
625
  .datepicker table tr td.active.disabled:hover,
626
626
  .datepicker table tr td.active.disabled:hover:hover {
627
627
  color: #fff;
628
- background-color: #00649c;
629
- border-color: #00435f;
628
+ background-color: #00669b;
629
+ border-color: #003d5f;
630
630
  }
631
631
  .datepicker table tr td.active:active,
632
632
  .datepicker table tr td.active:hover:active,
@@ -641,8 +641,8 @@ fieldset[disabled] .datepicker table tr td.selected.disabled:hover.focus {
641
641
  .open > .dropdown-toggle.datepicker table tr td.active.disabled,
642
642
  .open > .dropdown-toggle.datepicker table tr td.active.disabled:hover {
643
643
  color: #fff;
644
- background-color: #00649c;
645
- border-color: #00435f;
644
+ background-color: #00669b;
645
+ border-color: #003d5f;
646
646
  }
647
647
  .datepicker table tr td.active:active:hover,
648
648
  .datepicker table tr td.active:hover:active:hover,
@@ -681,8 +681,8 @@ fieldset[disabled] .datepicker table tr td.selected.disabled:hover.focus {
681
681
  .open > .dropdown-toggle.datepicker table tr td.active.disabled.focus,
682
682
  .open > .dropdown-toggle.datepicker table tr td.active.disabled:hover.focus {
683
683
  color: #fff;
684
- background-color: #004d78;
685
- border-color: #00141d;
684
+ background-color: #004f77;
685
+ border-color: #00121d;
686
686
  }
687
687
  .datepicker table tr td.active:active,
688
688
  .datepicker table tr td.active:hover:active,
@@ -734,14 +734,14 @@ fieldset[disabled] .datepicker table tr td.active.focus,
734
734
  fieldset[disabled] .datepicker table tr td.active:hover.focus,
735
735
  fieldset[disabled] .datepicker table tr td.active.disabled.focus,
736
736
  fieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {
737
- background-color: #0085cf;
738
- border-color: #006e9c;
737
+ background-color: #0088ce;
738
+ border-color: #00659c;
739
739
  }
740
740
  .datepicker table tr td.active .badge,
741
741
  .datepicker table tr td.active:hover .badge,
742
742
  .datepicker table tr td.active.disabled .badge,
743
743
  .datepicker table tr td.active.disabled:hover .badge {
744
- color: #0085cf;
744
+ color: #0088ce;
745
745
  background-color: #fff;
746
746
  }
747
747
  .datepicker table tr td span {
@@ -755,12 +755,12 @@ fieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {
755
755
  border-radius: 4px;
756
756
  }
757
757
  .datepicker table tr td span:hover {
758
- background: #eeeeee;
758
+ background: #f1f1f1;
759
759
  }
760
760
  .datepicker table tr td span.disabled,
761
761
  .datepicker table tr td span.disabled:hover {
762
762
  background: none;
763
- color: #999999;
763
+ color: #9c9c9c;
764
764
  cursor: default;
765
765
  }
766
766
  .datepicker table tr td span.active,
@@ -768,8 +768,8 @@ fieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {
768
768
  .datepicker table tr td span.active.disabled,
769
769
  .datepicker table tr td span.active.disabled:hover {
770
770
  color: #fff;
771
- background-color: #0085cf;
772
- border-color: #006e9c;
771
+ background-color: #0088ce;
772
+ border-color: #00659c;
773
773
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
774
774
  }
775
775
  .datepicker table tr td span.active:focus,
@@ -781,16 +781,16 @@ fieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {
781
781
  .datepicker table tr td span.active.disabled.focus,
782
782
  .datepicker table tr td span.active.disabled:hover.focus {
783
783
  color: #fff;
784
- background-color: #00649c;
785
- border-color: #00141d;
784
+ background-color: #00669b;
785
+ border-color: #00121d;
786
786
  }
787
787
  .datepicker table tr td span.active:hover,
788
788
  .datepicker table tr td span.active:hover:hover,
789
789
  .datepicker table tr td span.active.disabled:hover,
790
790
  .datepicker table tr td span.active.disabled:hover:hover {
791
791
  color: #fff;
792
- background-color: #00649c;
793
- border-color: #00435f;
792
+ background-color: #00669b;
793
+ border-color: #003d5f;
794
794
  }
795
795
  .datepicker table tr td span.active:active,
796
796
  .datepicker table tr td span.active:hover:active,
@@ -805,8 +805,8 @@ fieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {
805
805
  .open > .dropdown-toggle.datepicker table tr td span.active.disabled,
806
806
  .open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
807
807
  color: #fff;
808
- background-color: #00649c;
809
- border-color: #00435f;
808
+ background-color: #00669b;
809
+ border-color: #003d5f;
810
810
  }
811
811
  .datepicker table tr td span.active:active:hover,
812
812
  .datepicker table tr td span.active:hover:active:hover,
@@ -845,8 +845,8 @@ fieldset[disabled] .datepicker table tr td.active.disabled:hover.focus {
845
845
  .open > .dropdown-toggle.datepicker table tr td span.active.disabled.focus,
846
846
  .open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover.focus {
847
847
  color: #fff;
848
- background-color: #004d78;
849
- border-color: #00141d;
848
+ background-color: #004f77;
849
+ border-color: #00121d;
850
850
  }
851
851
  .datepicker table tr td span.active:active,
852
852
  .datepicker table tr td span.active:hover:active,
@@ -898,19 +898,19 @@ fieldset[disabled] .datepicker table tr td span.active.focus,
898
898
  fieldset[disabled] .datepicker table tr td span.active:hover.focus,
899
899
  fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
900
900
  fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
901
- background-color: #0085cf;
902
- border-color: #006e9c;
901
+ background-color: #0088ce;
902
+ border-color: #00659c;
903
903
  }
904
904
  .datepicker table tr td span.active .badge,
905
905
  .datepicker table tr td span.active:hover .badge,
906
906
  .datepicker table tr td span.active.disabled .badge,
907
907
  .datepicker table tr td span.active.disabled:hover .badge {
908
- color: #0085cf;
908
+ color: #0088ce;
909
909
  background-color: #fff;
910
910
  }
911
911
  .datepicker table tr td span.old,
912
912
  .datepicker table tr td span.new {
913
- color: #999999;
913
+ color: #9c9c9c;
914
914
  }
915
915
  .datepicker .datepicker-switch {
916
916
  width: 145px;
@@ -921,7 +921,7 @@ fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
921
921
  }
922
922
  .datepicker thead tr:first-child th:hover,
923
923
  .datepicker tfoot tr th:hover {
924
- background: #eeeeee;
924
+ background: #f1f1f1;
925
925
  }
926
926
  .datepicker .cw {
927
927
  font-size: 10px;
@@ -957,8 +957,8 @@ fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
957
957
  text-align: center;
958
958
  text-shadow: 0 1px 0 #fff;
959
959
  vertical-align: middle;
960
- background-color: #eeeeee;
961
- border: solid #BABABA;
960
+ background-color: #f1f1f1;
961
+ border: solid #bbb;
962
962
  border-width: 1px 0;
963
963
  margin-left: -5px;
964
964
  margin-right: -5px;
@@ -1214,7 +1214,7 @@ select.mobile-device {
1214
1214
  cursor: pointer;
1215
1215
  border-radius: 1px;
1216
1216
  border: 1px solid;
1217
- border-color: #b7b7b7;
1217
+ border-color: #bbb;
1218
1218
  position: relative;
1219
1219
  text-align: left;
1220
1220
  overflow: hidden;
@@ -1257,12 +1257,12 @@ select.mobile-device {
1257
1257
  .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
1258
1258
  .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
1259
1259
  color: #fff;
1260
- background: #0085cf;
1260
+ background: #0088ce;
1261
1261
  }
1262
1262
  .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
1263
1263
  .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
1264
1264
  color: #fff;
1265
- background: #006e9c;
1265
+ background: #00659c;
1266
1266
  }
1267
1267
  .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
1268
1268
  .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
@@ -1282,7 +1282,7 @@ select.mobile-device {
1282
1282
  .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
1283
1283
  .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
1284
1284
  color: #000;
1285
- background: #eeeeee;
1285
+ background: #f1f1f1;
1286
1286
  }
1287
1287
  .bootstrap-switch .bootstrap-switch-label {
1288
1288
  text-align: center;
@@ -1290,7 +1290,7 @@ select.mobile-device {
1290
1290
  margin-bottom: -1px;
1291
1291
  z-index: 100;
1292
1292
  color: #4d5258;
1293
- background: #eeeeee;
1293
+ background: #f1f1f1;
1294
1294
  }
1295
1295
  .bootstrap-switch .bootstrap-switch-handle-on {
1296
1296
  border-bottom-left-radius: 0px;
@@ -1833,7 +1833,7 @@ select.mobile-device {
1833
1833
  .bootstrap-datetimepicker-widget table th.disabled,
1834
1834
  .bootstrap-datetimepicker-widget table th.disabled:hover {
1835
1835
  background: none;
1836
- color: #999999;
1836
+ color: #9c9c9c;
1837
1837
  cursor: not-allowed;
1838
1838
  }
1839
1839
  .bootstrap-datetimepicker-widget table th.prev::after {
@@ -1873,7 +1873,7 @@ select.mobile-device {
1873
1873
  font-size: .8em;
1874
1874
  height: 20px;
1875
1875
  line-height: 20px;
1876
- color: #999999;
1876
+ color: #9c9c9c;
1877
1877
  }
1878
1878
  .bootstrap-datetimepicker-widget table td.day {
1879
1879
  height: 20px;
@@ -1889,7 +1889,7 @@ select.mobile-device {
1889
1889
  }
1890
1890
  .bootstrap-datetimepicker-widget table td.old,
1891
1891
  .bootstrap-datetimepicker-widget table td.new {
1892
- color: #999999;
1892
+ color: #9c9c9c;
1893
1893
  }
1894
1894
  .bootstrap-datetimepicker-widget table td.today {
1895
1895
  position: relative;
@@ -1899,7 +1899,7 @@ select.mobile-device {
1899
1899
  display: inline-block;
1900
1900
  border: solid transparent;
1901
1901
  border-width: 0 0 7px 7px;
1902
- border-bottom-color: #0085cf;
1902
+ border-bottom-color: #0088ce;
1903
1903
  border-top-color: rgba(0, 0, 0, 0.2);
1904
1904
  position: absolute;
1905
1905
  bottom: 4px;
@@ -1907,7 +1907,7 @@ select.mobile-device {
1907
1907
  }
1908
1908
  .bootstrap-datetimepicker-widget table td.active,
1909
1909
  .bootstrap-datetimepicker-widget table td.active:hover {
1910
- background-color: #0085cf;
1910
+ background-color: #0088ce;
1911
1911
  color: #fff;
1912
1912
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1913
1913
  }
@@ -1917,7 +1917,7 @@ select.mobile-device {
1917
1917
  .bootstrap-datetimepicker-widget table td.disabled,
1918
1918
  .bootstrap-datetimepicker-widget table td.disabled:hover {
1919
1919
  background: none;
1920
- color: #999999;
1920
+ color: #9c9c9c;
1921
1921
  cursor: not-allowed;
1922
1922
  }
1923
1923
  .bootstrap-datetimepicker-widget table td span {
@@ -1933,17 +1933,17 @@ select.mobile-device {
1933
1933
  background: transparent;
1934
1934
  }
1935
1935
  .bootstrap-datetimepicker-widget table td span.active {
1936
- background-color: #0085cf;
1936
+ background-color: #0088ce;
1937
1937
  color: #fff;
1938
1938
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1939
1939
  }
1940
1940
  .bootstrap-datetimepicker-widget table td span.old {
1941
- color: #999999;
1941
+ color: #9c9c9c;
1942
1942
  }
1943
1943
  .bootstrap-datetimepicker-widget table td span.disabled,
1944
1944
  .bootstrap-datetimepicker-widget table td span.disabled:hover {
1945
1945
  background: none;
1946
- color: #999999;
1946
+ color: #9c9c9c;
1947
1947
  cursor: not-allowed;
1948
1948
  }
1949
1949
  .bootstrap-datetimepicker-widget.usetwentyfour td.hour {
@@ -1988,7 +1988,7 @@ select.mobile-device {
1988
1988
  }
1989
1989
  }
1990
1990
  .blank-slate-pf .blank-slate-pf-icon {
1991
- color: #999999;
1991
+ color: #9c9c9c;
1992
1992
  font-size: 57.6px;
1993
1993
  line-height: 57.6px;
1994
1994
  }
@@ -2021,13 +2021,13 @@ select.mobile-device {
2021
2021
  font-family: "PatternFlyIcons-webfont";
2022
2022
  }
2023
2023
  .combobox-container .input-group-addon {
2024
- background-color: #eeeeee;
2024
+ background-color: #f1f1f1;
2025
2025
  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
2026
2026
  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
2027
2027
  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
2028
2028
  background-repeat: repeat-x;
2029
2029
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
2030
- border-color: #b7b7b7;
2030
+ border-color: #bbb;
2031
2031
  color: #4d5258;
2032
2032
  position: relative;
2033
2033
  }
@@ -2036,9 +2036,9 @@ select.mobile-device {
2036
2036
  .combobox-container .input-group-addon:active,
2037
2037
  .combobox-container .input-group-addon.active,
2038
2038
  .open .dropdown-toggle.combobox-container .input-group-addon {
2039
- background-color: #eeeeee;
2039
+ background-color: #f1f1f1;
2040
2040
  background-image: none;
2041
- border-color: #b7b7b7;
2041
+ border-color: #bbb;
2042
2042
  color: #4d5258;
2043
2043
  }
2044
2044
  .combobox-container .input-group-addon:active,
@@ -2055,8 +2055,8 @@ select.mobile-device {
2055
2055
  .combobox-container .input-group-addon:active.focus,
2056
2056
  .combobox-container .input-group-addon.active.focus,
2057
2057
  .open .dropdown-toggle.combobox-container .input-group-addon.focus {
2058
- background-color: #e2e2e2;
2059
- border-color: #a5a5a5;
2058
+ background-color: #e5e5e5;
2059
+ border-color: #a9a9a9;
2060
2060
  }
2061
2061
  .combobox-container .input-group-addon.disabled,
2062
2062
  .combobox-container .input-group-addon[disabled],
@@ -2073,19 +2073,19 @@ fieldset[disabled] .combobox-container .input-group-addon:active,
2073
2073
  .combobox-container .input-group-addon.disabled.active,
2074
2074
  .combobox-container .input-group-addon[disabled].active,
2075
2075
  fieldset[disabled] .combobox-container .input-group-addon.active {
2076
- background-color: #eeeeee;
2077
- border-color: #b7b7b7;
2076
+ background-color: #f1f1f1;
2077
+ border-color: #bbb;
2078
2078
  }
2079
2079
  .combobox-container .input-group-addon:active {
2080
- -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
2081
- box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
2080
+ -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
2081
+ box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
2082
2082
  }
2083
2083
  .bootstrap-datepicker.form-control[readonly] {
2084
2084
  background-color: #fff;
2085
- border-color: #BABABA !important;
2086
- color: #333333;
2087
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2088
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2085
+ border-color: #bbb !important;
2086
+ color: #363636;
2087
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
2088
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
2089
2089
  }
2090
2090
  .bootstrap-datepicker.form-control[readonly]:focus {
2091
2091
  border-color: #66afe9;
@@ -2098,21 +2098,21 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2098
2098
  }
2099
2099
  .has-error .bootstrap-datepicker.form-control[readonly]:focus {
2100
2100
  border-color: #990000;
2101
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
2102
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
2101
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
2102
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
2103
2103
  }
2104
2104
  .has-success .bootstrap-datepicker.form-control[readonly]:focus {
2105
2105
  border-color: #2b542c;
2106
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
2107
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
2106
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
2107
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
2108
2108
  }
2109
2109
  .has-warning .bootstrap-datepicker.form-control[readonly]:focus {
2110
2110
  border-color: #bb6106;
2111
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
2112
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
2111
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
2112
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
2113
2113
  }
2114
2114
  .bootstrap-datepicker.form-control[readonly]:hover {
2115
- border-color: #7BB2DD !important;
2115
+ border-color: #7dc3e8 !important;
2116
2116
  }
2117
2117
  .has-error .bootstrap-datepicker.form-control[readonly]:hover {
2118
2118
  border-color: #990000 !important;
@@ -2153,13 +2153,13 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2153
2153
  .datepicker table tr td.active.active:hover,
2154
2154
  .datepicker table tr td.active.active.disabled,
2155
2155
  .datepicker table tr td.active.active.disabled:hover {
2156
- background: #0099d3 !important;
2156
+ background: #0088ce !important;
2157
2157
  color: #fff !important;
2158
2158
  text-shadow: none;
2159
2159
  }
2160
2160
  .datepicker table tr td.day:hover,
2161
2161
  .datepicker table tr td.day.focused {
2162
- background: #d4edfa;
2162
+ background: #def3ff;
2163
2163
  }
2164
2164
  .datepicker table tr td.selected,
2165
2165
  .datepicker table tr td.selected:hover,
@@ -2174,15 +2174,15 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2174
2174
  .datepicker table tr td span.active.active:hover,
2175
2175
  .datepicker table tr td span.active.active.disabled,
2176
2176
  .datepicker table tr td span.active.active.disabled:hover {
2177
- background: #0099d3;
2177
+ background: #0088ce;
2178
2178
  text-shadow: none;
2179
2179
  }
2180
2180
  .datepicker table tr td span:hover {
2181
- background: #d4edfa;
2181
+ background: #def3ff;
2182
2182
  }
2183
2183
  .datepicker thead tr:first-child th:hover,
2184
2184
  .datepicker tfoot tr th:hover {
2185
- background: #d4edfa;
2185
+ background: #def3ff;
2186
2186
  }
2187
2187
  .input-daterange input:first-child {
2188
2188
  border-radius: 1px 0 0 1px;
@@ -2191,8 +2191,8 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2191
2191
  border-radius: 0 1px 1px 0;
2192
2192
  }
2193
2193
  .input-daterange .input-group-addon {
2194
- background-color: #eeeeee;
2195
- border-color: #BABABA;
2194
+ background-color: #f1f1f1;
2195
+ border-color: #bbb;
2196
2196
  line-height: 1.66666667;
2197
2197
  padding: 2px 6px;
2198
2198
  }
@@ -2205,7 +2205,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2205
2205
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2206
2206
  }
2207
2207
  .bootstrap-select.btn-group .btn:hover {
2208
- border-color: #7BB2DD;
2208
+ border-color: #7dc3e8;
2209
2209
  }
2210
2210
  .bootstrap-select.btn-group .btn .caret {
2211
2211
  margin-top: -4px;
@@ -2213,61 +2213,60 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2213
2213
  .bootstrap-select.btn-group .btn:focus {
2214
2214
  border-color: #66afe9;
2215
2215
  outline: 0 !important;
2216
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
2217
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
2216
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
2217
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
2218
2218
  }
2219
2219
  .has-error .bootstrap-select.btn-group .btn {
2220
2220
  border-color: #cc0000;
2221
2221
  }
2222
2222
  .has-error .bootstrap-select.btn-group .btn:focus {
2223
2223
  border-color: #990000;
2224
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
2225
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
2224
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
2225
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
2226
2226
  }
2227
2227
  .has-success .bootstrap-select.btn-group .btn {
2228
2228
  border-color: #3c763d;
2229
2229
  }
2230
2230
  .has-success .bootstrap-select.btn-group .btn:focus {
2231
2231
  border-color: #2b542c;
2232
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
2233
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
2232
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
2233
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
2234
2234
  }
2235
2235
  .has-warning .bootstrap-select.btn-group .btn {
2236
2236
  border-color: #ec7a08;
2237
2237
  }
2238
2238
  .has-warning .bootstrap-select.btn-group .btn:focus {
2239
2239
  border-color: #bb6106;
2240
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
2241
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
2240
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
2241
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
2242
2242
  }
2243
2243
  .bootstrap-select.btn-group .dropdown-menu > .active > a,
2244
2244
  .bootstrap-select.btn-group .dropdown-menu > .active > a:active {
2245
- background-color: #d4edfa !important;
2246
- border-color: #b3d3e7 !important;
2247
- color: #333333 !important;
2245
+ background-color: #def3ff !important;
2246
+ border-color: #bee1f4 !important;
2247
+ color: #363636 !important;
2248
2248
  }
2249
2249
  .bootstrap-select.btn-group .dropdown-menu > .active > a small,
2250
2250
  .bootstrap-select.btn-group .dropdown-menu > .active > a:active small {
2251
- color: #999999 !important;
2251
+ color: #9c9c9c !important;
2252
2252
  }
2253
2253
  .bootstrap-select.btn-group .dropdown-menu > .disabled > a {
2254
- color: #999999 !important;
2254
+ color: #9c9c9c !important;
2255
2255
  }
2256
2256
  .bootstrap-select.btn-group .dropdown-menu > .selected > a {
2257
- background-color: #0099d3 !important;
2258
- border-color: #0076b7 !important;
2257
+ background-color: #0088ce !important;
2258
+ border-color: #0088ce !important;
2259
2259
  color: #fff !important;
2260
2260
  }
2261
2261
  .bootstrap-select.btn-group .dropdown-menu > .selected > a small {
2262
- color: #70c8e7 !important;
2263
- color: rgba(225, 255, 255, 0.5) !important;
2262
+ color: rgba(255, 255, 255, 0.5) !important;
2264
2263
  }
2265
2264
  .bootstrap-select.btn-group .dropdown-menu .divider {
2266
- background: #e5e5e5 !important;
2265
+ background: #ededed !important;
2267
2266
  margin: 4px 1px !important;
2268
2267
  }
2269
2268
  .bootstrap-select.btn-group .dropdown-menu dt {
2270
- color: #969696;
2269
+ color: #8b8d8f;
2271
2270
  font-weight: normal;
2272
2271
  padding: 1px 10px;
2273
2272
  }
@@ -2275,24 +2274,23 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2275
2274
  padding: 1px 10px;
2276
2275
  }
2277
2276
  .bootstrap-select.btn-group .dropdown-menu li a:active small {
2278
- color: #70c8e7 !important;
2279
- color: rgba(225, 255, 255, 0.5) !important;
2277
+ color: rgba(255, 255, 255, 0.5) !important;
2280
2278
  }
2281
2279
  .bootstrap-select.btn-group .dropdown-menu li a:hover small,
2282
2280
  .bootstrap-select.btn-group .dropdown-menu li a:focus small {
2283
- color: #999999;
2281
+ color: #9c9c9c;
2284
2282
  }
2285
2283
  .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small,
2286
2284
  .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small {
2287
- color: #999999;
2285
+ color: #9c9c9c;
2288
2286
  }
2289
2287
  .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,
2290
2288
  .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
2291
- background: #fbfbfb;
2289
+ background: #fafafa;
2292
2290
  }
2293
2291
  .bootstrap-switch .bootstrap-switch-label {
2294
- background: #eeeeee;
2295
- box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
2292
+ background: #f1f1f1;
2293
+ box-shadow: 0 0 2px rgba(3, 3, 3, 0.4);
2296
2294
  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
2297
2295
  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
2298
2296
  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
@@ -2337,12 +2335,12 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2337
2335
  padding: 0 10px;
2338
2336
  }
2339
2337
  .treeview .list-group-item:hover {
2340
- background: #d4edfa !important;
2341
- border-color: #b3d3e7 !important;
2338
+ background: #def3ff !important;
2339
+ border-color: #bee1f4 !important;
2342
2340
  }
2343
2341
  .treeview .list-group-item.node-selected {
2344
- background: #0099d3 !important;
2345
- border-color: #0076b7 !important;
2342
+ background: #0088ce !important;
2343
+ border-color: #0088ce !important;
2346
2344
  color: #fff !important;
2347
2345
  }
2348
2346
  .treeview span.icon {
@@ -2360,8 +2358,8 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2360
2358
  .card-pf {
2361
2359
  background: #fff;
2362
2360
  border-top: 2px solid transparent;
2363
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.175);
2364
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.175);
2361
+ -webkit-box-shadow: 0 1px 1px rgba(3, 3, 3, 0.175);
2362
+ box-shadow: 0 1px 1px rgba(3, 3, 3, 0.175);
2365
2363
  margin: 0 -10px 20px;
2366
2364
  padding: 0 20px;
2367
2365
  }
@@ -2370,19 +2368,19 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2370
2368
  }
2371
2369
  .card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,
2372
2370
  .card-pf.card-pf-aggregate-status .card-pf-title a {
2373
- color: #333333;
2371
+ color: #363636;
2374
2372
  }
2375
2373
  .card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,
2376
2374
  .card-pf.card-pf-aggregate-status .card-pf-title a.add {
2377
- color: #0099d3;
2375
+ color: #0088ce;
2378
2376
  }
2379
2377
  .card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,
2380
2378
  .card-pf.card-pf-aggregate-status .card-pf-title a.add:hover {
2381
- color: #00618a;
2379
+ color: #00659c;
2382
2380
  }
2383
2381
  .card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,
2384
2382
  .card-pf.card-pf-aggregate-status .card-pf-title a:hover {
2385
- color: #00618a;
2383
+ color: #00659c;
2386
2384
  }
2387
2385
  .card-pf.card-pf-aggregate-status {
2388
2386
  padding: 0 10px;
@@ -2506,7 +2504,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2506
2504
  }
2507
2505
  .card-pf-aggregate-status .card-pf-title .fa,
2508
2506
  .card-pf-aggregate-status .card-pf-title .pficon {
2509
- color: #333;
2507
+ color: #292e34;
2510
2508
  font-size: 16px;
2511
2509
  margin-right: 7px;
2512
2510
  }
@@ -2595,7 +2593,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2595
2593
  stroke-width: 2px;
2596
2594
  }
2597
2595
  .c3-tooltip {
2598
- background: #434343;
2596
+ background: #393f44;
2599
2597
  -webkit-box-shadow: none;
2600
2598
  box-shadow: none;
2601
2599
  opacity: 0.9;
@@ -2622,7 +2620,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2622
2620
  }
2623
2621
  .c3-tooltip-sparkline,
2624
2622
  .donut-tooltip-pf {
2625
- background: #434343;
2623
+ background: #393f44;
2626
2624
  color: #fff;
2627
2625
  opacity: 0.9;
2628
2626
  filter: alpha(opacity=90);
@@ -2669,10 +2667,10 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2669
2667
  }
2670
2668
  .ColVis_collection {
2671
2669
  background-color: #fff;
2672
- border: 1px solid #b6b6b6;
2670
+ border: 1px solid #bbb;
2673
2671
  border-radius: 1px;
2674
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2675
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2672
+ -webkit-box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
2673
+ box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
2676
2674
  background-clip: padding-box;
2677
2675
  list-style: none;
2678
2676
  margin: -1px 0 0 0;
@@ -2696,7 +2694,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2696
2694
  z-index: 998;
2697
2695
  }
2698
2696
  .dataTables_header {
2699
- background-color: #f6f6f6;
2697
+ background-color: #f5f5f5;
2700
2698
  border: 1px solid #d1d1d1;
2701
2699
  border-bottom: none;
2702
2700
  padding: 5px;
@@ -2720,7 +2718,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2720
2718
  position: absolute;
2721
2719
  }
2722
2720
  .dataTables_header .dataTables_filter input {
2723
- border: 1px solid #bbbbbb;
2721
+ border: 1px solid #bbb;
2724
2722
  height: 24px;
2725
2723
  }
2726
2724
  @media (max-width: 767px) {
@@ -2755,7 +2753,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2755
2753
  margin: 0;
2756
2754
  }
2757
2755
  .dataTables_paginate .pagination > li > span {
2758
- border-color: #ffffff #e1e1e1 #f4f4f4;
2756
+ border-color: #fff #d1d1d1 #f5f5f5;
2759
2757
  border-width: 0 1px;
2760
2758
  font-size: 16px;
2761
2759
  font-weight: normal;
@@ -2772,8 +2770,8 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2772
2770
  }
2773
2771
  .dataTables_paginate .pagination > li.disabled > span {
2774
2772
  background: #f5f5f5;
2775
- border-left-color: #ececec;
2776
- border-right-color: #ececec;
2773
+ border-left-color: #ededed;
2774
+ border-right-color: #ededed;
2777
2775
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2778
2776
  }
2779
2777
  .dataTables_paginate .pagination-input {
@@ -2784,9 +2782,9 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2784
2782
  text-align: right;
2785
2783
  }
2786
2784
  .dataTables_paginate .pagination-input .paginate_input {
2787
- border: 1px solid #d3d3d3;
2788
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2789
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2785
+ border: 1px solid #d1d1d1;
2786
+ -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
2787
+ box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
2790
2788
  font-size: 12px;
2791
2789
  font-weight: 600;
2792
2790
  height: 19px;
@@ -2814,7 +2812,7 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
2814
2812
  z-index: 202;
2815
2813
  }
2816
2814
  .DTCR_pointer {
2817
- background-color: #0099d3;
2815
+ background-color: #0088ce;
2818
2816
  width: 1px;
2819
2817
  z-index: 201;
2820
2818
  }
@@ -2832,7 +2830,7 @@ table.datatable thead .sorting_desc_disabled {
2832
2830
  }
2833
2831
  table.datatable thead .sorting_asc,
2834
2832
  table.datatable thead .sorting_desc {
2835
- color: #0099d3 !important;
2833
+ color: #0088ce !important;
2836
2834
  position: relative;
2837
2835
  }
2838
2836
  table.datatable thead .sorting_asc:after,
@@ -2851,7 +2849,7 @@ table.datatable thead .sorting_desc:after {
2851
2849
  }
2852
2850
  table.datatable thead .sorting_asc:before,
2853
2851
  table.datatable thead .sorting_desc:before {
2854
- background: #0099d3;
2852
+ background: #0088ce;
2855
2853
  content: '';
2856
2854
  height: 2px;
2857
2855
  position: absolute;
@@ -2869,7 +2867,7 @@ table.datatable th:active {
2869
2867
  .footer-pf-alt,
2870
2868
  .footer-pf {
2871
2869
  background-color: #030303;
2872
- color: #999999;
2870
+ color: #9c9c9c;
2873
2871
  font-size: 11px;
2874
2872
  line-height: 17px;
2875
2873
  padding-left: 25px;
@@ -3128,7 +3126,7 @@ table.datatable th:active {
3128
3126
  padding: 6px 15px;
3129
3127
  }
3130
3128
  .infotip .footer a:hover {
3131
- color: #0099d3;
3129
+ color: #0088ce;
3132
3130
  }
3133
3131
  .infotip .arrow,
3134
3132
  .infotip .arrow:after {
@@ -3150,7 +3148,7 @@ table.datatable th:active {
3150
3148
  .infotip.bottom-left .arrow,
3151
3149
  .infotip.bottom-right .arrow {
3152
3150
  border-bottom-color: #999999;
3153
- border-bottom-color: #bbbbbb;
3151
+ border-bottom-color: #bbb;
3154
3152
  border-top-width: 0;
3155
3153
  left: 50%;
3156
3154
  margin-left: -11px;
@@ -3174,7 +3172,7 @@ table.datatable th:active {
3174
3172
  .infotip.top .arrow {
3175
3173
  border-bottom-width: 0;
3176
3174
  border-top-color: #999999;
3177
- border-top-color: #bbbbbb;
3175
+ border-top-color: #bbb;
3178
3176
  bottom: -11px;
3179
3177
  left: 50%;
3180
3178
  margin-left: -11px;
@@ -3189,7 +3187,7 @@ table.datatable th:active {
3189
3187
  .infotip.right .arrow {
3190
3188
  border-left-width: 0;
3191
3189
  border-right-color: #999999;
3192
- border-right-color: #bbbbbb;
3190
+ border-right-color: #bbb;
3193
3191
  left: -11px;
3194
3192
  margin-top: -11px;
3195
3193
  top: 50%;
@@ -3203,7 +3201,7 @@ table.datatable th:active {
3203
3201
  }
3204
3202
  .infotip.left .arrow {
3205
3203
  border-left-color: #999999;
3206
- border-left-color: #bbbbbb;
3204
+ border-left-color: #bbb;
3207
3205
  border-right-width: 0;
3208
3206
  margin-top: -11px;
3209
3207
  right: -11px;
@@ -3512,14 +3510,14 @@ table.datatable th:active {
3512
3510
  }
3513
3511
  .list-view-pf-left .pficon.list-view-pf-icon-md,
3514
3512
  .list-view-pf-left .fa.list-view-pf-icon-md {
3515
- background-color: #f2f2f2;
3513
+ background-color: #f5f5f5;
3516
3514
  height: 50px;
3517
3515
  line-height: 50px;
3518
3516
  width: 50px;
3519
3517
  }
3520
3518
  .list-view-pf-left .pficon.list-view-pf-icon-danger,
3521
3519
  .list-view-pf-left .fa.list-view-pf-icon-danger {
3522
- background-color: #fbe7e7;
3520
+ background-color: #ffe6e6;
3523
3521
  color: #cc0000;
3524
3522
  }
3525
3523
  .list-view-pf-left .pficon.list-view-pf-icon-info,
@@ -3528,7 +3526,7 @@ table.datatable th:active {
3528
3526
  }
3529
3527
  .list-view-pf-left .pficon.list-view-pf-icon-lg,
3530
3528
  .list-view-pf-left .fa.list-view-pf-icon-lg {
3531
- background-color: #f2f2f2;
3529
+ background-color: #f5f5f5;
3532
3530
  height: 60px;
3533
3531
  line-height: 60px;
3534
3532
  width: 60px;
@@ -3543,12 +3541,12 @@ table.datatable th:active {
3543
3541
  }
3544
3542
  .list-view-pf-left .pficon.list-view-pf-icon-success,
3545
3543
  .list-view-pf-left .fa.list-view-pf-icon-success {
3546
- background-color: #e8f9e7;
3544
+ background-color: #e9f4e9;
3547
3545
  color: #3f9c35;
3548
3546
  }
3549
3547
  .list-view-pf-left .pficon.list-view-pf-icon-warning,
3550
3548
  .list-view-pf-left .fa.list-view-pf-icon-warning {
3551
- background-color: #fdf4ea;
3549
+ background-color: #fdf2e5;
3552
3550
  color: #ec7a08;
3553
3551
  }
3554
3552
  .list-view-pf-main-info {
@@ -3613,7 +3611,7 @@ table.datatable th:active {
3613
3611
  }
3614
3612
  }
3615
3613
  .login-pf body {
3616
- background: #080808 url("../img/bg-login.jpg") repeat-x 50% 0;
3614
+ background: #030303 url("../img/bg-login.jpg") repeat-x 50% 0;
3617
3615
  background-size: auto;
3618
3616
  }
3619
3617
  @media (min-width: 768px) {
@@ -3622,7 +3620,6 @@ table.datatable th:active {
3622
3620
  }
3623
3621
  }
3624
3622
  .login-pf .container {
3625
- background-color: #181818;
3626
3623
  background-color: rgba(255, 255, 255, 0.055);
3627
3624
  clear: right;
3628
3625
  color: #fff;
@@ -3643,13 +3640,13 @@ table.datatable th:active {
3643
3640
  color: #fff;
3644
3641
  }
3645
3642
  .login-pf .container .details p:first-child {
3646
- border-top: 1px solid #474747;
3643
+ border-top: 1px solid rgba(255, 255, 255, 0.3);
3647
3644
  padding-top: 25px;
3648
3645
  margin-top: 25px;
3649
3646
  }
3650
3647
  @media (min-width: 768px) {
3651
3648
  .login-pf .container .details {
3652
- border-left: 1px solid #474747;
3649
+ border-left: 1px solid rgba(255, 255, 255, 0.3);
3653
3650
  padding-left: 40px;
3654
3651
  }
3655
3652
  .login-pf .container .details p:first-child {
@@ -3685,12 +3682,12 @@ table.datatable th:active {
3685
3682
  background: #030303;
3686
3683
  border: 0;
3687
3684
  border-radius: 0;
3688
- border-top: 3px solid #199dde;
3685
+ border-top: 3px solid #39a5dc;
3689
3686
  margin-bottom: 0;
3690
3687
  min-height: 0;
3691
3688
  }
3692
3689
  .navbar-pf .navbar-brand {
3693
- color: #f1f1f1;
3690
+ color: #f5f5f5;
3694
3691
  height: auto;
3695
3692
  padding: 12px 0;
3696
3693
  margin: 0 0 0 20px;
@@ -3715,23 +3712,23 @@ table.datatable th:active {
3715
3712
  .navbar-pf .navbar-nav > .active > a:hover,
3716
3713
  .navbar-pf .navbar-nav > .active > a:focus {
3717
3714
  background-color: #232323;
3718
- color: #f1f1f1;
3715
+ color: #f5f5f5;
3719
3716
  }
3720
3717
  .navbar-pf .navbar-nav > li > a {
3721
- color: #cfcfcf;
3718
+ color: #d1d1d1;
3722
3719
  line-height: 1;
3723
3720
  padding: 10px 20px;
3724
3721
  text-shadow: none;
3725
3722
  }
3726
3723
  .navbar-pf .navbar-nav > li > a:hover,
3727
3724
  .navbar-pf .navbar-nav > li > a:focus {
3728
- color: #f1f1f1;
3725
+ color: #f5f5f5;
3729
3726
  }
3730
3727
  .navbar-pf .navbar-nav > .open > a,
3731
3728
  .navbar-pf .navbar-nav > .open > a:hover,
3732
3729
  .navbar-pf .navbar-nav > .open > a:focus {
3733
3730
  background-color: #232323;
3734
- color: #f1f1f1;
3731
+ color: #f5f5f5;
3735
3732
  }
3736
3733
  @media (max-width: 767px) {
3737
3734
  .navbar-pf .navbar-nav .active .dropdown-menu,
@@ -3761,21 +3758,21 @@ table.datatable th:active {
3761
3758
  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open > a:focus,
3762
3759
  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open > a:focus {
3763
3760
  background-color: #1f1f1f !important;
3764
- color: #f1f1f1;
3761
+ color: #f5f5f5;
3765
3762
  }
3766
3763
  .navbar-pf .navbar-nav .active .dropdown-menu > li > a,
3767
3764
  .navbar-pf .navbar-nav .active .navbar-persistent > li > a,
3768
3765
  .navbar-pf .navbar-nav .open .dropdown-menu > li > a {
3769
3766
  background-color: transparent;
3770
3767
  border: 0;
3771
- color: #cfcfcf;
3768
+ color: #d1d1d1;
3772
3769
  outline: none;
3773
3770
  padding-left: 30px;
3774
3771
  }
3775
3772
  .navbar-pf .navbar-nav .active .dropdown-menu > li > a:hover,
3776
3773
  .navbar-pf .navbar-nav .active .navbar-persistent > li > a:hover,
3777
3774
  .navbar-pf .navbar-nav .open .dropdown-menu > li > a:hover {
3778
- color: #f1f1f1;
3775
+ color: #f5f5f5;
3779
3776
  }
3780
3777
  .navbar-pf .navbar-nav .active .dropdown-menu .divider,
3781
3778
  .navbar-pf .navbar-nav .active .navbar-persistent .divider,
@@ -3792,7 +3789,7 @@ table.datatable th:active {
3792
3789
  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,
3793
3790
  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,
3794
3791
  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle {
3795
- color: #f1f1f1;
3792
+ color: #f5f5f5;
3796
3793
  }
3797
3794
  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,
3798
3795
  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,
@@ -3857,42 +3854,40 @@ table.datatable th:active {
3857
3854
  }
3858
3855
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a,
3859
3856
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a:active {
3860
- background-color: #d4edfa !important;
3861
- border-color: #b3d3e7 !important;
3862
- color: #333333 !important;
3857
+ background-color: #def3ff !important;
3858
+ border-color: #bee1f4 !important;
3859
+ color: #363636 !important;
3863
3860
  }
3864
3861
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a small,
3865
3862
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a:active small {
3866
- color: #999999 !important;
3863
+ color: #9c9c9c !important;
3867
3864
  }
3868
3865
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .disabled > a {
3869
- color: #999999 !important;
3866
+ color: #9c9c9c !important;
3870
3867
  }
3871
3868
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a,
3872
3869
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a:active {
3873
- background-color: #0099d3 !important;
3874
- border-color: #0076b7 !important;
3870
+ background-color: #0088ce !important;
3871
+ border-color: #0088ce !important;
3875
3872
  color: #fff !important;
3876
3873
  }
3877
3874
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a small,
3878
3875
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a:active small {
3879
- color: #70c8e7 !important;
3880
- color: rgba(225, 255, 255, 0.5) !important;
3876
+ color: rgba(255, 255, 255, 0.5) !important;
3881
3877
  }
3882
3878
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li > a.opt {
3883
3879
  border-bottom: 1px solid transparent;
3884
3880
  border-top: 1px solid transparent;
3885
- color: #333333;
3881
+ color: #363636;
3886
3882
  padding-left: 10px;
3887
3883
  padding-right: 10px;
3888
3884
  }
3889
3885
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:active small {
3890
- color: #70c8e7 !important;
3891
- color: rgba(225, 255, 255, 0.5) !important;
3886
+ color: rgba(255, 255, 255, 0.5) !important;
3892
3887
  }
3893
3888
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:hover small,
3894
3889
  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:focus small {
3895
- color: #999999;
3890
+ color: #9c9c9c;
3896
3891
  }
3897
3892
  .navbar-pf .navbar-nav .context-bootstrap-select > .open > .dropdown-menu {
3898
3893
  padding-bottom: 5px;
@@ -3944,8 +3939,8 @@ table.datatable th:active {
3944
3939
  }
3945
3940
  .navbar-pf .navbar-toggle:hover .icon-bar,
3946
3941
  .navbar-pf .navbar-toggle:focus .icon-bar {
3947
- -webkit-box-shadow: 0 0 3px #ffffff;
3948
- box-shadow: 0 0 3px #ffffff;
3942
+ -webkit-box-shadow: 0 0 3px #fff;
3943
+ box-shadow: 0 0 3px #fff;
3949
3944
  }
3950
3945
  .navbar-pf .navbar-toggle .icon-bar {
3951
3946
  background-color: #fff;
@@ -4005,8 +4000,8 @@ table.datatable th:active {
4005
4000
  position: absolute;
4006
4001
  }
4007
4002
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent {
4008
- background: #f6f6f6;
4009
- border-bottom: 1px solid #cecdcd;
4003
+ background: #f5f5f5;
4004
+ border-bottom: 1px solid #d1d1d1;
4010
4005
  padding: 0;
4011
4006
  width: 100%;
4012
4007
  }
@@ -4015,7 +4010,7 @@ table.datatable th:active {
4015
4010
  }
4016
4011
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:before,
4017
4012
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:hover:before {
4018
- background: #0099d3;
4013
+ background: #0088ce;
4019
4014
  bottom: -1px;
4020
4015
  content: '';
4021
4016
  display: block;
@@ -4027,10 +4022,10 @@ table.datatable th:active {
4027
4022
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active > a,
4028
4023
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active > a:hover,
4029
4024
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:hover > a {
4030
- color: #0099d3 !important;
4025
+ color: #0088ce !important;
4031
4026
  }
4032
4027
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active .active > a {
4033
- color: #f1f1f1;
4028
+ color: #f5f5f5;
4034
4029
  }
4035
4030
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu:hover > .dropdown-menu {
4036
4031
  display: none;
@@ -4042,10 +4037,10 @@ table.datatable th:active {
4042
4037
  top: 100%;
4043
4038
  }
4044
4039
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-toggle {
4045
- color: #222222;
4040
+ color: #252525;
4046
4041
  }
4047
4042
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-toggle:after {
4048
- border-top-color: #222222;
4043
+ border-top-color: #252525;
4049
4044
  }
4050
4045
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu > .dropdown-toggle {
4051
4046
  padding-right: 35px !important;
@@ -4057,7 +4052,7 @@ table.datatable th:active {
4057
4052
  }
4058
4053
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover:before,
4059
4054
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open:before {
4060
- background: #aaa;
4055
+ background: #bbb;
4061
4056
  bottom: -1px;
4062
4057
  content: '';
4063
4058
  display: block;
@@ -4068,11 +4063,11 @@ table.datatable th:active {
4068
4063
  }
4069
4064
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover > a,
4070
4065
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open > a {
4071
- color: #222222;
4066
+ color: #252525;
4072
4067
  }
4073
4068
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover > a:after,
4074
4069
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open > a:after {
4075
- border-top-color: #222222;
4070
+ border-top-color: #252525;
4076
4071
  }
4077
4072
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a {
4078
4073
  background-color: transparent;
@@ -4090,7 +4085,7 @@ table.datatable th:active {
4090
4085
  top: 9px;
4091
4086
  }
4092
4087
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a:hover {
4093
- color: #222222;
4088
+ color: #252525;
4094
4089
  }
4095
4090
  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li a {
4096
4091
  color: #4d5258;
@@ -4104,7 +4099,7 @@ table.datatable th:active {
4104
4099
  .navbar-pf .navbar-primary > li > a:hover {
4105
4100
  background-color: #1d1d1d;
4106
4101
  border-top-color: #5c5c5c;
4107
- color: #cfcfcf;
4102
+ color: #d1d1d1;
4108
4103
  background-image: -webkit-linear-gradient(top, #363636 0%, #1d1d1d 100%);
4109
4104
  background-image: -o-linear-gradient(top, #363636 0%, #1d1d1d 100%);
4110
4105
  background-image: linear-gradient(to bottom, #363636 0%, #1d1d1d 100%);
@@ -4122,7 +4117,7 @@ table.datatable th:active {
4122
4117
  border-top-color: #696969;
4123
4118
  -webkit-box-shadow: none;
4124
4119
  box-shadow: none;
4125
- color: #f1f1f1;
4120
+ color: #f5f5f5;
4126
4121
  background-image: -webkit-linear-gradient(top, #434343 0%, #303030 100%);
4127
4122
  background-image: -o-linear-gradient(top, #434343 0%, #303030 100%);
4128
4123
  background-image: linear-gradient(to bottom, #434343 0%, #303030 100%);
@@ -4186,11 +4181,11 @@ table.datatable th:active {
4186
4181
  .navbar-pf .navbar-utility > .open > a:hover,
4187
4182
  .navbar-pf .navbar-utility > .open > a:focus {
4188
4183
  background: #363636;
4189
- color: #cfcfcf;
4184
+ color: #d1d1d1;
4190
4185
  }
4191
4186
  .navbar-pf .navbar-utility > li > a {
4192
4187
  border-left: 1px solid #2b2b2b;
4193
- color: #cfcfcf !important;
4188
+ color: #d1d1d1 !important;
4194
4189
  padding: 7px 10px;
4195
4190
  }
4196
4191
  .navbar-pf .navbar-utility > li > a:hover {
@@ -4199,7 +4194,7 @@ table.datatable th:active {
4199
4194
  }
4200
4195
  .navbar-pf .navbar-utility > li.open > a {
4201
4196
  border-left-color: #444444;
4202
- color: #f1f1f1 !important;
4197
+ color: #f5f5f5 !important;
4203
4198
  }
4204
4199
  .navbar-pf .navbar-utility li.dropdown > .dropdown-toggle {
4205
4200
  padding-left: 26px;
@@ -4244,7 +4239,7 @@ table.datatable th:active {
4244
4239
  background-size: auto 100%;
4245
4240
  border: none;
4246
4241
  border-radius: 0;
4247
- border-top: 2px solid #199dde;
4242
+ border-top: 2px solid #39a5dc;
4248
4243
  margin-bottom: 0;
4249
4244
  }
4250
4245
  .navbar-pf-alt .infotip.bottom-right .arrow {
@@ -4295,7 +4290,7 @@ table.datatable th:active {
4295
4290
  .navbar-pf-alt .nav .nav-item-iconic .caret,
4296
4291
  .navbar-pf-alt .nav .nav-item-iconic .fa,
4297
4292
  .navbar-pf-alt .nav .nav-item-iconic .pf-icon {
4298
- color: #cfcfcf;
4293
+ color: #d1d1d1;
4299
4294
  font-size: 16px;
4300
4295
  }
4301
4296
  .navbar-pf-alt .nav .nav-item-iconic .caret {
@@ -4355,13 +4350,13 @@ table.datatable th:active {
4355
4350
  margin-left: 0;
4356
4351
  }
4357
4352
  .navbar-pf-alt .navbar-toggle .icon-bar {
4358
- background: #cfcfcf;
4353
+ background: #d1d1d1;
4359
4354
  }
4360
4355
  .navbar-pf-vertical {
4361
4356
  background-color: #1d1d1d;
4362
4357
  border: none;
4363
4358
  border-radius: 0;
4364
- border-top: 2px solid #199dde;
4359
+ border-top: 2px solid #39a5dc;
4365
4360
  margin-bottom: 0;
4366
4361
  }
4367
4362
  .navbar-pf-vertical .infotip.bottom-right .arrow {
@@ -4412,7 +4407,7 @@ table.datatable th:active {
4412
4407
  .navbar-pf-vertical .nav .nav-item-iconic .caret,
4413
4408
  .navbar-pf-vertical .nav .nav-item-iconic .fa,
4414
4409
  .navbar-pf-vertical .nav .nav-item-iconic .pf-icon {
4415
- color: #cfcfcf;
4410
+ color: #d1d1d1;
4416
4411
  font-size: 16px;
4417
4412
  }
4418
4413
  .navbar-pf-vertical .nav .nav-item-iconic .caret {
@@ -4472,7 +4467,7 @@ table.datatable th:active {
4472
4467
  margin-left: 0;
4473
4468
  }
4474
4469
  .navbar-pf-vertical .navbar-toggle .icon-bar {
4475
- background: #cfcfcf;
4470
+ background: #d1d1d1;
4476
4471
  }
4477
4472
  .layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {
4478
4473
  transition: all 0.2s cubic-bezier(0.35, 0, 0.25, 1);
@@ -4494,7 +4489,7 @@ table.datatable th:active {
4494
4489
  box-sizing: content-box;
4495
4490
  }
4496
4491
  .layout-pf-alt-fixed .nav-pf-vertical-alt {
4497
- border-right: 1px solid #d0d0d0;
4492
+ border-right: 1px solid #d1d1d1;
4498
4493
  bottom: 0;
4499
4494
  overflow-x: hidden;
4500
4495
  overflow-y: auto;
@@ -4519,7 +4514,7 @@ table.datatable th:active {
4519
4514
  display: none;
4520
4515
  }
4521
4516
  .layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav {
4522
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
4517
+ box-shadow: 0 0 3px rgba(3, 3, 3, 0.15);
4523
4518
  display: block !important;
4524
4519
  }
4525
4520
  .layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt {
@@ -4533,7 +4528,7 @@ table.datatable th:active {
4533
4528
  padding: 0;
4534
4529
  }
4535
4530
  .nav-pf-vertical-alt .list-group-item a {
4536
- color: #333333;
4531
+ color: #363636;
4537
4532
  display: block;
4538
4533
  font-size: 14px;
4539
4534
  height: 63px;
@@ -4542,7 +4537,7 @@ table.datatable th:active {
4542
4537
  white-space: nowrap;
4543
4538
  }
4544
4539
  .nav-pf-vertical-alt .list-group-item a:focus {
4545
- color: #333333;
4540
+ color: #363636;
4546
4541
  text-decoration: none;
4547
4542
  }
4548
4543
  .nav-pf-vertical-alt .list-group-item a:hover {
@@ -4551,7 +4546,7 @@ table.datatable th:active {
4551
4546
  }
4552
4547
  .nav-pf-vertical-alt .list-group-item.active {
4553
4548
  background-color: #fff;
4554
- border-color: #f2f2f2;
4549
+ border-color: #f5f5f5;
4555
4550
  }
4556
4551
  .nav-pf-vertical-alt .list-group-item.active:before {
4557
4552
  background: #39a5dc;
@@ -4567,7 +4562,7 @@ table.datatable th:active {
4567
4562
  color: #39a5dc;
4568
4563
  }
4569
4564
  .nav-pf-vertical-alt .list-group-item .badge {
4570
- background: #333333;
4565
+ background: #363636;
4571
4566
  border: 1px solid #fff;
4572
4567
  border-radius: 3px;
4573
4568
  color: #fff;
@@ -4607,6 +4602,119 @@ table.datatable th:active {
4607
4602
  margin-left: -20px;
4608
4603
  margin-right: -20px;
4609
4604
  }
4605
+ .drawer-pf {
4606
+ background-color: #fafafa;
4607
+ border: 1px solid #d1d1d1;
4608
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4609
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
4610
+ overflow-y: auto;
4611
+ position: absolute;
4612
+ right: 0;
4613
+ width: 320px;
4614
+ }
4615
+ .drawer-pf .panel {
4616
+ border-bottom: none;
4617
+ border-left: none;
4618
+ border-right: none;
4619
+ }
4620
+ .drawer-pf .panel-group .panel-heading + .panel-collapse .panel-body {
4621
+ border-top: none;
4622
+ padding: 0;
4623
+ }
4624
+ .drawer-pf .panel-counter {
4625
+ display: block;
4626
+ font-style: italic;
4627
+ line-height: 1.2;
4628
+ padding-left: 18px;
4629
+ padding-top: 5px;
4630
+ }
4631
+ .drawer-pf .panel-heading {
4632
+ border-bottom: 1px solid #d1d1d1;
4633
+ }
4634
+ .drawer-pf .panel-group {
4635
+ bottom: 52px;
4636
+ margin-bottom: 0;
4637
+ position: absolute;
4638
+ top: 25px;
4639
+ width: 100%;
4640
+ }
4641
+ .drawer-pf .panel-title a {
4642
+ display: block;
4643
+ }
4644
+ .drawer-pf-action {
4645
+ border-top: 1px solid #d1d1d1;
4646
+ bottom: 21px;
4647
+ background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
4648
+ background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
4649
+ background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
4650
+ background-repeat: repeat-x;
4651
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
4652
+ position: fixed;
4653
+ }
4654
+ .drawer-pf-action .btn {
4655
+ padding: 15px 0;
4656
+ width: 318px;
4657
+ }
4658
+ .drawer-pf-loading {
4659
+ color: #4d5258;
4660
+ font-size: 14px;
4661
+ padding: 20px 15px;
4662
+ }
4663
+ .drawer-pf-notification {
4664
+ border-bottom: 1px solid #d1d1d1;
4665
+ padding: 15px;
4666
+ }
4667
+ .drawer-pf-notification .date {
4668
+ border-right: 1px solid #aaa;
4669
+ display: inline-block;
4670
+ line-height: 1;
4671
+ margin-right: 5px;
4672
+ padding-right: 9px;
4673
+ }
4674
+ .drawer-pf-notification .pficon {
4675
+ font-size: 14px;
4676
+ margin-top: 3px;
4677
+ }
4678
+ .drawer-pf-notification:hover {
4679
+ background-color: #def3ff;
4680
+ }
4681
+ .drawer-pf-notification.unread .drawer-pf-notification-message {
4682
+ font-weight: bold;
4683
+ }
4684
+ .drawer-pf-notification-info,
4685
+ .drawer-pf-notification-message {
4686
+ display: block;
4687
+ padding-left: 27px;
4688
+ padding-right: 19px;
4689
+ }
4690
+ .drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {
4691
+ background-color: #fff;
4692
+ }
4693
+ .drawer-pf-title {
4694
+ background-color: #fafafa;
4695
+ border-bottom: 1px solid #d1d1d1;
4696
+ position: fixed;
4697
+ width: 318px;
4698
+ }
4699
+ .drawer-pf-title h3 {
4700
+ font-size: 12px;
4701
+ margin: 0;
4702
+ padding: 6px 15px;
4703
+ }
4704
+ /* Exclusive styles to work with Vertical Navigation */
4705
+ .navbar-pf-vertical .drawer-pf {
4706
+ height: calc(100vh - 80px);
4707
+ top: 58px;
4708
+ }
4709
+ .navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon {
4710
+ border-left: 1px solid #2b2b2b;
4711
+ border-right: 1px solid #2b2b2b;
4712
+ padding-left: 15px;
4713
+ padding-right: 15px;
4714
+ }
4715
+ .navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon {
4716
+ background-color: #232323;
4717
+ }
4610
4718
  .search-pf.has-button {
4611
4719
  border-collapse: separate;
4612
4720
  display: table;
@@ -4666,7 +4774,7 @@ table.datatable th:active {
4666
4774
  position: relative;
4667
4775
  }
4668
4776
  .sidebar-header {
4669
- border-bottom: 1px solid #e9e9e9;
4777
+ border-bottom: 1px solid #ececec;
4670
4778
  padding-bottom: 11px;
4671
4779
  margin: 50px 0 20px;
4672
4780
  }
@@ -4679,14 +4787,14 @@ table.datatable th:active {
4679
4787
  }
4680
4788
  .sidebar-pf .sidebar-header + .list-group .list-group-item {
4681
4789
  background: transparent;
4682
- border-color: #e9e9e9;
4790
+ border-color: #ececec;
4683
4791
  padding-left: 0;
4684
4792
  }
4685
4793
  .sidebar-pf .sidebar-header + .list-group .list-group-item-heading {
4686
4794
  font-size: 12px;
4687
4795
  }
4688
4796
  .sidebar-pf .nav-category h2 {
4689
- color: #999999;
4797
+ color: #9c9c9c;
4690
4798
  font-size: 12px;
4691
4799
  font-weight: 400;
4692
4800
  line-height: 21px;
@@ -4697,8 +4805,8 @@ table.datatable th:active {
4697
4805
  margin-top: 10px;
4698
4806
  }
4699
4807
  .sidebar-pf .nav-pills > li.active > a {
4700
- background: #0099d3 !important;
4701
- border-color: #0076b7 !important;
4808
+ background: #0088ce !important;
4809
+ border-color: #0088ce !important;
4702
4810
  color: #fff;
4703
4811
  }
4704
4812
  @media (min-width: 768px) {
@@ -4718,14 +4826,14 @@ table.datatable th:active {
4718
4826
  border-bottom: 1px solid transparent;
4719
4827
  border-radius: 0;
4720
4828
  border-top: 1px solid transparent;
4721
- color: #333333;
4829
+ color: #363636;
4722
4830
  font-size: 13px;
4723
4831
  line-height: 21px;
4724
4832
  padding: 1px 20px;
4725
4833
  }
4726
4834
  .sidebar-pf .nav-pills > li > a:hover {
4727
- background: #d4edfa;
4728
- border-color: #b3d3e7;
4835
+ background: #def3ff;
4836
+ border-color: #bee1f4;
4729
4837
  }
4730
4838
  .sidebar-pf .nav-pills > li > a .fa {
4731
4839
  color: #6a7079;
@@ -4814,10 +4922,10 @@ table.datatable th:active {
4814
4922
  background: #fafafa;
4815
4923
  }
4816
4924
  .sidebar-pf.sidebar-pf-left {
4817
- border-right: 1px solid #d0d0d0;
4925
+ border-right: 1px solid #d1d1d1;
4818
4926
  }
4819
4927
  .sidebar-pf.sidebar-pf-right {
4820
- border-left: 1px solid #d0d0d0;
4928
+ border-left: 1px solid #d1d1d1;
4821
4929
  }
4822
4930
  .sidebar-pf > .nav-category,
4823
4931
  .sidebar-pf > .nav-stacked {
@@ -4843,11 +4951,11 @@ table.datatable th:active {
4843
4951
  .spinner {
4844
4952
  -webkit-animation: rotation .6s infinite linear;
4845
4953
  animation: rotation .6s infinite linear;
4846
- border-bottom: 4px solid rgba(0, 0, 0, 0.25);
4847
- border-left: 4px solid rgba(0, 0, 0, 0.25);
4848
- border-right: 4px solid rgba(0, 0, 0, 0.25);
4954
+ border-bottom: 4px solid rgba(3, 3, 3, 0.25);
4955
+ border-left: 4px solid rgba(3, 3, 3, 0.25);
4956
+ border-right: 4px solid rgba(3, 3, 3, 0.25);
4849
4957
  border-radius: 100%;
4850
- border-top: 4px solid rgba(0, 0, 0, 0.75);
4958
+ border-top: 4px solid rgba(3, 3, 3, 0.75);
4851
4959
  height: 24px;
4852
4960
  margin: 0 auto;
4853
4961
  position: relative;
@@ -4919,12 +5027,12 @@ table.datatable th:active {
4919
5027
  .prettyprint .opn,
4920
5028
  .prettyprint .pln,
4921
5029
  .prettyprint .pun {
4922
- color: #333333;
5030
+ color: #363636;
4923
5031
  }
4924
5032
  .prettyprint .lit,
4925
5033
  .prettyprint .tag,
4926
5034
  .prettyprint .typ {
4927
- color: #006e9c;
5035
+ color: #00659c;
4928
5036
  }
4929
5037
  .prettyprint ol.linenums {
4930
5038
  margin-bottom: 0;
@@ -4932,13 +5040,13 @@ table.datatable th:active {
4932
5040
  .bootstrap-datetimepicker-widget a[data-action] {
4933
5041
  border: 0;
4934
5042
  box-shadow: none;
4935
- color: #333333;
5043
+ color: #363636;
4936
5044
  display: block;
4937
5045
  padding-bottom: 4px;
4938
5046
  padding-top: 4px;
4939
5047
  }
4940
5048
  .bootstrap-datetimepicker-widget a[data-action]:hover {
4941
- color: #0099d3;
5049
+ color: #0088ce;
4942
5050
  }
4943
5051
  .bootstrap-datetimepicker-widget.dropdown-menu {
4944
5052
  left: 0!important;
@@ -4965,7 +5073,7 @@ table.datatable th:active {
4965
5073
  }
4966
5074
  .timepicker-hours table td:hover,
4967
5075
  .timepicker-minutes table td:hover {
4968
- color: #0099d3;
5076
+ color: #0088ce;
4969
5077
  }
4970
5078
  .timepicker-hours .table-condensed > tbody > tr > td,
4971
5079
  .timepicker-minutes .table-condensed > tbody > tr > td {
@@ -4998,8 +5106,8 @@ table.datatable th:active {
4998
5106
  display: none;
4999
5107
  }
5000
5108
  .timepicker-picker tr:nth-child(2) td {
5001
- background-color: #d4edfa;
5002
- border-color: #b3d3e7;
5109
+ background-color: #def3ff;
5110
+ border-color: #bee1f4;
5003
5111
  border-style: solid;
5004
5112
  border-width: 1px;
5005
5113
  border-left: 0;
@@ -5007,7 +5115,7 @@ table.datatable th:active {
5007
5115
  }
5008
5116
  .toast-pf {
5009
5117
  background-color: rgba(255, 255, 255, 0.94);
5010
- border-color: #b1b1b1;
5118
+ border-color: #bbb;
5011
5119
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
5012
5120
  padding-left: 68px;
5013
5121
  /* Medium devices (desktops, 992px and up) */
@@ -5030,7 +5138,7 @@ table.datatable th:active {
5030
5138
  .toast-pf > .pficon {
5031
5139
  background-color: #4d5258;
5032
5140
  bottom: -1px;
5033
- box-shadow: 2px 0 5px -2px rgba(0, 0, 0, 0.2);
5141
+ box-shadow: 2px 0 5px -2px rgba(3, 3, 3, 0.2);
5034
5142
  left: -1px;
5035
5143
  padding-top: 10px;
5036
5144
  text-align: center;
@@ -5068,8 +5176,8 @@ table.datatable th:active {
5068
5176
  }
5069
5177
  .toolbar-pf {
5070
5178
  background: #fff;
5071
- border-bottom: 1px solid #d0d0d0;
5072
- box-shadow: 0 1px 0px rgba(0, 0, 0, 0.045);
5179
+ border-bottom: 1px solid #d1d1d1;
5180
+ box-shadow: 0 1px 0px rgba(3, 3, 3, 0.045);
5073
5181
  padding-top: 10px;
5074
5182
  }
5075
5183
  .toolbar-pf .form-group {
@@ -5077,7 +5185,7 @@ table.datatable th:active {
5077
5185
  }
5078
5186
  @media (min-width: 768px) {
5079
5187
  .toolbar-pf .form-group {
5080
- border-right: 1px solid #d0d0d0;
5188
+ border-right: 1px solid #d1d1d1;
5081
5189
  display: table-cell;
5082
5190
  float: left;
5083
5191
  margin-bottom: 0;
@@ -5101,7 +5209,7 @@ table.datatable th:active {
5101
5209
  margin-left: 10px;
5102
5210
  }
5103
5211
  .toolbar-pf .form-group .btn-link {
5104
- color: #222222;
5212
+ color: #252525;
5105
5213
  font-size: 16px;
5106
5214
  line-height: 1;
5107
5215
  padding: 4px 0;
@@ -5109,7 +5217,7 @@ table.datatable th:active {
5109
5217
  .toolbar-pf .form-group .btn-link:active,
5110
5218
  .toolbar-pf .form-group .btn-link:focus,
5111
5219
  .toolbar-pf .form-group .btn-link:hover {
5112
- color: #0099d3;
5220
+ color: #0088ce;
5113
5221
  }
5114
5222
  .toolbar-pf-actions {
5115
5223
  display: table;
@@ -5132,20 +5240,20 @@ table.datatable th:active {
5132
5240
  }
5133
5241
  }
5134
5242
  .toolbar-pf-actions .toolbar-pf-view-selector .active a {
5135
- color: #0099d3;
5243
+ color: #0088ce;
5136
5244
  cursor: default;
5137
5245
  }
5138
5246
  .toolbar-pf-actions .toolbar-pf-view-selector a {
5139
- color: #222222;
5247
+ color: #252525;
5140
5248
  }
5141
5249
  .toolbar-pf-actions .toolbar-pf-view-selector a:hover {
5142
- color: #0099d3;
5250
+ color: #0088ce;
5143
5251
  }
5144
5252
  .toolbar-pf-actions .toolbar-pf-view-selector .list-inline {
5145
5253
  margin-bottom: 0;
5146
5254
  }
5147
5255
  .toolbar-pf-results {
5148
- border-top: 1px solid #d0d0d0;
5256
+ border-top: 1px solid #d1d1d1;
5149
5257
  margin-top: 10px;
5150
5258
  }
5151
5259
  .toolbar-pf-results h5,
@@ -5197,7 +5305,7 @@ table.datatable th:active {
5197
5305
  }
5198
5306
  .nav-pf-vertical {
5199
5307
  background: #292e34;
5200
- border-right: 1px solid #262626;
5308
+ border-right: 1px solid #292e34;
5201
5309
  bottom: 0;
5202
5310
  overflow-x: hidden;
5203
5311
  overflow-y: auto;
@@ -5305,7 +5413,7 @@ table.datatable th:active {
5305
5413
  width: 250px;
5306
5414
  }
5307
5415
  .nav-pf-vertical.hidden.show-mobile-nav {
5308
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
5416
+ box-shadow: 0 0 3px rgba(3, 3, 3, 0.15);
5309
5417
  display: block !important;
5310
5418
  }
5311
5419
  .nav-pf-vertical.hidden > .list-group > .list-group-item.persistent-secondary:hover > a {
@@ -5369,12 +5477,12 @@ table.datatable th:active {
5369
5477
  }
5370
5478
  .nav-pf-vertical > .list-group > .list-group-item {
5371
5479
  background-color: transparent;
5372
- border-color: #000000;
5480
+ border-color: #030303;
5373
5481
  padding: 0;
5374
5482
  }
5375
5483
  .nav-pf-vertical > .list-group > .list-group-item > a {
5376
5484
  background-color: transparent;
5377
- color: #dbdada;
5485
+ color: #d1d1d1;
5378
5486
  display: block;
5379
5487
  font-size: 14px;
5380
5488
  font-weight: 400;
@@ -5412,13 +5520,13 @@ table.datatable th:active {
5412
5520
  .nav-pf-vertical > .list-group > .list-group-item:hover > a .glyphicon,
5413
5521
  .nav-pf-vertical > .list-group > .list-group-item.active > a .pficon,
5414
5522
  .nav-pf-vertical > .list-group > .list-group-item:hover > a .pficon {
5415
- color: #199dde;
5523
+ color: #39a5dc;
5416
5524
  }
5417
5525
  .show-mobile-nav .nav-pf-vertical > .list-group > .list-group-item.active > a {
5418
5526
  z-index: 1030;
5419
5527
  }
5420
5528
  .nav-pf-vertical > .list-group > .list-group-item.active > a:before {
5421
- background: #199dde;
5529
+ background: #39a5dc;
5422
5530
  content: " ";
5423
5531
  height: 100%;
5424
5532
  left: 0;
@@ -5461,11 +5569,11 @@ table.datatable th:active {
5461
5569
  }
5462
5570
  .nav-pf-vertical .list-group-item-separator {
5463
5571
  border-top-width: 2px;
5464
- border-top-color: #000000;
5572
+ border-top-color: #030303;
5465
5573
  }
5466
5574
  .nav-pf-persistent-secondary {
5467
5575
  background: #393f44;
5468
- border: 1px solid #262626;
5576
+ border: 1px solid #292e34;
5469
5577
  border-bottom: none;
5470
5578
  border-top: none;
5471
5579
  bottom: 0;
@@ -5551,7 +5659,7 @@ table.datatable th:active {
5551
5659
  .nav-pf-persistent-secondary .persistent-secondary-header > a:hover,
5552
5660
  .nav-pf-persistent-secondary .persistent-secondary-header > a:focus {
5553
5661
  text-decoration: none;
5554
- color: #0099d3;
5662
+ color: #0088ce;
5555
5663
  }
5556
5664
  .nav-pf-persistent-secondary h5 {
5557
5665
  color: #fff;
@@ -5571,7 +5679,7 @@ table.datatable th:active {
5571
5679
  }
5572
5680
  .nav-pf-persistent-secondary > .list-group > .list-group-item > a {
5573
5681
  background-color: transparent;
5574
- color: #dbdada;
5682
+ color: #d1d1d1;
5575
5683
  display: block;
5576
5684
  font-size: 12px;
5577
5685
  outline: 0;
@@ -5590,7 +5698,7 @@ table.datatable th:active {
5590
5698
  .nav-pf-persistent-secondary > .list-group > .list-group-item.active .fa,
5591
5699
  .nav-pf-persistent-secondary > .list-group > .list-group-item.active .glyphicon,
5592
5700
  .nav-pf-persistent-secondary > .list-group > .list-group-item.active .pficon {
5593
- color: #199dde;
5701
+ color: #39a5dc;
5594
5702
  }
5595
5703
  .nav-pf-persistent-secondary > .list-group > .list-group-item .badge-container-pf {
5596
5704
  background-color: #292e34;