c6489757 by Jeff Balicki

key words

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent a1b14993
...@@ -18043,6 +18043,26 @@ table thead th:first-child { ...@@ -18043,6 +18043,26 @@ table thead th:first-child {
18043 display: block; 18043 display: block;
18044 } 18044 }
18045 } 18045 }
18046 #search-wrapper #search-sidebar .select2-container--default .select2-selection--multiple,
18047 #search-wrapper #search-sidebar .select2-selection__rendered {
18048 background-color: #fff;
18049 border: 1px solid #fff;
18050 }
18051 #search-wrapper #search-sidebar .select2-container--default.select2-container--focus .select2-selection--multiple {
18052 border: 1px solid #fff;
18053 }
18054 #search-wrapper #search-sidebar .select2-search.select2-search--inline,
18055 #search-wrapper #search-sidebar .select2-container {
18056 width: 100% !important;
18057 }
18058 #search-wrapper #search-sidebar .select2-selection__choice {
18059 width: auto !important;
18060 }
18061 #search-wrapper #search-sidebar .select2-container--default .select2-search--inline .select2-search__field {
18062 width: 100% !important;
18063 background-color: #fff;
18064 height: 32px;
18065 }
18046 @media screen and (min-width: 62.5rem) { 18066 @media screen and (min-width: 62.5rem) {
18047 #search-wrapper .collapse:not(.show) { 18067 #search-wrapper .collapse:not(.show) {
18048 display: block; 18068 display: block;
...@@ -18320,11 +18340,25 @@ ul.sf_date_field .sf-datepicker { ...@@ -18320,11 +18340,25 @@ ul.sf_date_field .sf-datepicker {
18320 z-index: 99; 18340 z-index: 99;
18321 } 18341 }
18322 } 18342 }
18343 #advance-search-modal .select2-container--default .select2-selection--multiple,
18344 #advance-search-modal .select2-selection__rendered {
18345 background-color: #f0f0f0;
18346 border: 1px solid #f0f0f0;
18347 }
18348 #advance-search-modal .select2-container--default.select2-container--focus .select2-selection--multiple {
18349 border: 1px solid #f0f0f0;
18350 }
18351 #advance-search-modal .select2-search.select2-search--inline,
18323 #advance-search-modal .select2-container { 18352 #advance-search-modal .select2-container {
18324 width: 100% !important; 18353 width: 100% !important;
18325 } 18354 }
18355 #advance-search-modal .select2-selection__choice {
18356 width: auto !important;
18357 }
18326 #advance-search-modal .select2-container--default .select2-search--inline .select2-search__field { 18358 #advance-search-modal .select2-container--default .select2-search--inline .select2-search__field {
18327 min-width: 200px !important; 18359 width: 100% !important;
18360 background-color: #fff;
18361 height: 32px;
18328 } 18362 }
18329 #advance-search-modal .searching-loading { 18363 #advance-search-modal .searching-loading {
18330 display: none; 18364 display: none;
......
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.
...@@ -7513,7 +7513,7 @@ ...@@ -7513,7 +7513,7 @@
7513 $('.searching-loading').show(); 7513 $('.searching-loading').show();
7514 setTimeout(() => { 7514 setTimeout(() => {
7515 window.location.href = window.location.href; 7515 window.location.href = window.location.href;
7516 }, "2000"); 7516 }, "500");
7517 }); 7517 });
7518 $(document).on("click", ".advance-search-button", function (e) { 7518 $(document).on("click", ".advance-search-button", function (e) {
7519 $('#search-box-content').addClass('show'); 7519 $('#search-box-content').addClass('show');
......
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.
...@@ -23,7 +23,7 @@ var Search = (function($) { ...@@ -23,7 +23,7 @@ var Search = (function($) {
23 $('.searching-loading').show(); 23 $('.searching-loading').show();
24 setTimeout(() => { 24 setTimeout(() => {
25 window.location.href = window.location.href 25 window.location.href = window.location.href
26 }, "2000"); 26 }, "500");
27 }); 27 });
28 28
29 29
......
...@@ -129,6 +129,28 @@ ...@@ -129,6 +129,28 @@
129 } 129 }
130 } 130 }
131 } 131 }
132 .select2-container--default .select2-selection--multiple,
133 .select2-selection__rendered{
134 background-color: #fff;
135 border: 1px solid #fff;
136 }
137 .select2-container--default.select2-container--focus .select2-selection--multiple{
138 border: 1px solid #fff;
139 }
140 .select2-search.select2-search--inline,
141 .select2-container{
142 width: 100% !important;
143
144 }
145 .select2-selection__choice{
146 width: auto !important;
147 }
148 .select2-container--default .select2-search--inline .select2-search__field{
149 width: 100% !important;
150 background-color: #fff;
151 height: 32px;
152 }
153
132 } 154 }
133 155
134 @media screen and (min-width: 62.5rem) { 156 @media screen and (min-width: 62.5rem) {
...@@ -421,12 +443,26 @@ ul.sf_date_field { ...@@ -421,12 +443,26 @@ ul.sf_date_field {
421 margin-top: 9rem; 443 margin-top: 9rem;
422 z-index: 99; 444 z-index: 99;
423 } 445 }
424 446 .select2-container--default .select2-selection--multiple,
447 .select2-selection__rendered{
448 background-color: #f0f0f0;
449 border: 1px solid #f0f0f0;
450 }
451 .select2-container--default.select2-container--focus .select2-selection--multiple{
452 border: 1px solid #f0f0f0;
453 }
454 .select2-search.select2-search--inline,
425 .select2-container{ 455 .select2-container{
426 width: 100% !important; 456 width: 100% !important;
457
458 }
459 .select2-selection__choice{
460 width: auto !important;
427 } 461 }
428 .select2-container--default .select2-search--inline .select2-search__field{ 462 .select2-container--default .select2-search--inline .select2-search__field{
429 min-width: 200px !important; 463 width: 100% !important;
464 background-color: #fff;
465 height: 32px;
430 } 466 }
431 .searching-loading{ 467 .searching-loading{
432 display: none; 468 display: none;
......
...@@ -2,5 +2,5 @@ ...@@ -2,5 +2,5 @@
2 Theme Name: MSF CA Child 2 Theme Name: MSF CA Child
3 Author: Tenzing Communications 3 Author: Tenzing Communications
4 Template: msf-ca 4 Template: msf-ca
5 Version: 1.0.27 5 Version: 1.0.29
6 */ 6 */
......