0ada94ae by Jeff Balicki

fixes

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent c6489757
...@@ -17882,7 +17882,7 @@ p { ...@@ -17882,7 +17882,7 @@ p {
17882 display: block; 17882 display: block;
17883 } 17883 }
17884 17884
17885 table { 17885 table:not(.ui-datepicker-calendar) {
17886 margin: 2.5rem 0rem; 17886 margin: 2.5rem 0rem;
17887 border: 0.25rem solid #fff !important; 17887 border: 0.25rem solid #fff !important;
17888 background-color: #EAEDF1 !important; 17888 background-color: #EAEDF1 !important;
...@@ -17891,28 +17891,23 @@ table { ...@@ -17891,28 +17891,23 @@ table {
17891 border-collapse: collapse; 17891 border-collapse: collapse;
17892 overflow-x: scroll; 17892 overflow-x: scroll;
17893 } 17893 }
17894 17894 table:not(.ui-datepicker-calendar) td, table:not(.ui-datepicker-calendar) table th {
17895 table td, table th {
17896 border: 0.25rem solid #FFFFFF !important; 17895 border: 0.25rem solid #FFFFFF !important;
17897 padding: 0.4375rem 0.4375rem; 17896 padding: 0.4375rem 0.4375rem;
17898 } 17897 }
17899 17898 table:not(.ui-datepicker-calendar) tbody td {
17900 table tbody td {
17901 font-size: 1rem; 17899 font-size: 1rem;
17902 line-height: 1.25rem; 17900 line-height: 1.25rem;
17903 padding: 0.625rem 0.9375rem !important; 17901 padding: 0.625rem 0.9375rem !important;
17904 } 17902 }
17905 17903 table:not(.ui-datepicker-calendar) tr:nth-child(even) {
17906 table tr:nth-child(even) {
17907 background: #FFFFFF !important; 17904 background: #FFFFFF !important;
17908 } 17905 }
17909 17906 table:not(.ui-datepicker-calendar) thead {
17910 table thead {
17911 background: #FFFFFF !important; 17907 background: #FFFFFF !important;
17912 border: 0.25rem solid #fff !important; 17908 border: 0.25rem solid #fff !important;
17913 } 17909 }
17914 17910 table:not(.ui-datepicker-calendar) thead th {
17915 table thead th {
17916 font-size: 1rem; 17911 font-size: 1rem;
17917 line-height: 1.25rem; 17912 line-height: 1.25rem;
17918 font-weight: bold; 17913 font-weight: bold;
...@@ -17920,8 +17915,7 @@ table thead th { ...@@ -17920,8 +17915,7 @@ table thead th {
17920 border: 0.25rem solid #fff !important; 17915 border: 0.25rem solid #fff !important;
17921 padding: 0.625rem 0.9375rem !important; 17916 padding: 0.625rem 0.9375rem !important;
17922 } 17917 }
17923 17918 table:not(.ui-datepicker-calendar) thead th:first-child {
17924 table thead th:first-child {
17925 border-left: none; 17919 border-left: none;
17926 } 17920 }
17927 17921
...@@ -18633,6 +18627,11 @@ ul.sf_date_field .sf-datepicker { ...@@ -18633,6 +18627,11 @@ ul.sf_date_field .sf-datepicker {
18633 } 18627 }
18634 } 18628 }
18635 18629
18630 .select2-container--default .select2-results__option--highlighted[aria-selected] {
18631 background-color: #e00;
18632 color: #fff;
18633 }
18634
18636 .search-results .search-field { 18635 .search-results .search-field {
18637 border: 0; 18636 border: 0;
18638 border-bottom: 0.0625rem solid #707070; 18637 border-bottom: 0.0625rem solid #707070;
......
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 }, "500"); 7516 }, "100");
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 }, "500"); 26 }, "100");
27 }); 27 });
28 28
29 29
......
...@@ -301,7 +301,7 @@ blockquote{ ...@@ -301,7 +301,7 @@ blockquote{
301 301
302 302
303 303
304 table { 304 table:not(.ui-datepicker-calendar) {
305 margin: 2.5rem 0rem; 305 margin: 2.5rem 0rem;
306 border: 0.25rem solid #fff!important; 306 border: 0.25rem solid #fff!important;
307 background-color: #EAEDF1 !important; 307 background-color: #EAEDF1 !important;
...@@ -309,25 +309,25 @@ table { ...@@ -309,25 +309,25 @@ table {
309 text-align: left; 309 text-align: left;
310 border-collapse: collapse; 310 border-collapse: collapse;
311 overflow-x: scroll; 311 overflow-x: scroll;
312 } 312
313 table td, table th { 313 td, table th {
314 border: 0.25rem solid #FFFFFF !important; 314 border: 0.25rem solid #FFFFFF !important;
315 padding: 0.4375rem 0.4375rem; 315 padding: 0.4375rem 0.4375rem;
316 316
317 } 317 }
318 table tbody td { 318 tbody td {
319 font-size: 1rem; 319 font-size: 1rem;
320 line-height: 1.25rem; 320 line-height: 1.25rem;
321 padding: 0.625rem 0.9375rem !important; 321 padding: 0.625rem 0.9375rem !important;
322 } 322 }
323 table tr:nth-child(even) { 323 tr:nth-child(even) {
324 background: #FFFFFF !important; 324 background: #FFFFFF !important;
325 } 325 }
326 table thead { 326 thead {
327 background: #FFFFFF !important; 327 background: #FFFFFF !important;
328 border: 0.25rem solid #fff!important; 328 border: 0.25rem solid #fff!important;
329 } 329 }
330 table thead th { 330 thead th {
331 font-size: 1rem; 331 font-size: 1rem;
332 line-height: 1.25rem; 332 line-height: 1.25rem;
333 font-weight: bold; 333 font-weight: bold;
...@@ -335,8 +335,9 @@ table { ...@@ -335,8 +335,9 @@ table {
335 border: 0.25rem solid #fff!important; 335 border: 0.25rem solid #fff!important;
336 padding: 0.625rem 0.9375rem !important; 336 padding: 0.625rem 0.9375rem !important;
337 } 337 }
338 table thead th:first-child { 338 thead th:first-child {
339 border-left: none; 339 border-left: none;
340 } 340 }
341 341
342 342
343 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -750,3 +750,10 @@ ul.sf_date_field { ...@@ -750,3 +750,10 @@ ul.sf_date_field {
750 } 750 }
751 } 751 }
752 } 752 }
753
754
755
756 .select2-container--default .select2-results__option--highlighted[aria-selected] {
757 background-color: #e00;
758 color: #fff;
759 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -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.29 5 Version: 1.0.30
6 */ 6 */
......