9f8e8c2f by Jeff Balicki

FIXES

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 0ada94ae
...@@ -18056,6 +18056,7 @@ table:not(.ui-datepicker-calendar) thead th:first-child { ...@@ -18056,6 +18056,7 @@ table:not(.ui-datepicker-calendar) thead th:first-child {
18056 width: 100% !important; 18056 width: 100% !important;
18057 background-color: #fff; 18057 background-color: #fff;
18058 height: 32px; 18058 height: 32px;
18059 border: solid 1px #bebebe !important;
18059 } 18060 }
18060 @media screen and (min-width: 62.5rem) { 18061 @media screen and (min-width: 62.5rem) {
18061 #search-wrapper .collapse:not(.show) { 18062 #search-wrapper .collapse:not(.show) {
...@@ -18353,6 +18354,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -18353,6 +18354,7 @@ ul.sf_date_field .sf-datepicker {
18353 width: 100% !important; 18354 width: 100% !important;
18354 background-color: #fff; 18355 background-color: #fff;
18355 height: 32px; 18356 height: 32px;
18357 border: solid 1px #bebebe !important;
18356 } 18358 }
18357 #advance-search-modal .searching-loading { 18359 #advance-search-modal .searching-loading {
18358 display: none; 18360 display: none;
...@@ -18627,6 +18629,10 @@ ul.sf_date_field .sf-datepicker { ...@@ -18627,6 +18629,10 @@ ul.sf_date_field .sf-datepicker {
18627 } 18629 }
18628 } 18630 }
18629 18631
18632 .select2-container .select2-search--inline .select2-search__field {
18633 padding-left: 10px;
18634 }
18635
18630 .select2-container--default .select2-results__option--highlighted[aria-selected] { 18636 .select2-container--default .select2-results__option--highlighted[aria-selected] {
18631 background-color: #e00; 18637 background-color: #e00;
18632 color: #fff; 18638 color: #fff;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -149,6 +149,7 @@ ...@@ -149,6 +149,7 @@
149 width: 100% !important; 149 width: 100% !important;
150 background-color: #fff; 150 background-color: #fff;
151 height: 32px; 151 height: 32px;
152 border:solid 1px #bebebe !important;
152 } 153 }
153 154
154 } 155 }
...@@ -463,6 +464,7 @@ ul.sf_date_field { ...@@ -463,6 +464,7 @@ ul.sf_date_field {
463 width: 100% !important; 464 width: 100% !important;
464 background-color: #fff; 465 background-color: #fff;
465 height: 32px; 466 height: 32px;
467 border:solid 1px #bebebe !important;
466 } 468 }
467 .searching-loading{ 469 .searching-loading{
468 display: none; 470 display: none;
...@@ -751,7 +753,9 @@ ul.sf_date_field { ...@@ -751,7 +753,9 @@ ul.sf_date_field {
751 } 753 }
752 } 754 }
753 755
754 756 .select2-container .select2-search--inline .select2-search__field{
757 padding-left: 10px;
758 }
755 759
756 .select2-container--default .select2-results__option--highlighted[aria-selected] { 760 .select2-container--default .select2-results__option--highlighted[aria-selected] {
757 background-color: #e00; 761 background-color: #e00;
......