d036b021 by Jeff Balicki

qa

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 86e6d059
...@@ -181,8 +181,10 @@ p { ...@@ -181,8 +181,10 @@ p {
181 } 181 }
182 182
183 abbr[title] { 183 abbr[title] {
184 -webkit-text-decoration: underline dotted;
184 text-decoration: underline dotted; 185 text-decoration: underline dotted;
185 cursor: help; 186 cursor: help;
187 -webkit-text-decoration-skip-ink: none;
186 text-decoration-skip-ink: none; 188 text-decoration-skip-ink: none;
187 } 189 }
188 190
...@@ -2031,6 +2033,8 @@ progress { ...@@ -2031,6 +2033,8 @@ progress {
2031 background-color: #fff; 2033 background-color: #fff;
2032 background-clip: padding-box; 2034 background-clip: padding-box;
2033 border: 1px solid #ced4da; 2035 border: 1px solid #ced4da;
2036 -webkit-appearance: none;
2037 -moz-appearance: none;
2034 appearance: none; 2038 appearance: none;
2035 border-radius: 0.375rem; 2039 border-radius: 0.375rem;
2036 transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 2040 transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
...@@ -2113,6 +2117,10 @@ progress { ...@@ -2113,6 +2117,10 @@ progress {
2113 .wpcf7 textarea::-webkit-date-and-time-value { 2117 .wpcf7 textarea::-webkit-date-and-time-value {
2114 height: 1.5em; 2118 height: 1.5em;
2115 } 2119 }
2120 .form-control::-moz-placeholder, .wpcf7 .wpcf7-validation-errors::-moz-placeholder, .wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=search]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 input[type=range]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 input[type=month]::-moz-placeholder, .wpcf7 input[type=week]::-moz-placeholder, .wpcf7 input[type=time]::-moz-placeholder, .wpcf7 input[type=datetime]::-moz-placeholder, .wpcf7 input[type=datetime-local]::-moz-placeholder, .wpcf7 input[type=color]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=file]::-moz-placeholder, .wpcf7 input[type=submit]::-moz-placeholder, .wpcf7 select::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
2121 color: #6c757d;
2122 opacity: 1;
2123 }
2116 .form-control::placeholder, .wpcf7 .wpcf7-validation-errors::placeholder, .wpcf7 input[type=text]::placeholder, 2124 .form-control::placeholder, .wpcf7 .wpcf7-validation-errors::placeholder, .wpcf7 input[type=text]::placeholder,
2117 .wpcf7 input[type=search]::placeholder, 2125 .wpcf7 input[type=search]::placeholder,
2118 .wpcf7 input[type=url]::placeholder, 2126 .wpcf7 input[type=url]::placeholder,
...@@ -2175,6 +2183,7 @@ progress { ...@@ -2175,6 +2183,7 @@ progress {
2175 .wpcf7 textarea::file-selector-button { 2183 .wpcf7 textarea::file-selector-button {
2176 padding: 0.375rem 0.75rem; 2184 padding: 0.375rem 0.75rem;
2177 margin: -0.375rem -0.75rem; 2185 margin: -0.375rem -0.75rem;
2186 -webkit-margin-end: 0.75rem;
2178 margin-inline-end: 0.75rem; 2187 margin-inline-end: 0.75rem;
2179 color: #212529; 2188 color: #212529;
2180 background-color: #e9ecef; 2189 background-color: #e9ecef;
...@@ -2257,6 +2266,7 @@ progress { ...@@ -2257,6 +2266,7 @@ progress {
2257 .form-control-sm::file-selector-button { 2266 .form-control-sm::file-selector-button {
2258 padding: 0.25rem 0.5rem; 2267 padding: 0.25rem 0.5rem;
2259 margin: -0.25rem -0.5rem; 2268 margin: -0.25rem -0.5rem;
2269 -webkit-margin-end: 0.5rem;
2260 margin-inline-end: 0.5rem; 2270 margin-inline-end: 0.5rem;
2261 } 2271 }
2262 2272
...@@ -2269,6 +2279,7 @@ progress { ...@@ -2269,6 +2279,7 @@ progress {
2269 .form-control-lg::file-selector-button { 2279 .form-control-lg::file-selector-button {
2270 padding: 0.5rem 1rem; 2280 padding: 0.5rem 1rem;
2271 margin: -0.5rem -1rem; 2281 margin: -0.5rem -1rem;
2282 -webkit-margin-end: 1rem;
2272 margin-inline-end: 1rem; 2283 margin-inline-end: 1rem;
2273 } 2284 }
2274 2285
...@@ -2322,6 +2333,8 @@ textarea.form-control-lg { ...@@ -2322,6 +2333,8 @@ textarea.form-control-lg {
2322 border: 1px solid #ced4da; 2333 border: 1px solid #ced4da;
2323 border-radius: 0.375rem; 2334 border-radius: 0.375rem;
2324 transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 2335 transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2336 -webkit-appearance: none;
2337 -moz-appearance: none;
2325 appearance: none; 2338 appearance: none;
2326 } 2339 }
2327 @media (prefers-reduced-motion: reduce) { 2340 @media (prefers-reduced-motion: reduce) {
...@@ -2394,7 +2407,10 @@ textarea.form-control-lg { ...@@ -2394,7 +2407,10 @@ textarea.form-control-lg {
2394 background-position: center; 2407 background-position: center;
2395 background-size: contain; 2408 background-size: contain;
2396 border: 1px solid rgba(0, 0, 0, 0.25); 2409 border: 1px solid rgba(0, 0, 0, 0.25);
2410 -webkit-appearance: none;
2411 -moz-appearance: none;
2397 appearance: none; 2412 appearance: none;
2413 -webkit-print-color-adjust: exact;
2398 print-color-adjust: exact; 2414 print-color-adjust: exact;
2399 } 2415 }
2400 .form-check-input[type=checkbox] { 2416 .form-check-input[type=checkbox] {
...@@ -2489,6 +2505,8 @@ textarea.form-control-lg { ...@@ -2489,6 +2505,8 @@ textarea.form-control-lg {
2489 height: 1.5rem; 2505 height: 1.5rem;
2490 padding: 0; 2506 padding: 0;
2491 background-color: transparent; 2507 background-color: transparent;
2508 -webkit-appearance: none;
2509 -moz-appearance: none;
2492 appearance: none; 2510 appearance: none;
2493 } 2511 }
2494 .form-range:focus { 2512 .form-range:focus {
...@@ -2510,11 +2528,14 @@ textarea.form-control-lg { ...@@ -2510,11 +2528,14 @@ textarea.form-control-lg {
2510 background-color: #000; 2528 background-color: #000;
2511 border: 0; 2529 border: 0;
2512 border-radius: 1rem; 2530 border-radius: 1rem;
2531 -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2513 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 2532 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2533 -webkit-appearance: none;
2514 appearance: none; 2534 appearance: none;
2515 } 2535 }
2516 @media (prefers-reduced-motion: reduce) { 2536 @media (prefers-reduced-motion: reduce) {
2517 .form-range::-webkit-slider-thumb { 2537 .form-range::-webkit-slider-thumb {
2538 -webkit-transition: none;
2518 transition: none; 2539 transition: none;
2519 } 2540 }
2520 } 2541 }
...@@ -2536,11 +2557,14 @@ textarea.form-control-lg { ...@@ -2536,11 +2557,14 @@ textarea.form-control-lg {
2536 background-color: #000; 2557 background-color: #000;
2537 border: 0; 2558 border: 0;
2538 border-radius: 1rem; 2559 border-radius: 1rem;
2560 -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2539 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 2561 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2562 -moz-appearance: none;
2540 appearance: none; 2563 appearance: none;
2541 } 2564 }
2542 @media (prefers-reduced-motion: reduce) { 2565 @media (prefers-reduced-motion: reduce) {
2543 .form-range::-moz-range-thumb { 2566 .form-range::-moz-range-thumb {
2567 -moz-transition: none;
2544 transition: none; 2568 transition: none;
2545 } 2569 }
2546 } 2570 }
...@@ -2634,6 +2658,9 @@ textarea.form-control-lg { ...@@ -2634,6 +2658,9 @@ textarea.form-control-lg {
2634 .form-floating > .form-control-plaintext { 2658 .form-floating > .form-control-plaintext {
2635 padding: 1rem 0.75rem; 2659 padding: 1rem 0.75rem;
2636 } 2660 }
2661 .form-floating > .form-control::-moz-placeholder, .wpcf7 .form-floating > .wpcf7-validation-errors::-moz-placeholder, .wpcf7 .form-floating > input[type=text]::-moz-placeholder, .wpcf7 .form-floating > input[type=search]::-moz-placeholder, .wpcf7 .form-floating > input[type=url]::-moz-placeholder, .wpcf7 .form-floating > input[type=tel]::-moz-placeholder, .wpcf7 .form-floating > input[type=number]::-moz-placeholder, .wpcf7 .form-floating > input[type=range]::-moz-placeholder, .wpcf7 .form-floating > input[type=date]::-moz-placeholder, .wpcf7 .form-floating > input[type=month]::-moz-placeholder, .wpcf7 .form-floating > input[type=week]::-moz-placeholder, .wpcf7 .form-floating > input[type=time]::-moz-placeholder, .wpcf7 .form-floating > input[type=datetime]::-moz-placeholder, .wpcf7 .form-floating > input[type=datetime-local]::-moz-placeholder, .wpcf7 .form-floating > input[type=color]::-moz-placeholder, .wpcf7 .form-floating > input[type=email]::-moz-placeholder, .wpcf7 .form-floating > input[type=file]::-moz-placeholder, .wpcf7 .form-floating > input[type=submit]::-moz-placeholder, .wpcf7 .form-floating > select::-moz-placeholder, .wpcf7 .form-floating > textarea::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
2662 color: transparent;
2663 }
2637 .form-floating > .form-control::placeholder, .wpcf7 .form-floating > .wpcf7-validation-errors::placeholder, .wpcf7 .form-floating > input[type=text]::placeholder, 2664 .form-floating > .form-control::placeholder, .wpcf7 .form-floating > .wpcf7-validation-errors::placeholder, .wpcf7 .form-floating > input[type=text]::placeholder,
2638 .wpcf7 .form-floating > input[type=search]::placeholder, 2665 .wpcf7 .form-floating > input[type=search]::placeholder,
2639 .wpcf7 .form-floating > input[type=url]::placeholder, 2666 .wpcf7 .form-floating > input[type=url]::placeholder,
...@@ -2655,6 +2682,10 @@ textarea.form-control-lg { ...@@ -2655,6 +2682,10 @@ textarea.form-control-lg {
2655 .form-floating > .form-control-plaintext::placeholder { 2682 .form-floating > .form-control-plaintext::placeholder {
2656 color: transparent; 2683 color: transparent;
2657 } 2684 }
2685 .form-floating > .form-control:not(:-moz-placeholder-shown), .wpcf7 .form-floating > .wpcf7-validation-errors:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=text]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=search]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=url]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=tel]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=number]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=range]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=date]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=month]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=week]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=time]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=datetime]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=datetime-local]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=color]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=email]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=file]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > input[type=submit]:not(:-moz-placeholder-shown), .wpcf7 .form-floating > select:not(:-moz-placeholder-shown), .wpcf7 .form-floating > textarea:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
2686 padding-top: 1.625rem;
2687 padding-bottom: 0.625rem;
2688 }
2658 .form-floating > .form-control:focus, .wpcf7 .form-floating > .wpcf7-validation-errors:focus, .wpcf7 .form-floating > input[type=text]:focus, 2689 .form-floating > .form-control:focus, .wpcf7 .form-floating > .wpcf7-validation-errors:focus, .wpcf7 .form-floating > input[type=text]:focus,
2659 .wpcf7 .form-floating > input[type=search]:focus, 2690 .wpcf7 .form-floating > input[type=search]:focus,
2660 .wpcf7 .form-floating > input[type=url]:focus, 2691 .wpcf7 .form-floating > input[type=url]:focus,
...@@ -2721,6 +2752,10 @@ textarea.form-control-lg { ...@@ -2721,6 +2752,10 @@ textarea.form-control-lg {
2721 padding-top: 1.625rem; 2752 padding-top: 1.625rem;
2722 padding-bottom: 0.625rem; 2753 padding-bottom: 0.625rem;
2723 } 2754 }
2755 .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > .wpcf7-validation-errors:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=text]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=search]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=url]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=tel]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=number]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=range]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=date]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=month]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=week]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=time]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=datetime]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=datetime-local]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=color]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=email]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=file]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > input[type=submit]:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > select:not(:-moz-placeholder-shown) ~ label, .wpcf7 .form-floating > textarea:not(:-moz-placeholder-shown) ~ label {
2756 opacity: 0.65;
2757 transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
2758 }
2724 .form-floating > .form-control:focus ~ label, .wpcf7 .form-floating > .wpcf7-validation-errors:focus ~ label, .wpcf7 .form-floating > input[type=text]:focus ~ label, 2759 .form-floating > .form-control:focus ~ label, .wpcf7 .form-floating > .wpcf7-validation-errors:focus ~ label, .wpcf7 .form-floating > input[type=text]:focus ~ label,
2725 .wpcf7 .form-floating > input[type=search]:focus ~ label, 2760 .wpcf7 .form-floating > input[type=search]:focus ~ label,
2726 .wpcf7 .form-floating > input[type=url]:focus ~ label, 2761 .wpcf7 .form-floating > input[type=url]:focus ~ label,
...@@ -3526,6 +3561,8 @@ textarea.form-control-lg { ...@@ -3526,6 +3561,8 @@ textarea.form-control-lg {
3526 text-decoration: none; 3561 text-decoration: none;
3527 vertical-align: middle; 3562 vertical-align: middle;
3528 cursor: pointer; 3563 cursor: pointer;
3564 -webkit-user-select: none;
3565 -moz-user-select: none;
3529 user-select: none; 3566 user-select: none;
3530 border: var(--bs-btn-border-width) solid var(--bs-btn-border-color); 3567 border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
3531 border-radius: var(--bs-btn-border-radius); 3568 border-radius: var(--bs-btn-border-radius);
...@@ -5940,6 +5977,8 @@ textarea.form-control-lg { ...@@ -5940,6 +5977,8 @@ textarea.form-control-lg {
5940 } 5977 }
5941 .btn-close:disabled, .btn-close.disabled { 5978 .btn-close:disabled, .btn-close.disabled {
5942 pointer-events: none; 5979 pointer-events: none;
5980 -webkit-user-select: none;
5981 -moz-user-select: none;
5943 user-select: none; 5982 user-select: none;
5944 opacity: 0.25; 5983 opacity: 0.25;
5945 } 5984 }
...@@ -5986,6 +6025,7 @@ textarea.form-control-lg { ...@@ -5986,6 +6025,7 @@ textarea.form-control-lg {
5986 --bs-toast-zindex: 1090; 6025 --bs-toast-zindex: 1090;
5987 position: absolute; 6026 position: absolute;
5988 z-index: var(--bs-toast-zindex); 6027 z-index: var(--bs-toast-zindex);
6028 width: -moz-max-content;
5989 width: max-content; 6029 width: max-content;
5990 max-width: 100%; 6030 max-width: 100%;
5991 pointer-events: none; 6031 pointer-events: none;
...@@ -6591,6 +6631,7 @@ textarea.form-control-lg { ...@@ -6591,6 +6631,7 @@ textarea.form-control-lg {
6591 float: left; 6631 float: left;
6592 width: 100%; 6632 width: 100%;
6593 margin-right: -100%; 6633 margin-right: -100%;
6634 -webkit-backface-visibility: hidden;
6594 backface-visibility: hidden; 6635 backface-visibility: hidden;
6595 transition: transform 0.6s ease-in-out; 6636 transition: transform 0.6s ease-in-out;
6596 } 6637 }
...@@ -7417,13 +7458,16 @@ textarea.form-control-lg { ...@@ -7417,13 +7458,16 @@ textarea.form-control-lg {
7417 } 7458 }
7418 } 7459 }
7419 .placeholder-wave { 7460 .placeholder-wave {
7461 -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
7420 mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%); 7462 mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
7463 -webkit-mask-size: 200% 100%;
7421 mask-size: 200% 100%; 7464 mask-size: 200% 100%;
7422 animation: placeholder-wave 2s linear infinite; 7465 animation: placeholder-wave 2s linear infinite;
7423 } 7466 }
7424 7467
7425 @keyframes placeholder-wave { 7468 @keyframes placeholder-wave {
7426 100% { 7469 100% {
7470 -webkit-mask-position: -200% 0%;
7427 mask-position: -200% 0%; 7471 mask-position: -200% 0%;
7428 } 7472 }
7429 } 7473 }
...@@ -8988,14 +9032,20 @@ textarea.form-control-lg { ...@@ -8988,14 +9032,20 @@ textarea.form-control-lg {
8988 } 9032 }
8989 9033
8990 .user-select-all { 9034 .user-select-all {
9035 -webkit-user-select: all !important;
9036 -moz-user-select: all !important;
8991 user-select: all !important; 9037 user-select: all !important;
8992 } 9038 }
8993 9039
8994 .user-select-auto { 9040 .user-select-auto {
9041 -webkit-user-select: auto !important;
9042 -moz-user-select: auto !important;
8995 user-select: auto !important; 9043 user-select: auto !important;
8996 } 9044 }
8997 9045
8998 .user-select-none { 9046 .user-select-none {
9047 -webkit-user-select: none !important;
9048 -moz-user-select: none !important;
8999 user-select: none !important; 9049 user-select: none !important;
9000 } 9050 }
9001 9051
...@@ -11671,6 +11721,8 @@ body { ...@@ -11671,6 +11721,8 @@ body {
11671 border: 1px solid #ced4da; 11721 border: 1px solid #ced4da;
11672 border-radius: 0.375rem; 11722 border-radius: 0.375rem;
11673 transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 11723 transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
11724 -webkit-appearance: none;
11725 -moz-appearance: none;
11674 appearance: none; 11726 appearance: none;
11675 } 11727 }
11676 @media (prefers-reduced-motion: reduce) { 11728 @media (prefers-reduced-motion: reduce) {
...@@ -11982,67 +12034,42 @@ figure.woocommerce-product-gallery__wrapper { ...@@ -11982,67 +12034,42 @@ figure.woocommerce-product-gallery__wrapper {
11982 } 12034 }
11983 12035
11984 .fa-spin { 12036 .fa-spin {
11985 -webkit-animation: fa-spin 2s infinite linear;
11986 animation: fa-spin 2s infinite linear; 12037 animation: fa-spin 2s infinite linear;
11987 } 12038 }
11988 12039
11989 .fa-pulse { 12040 .fa-pulse {
11990 -webkit-animation: fa-spin 1s infinite steps(8);
11991 animation: fa-spin 1s infinite steps(8); 12041 animation: fa-spin 1s infinite steps(8);
11992 } 12042 }
11993
11994 @-webkit-keyframes fa-spin {
11995 0% {
11996 -webkit-transform: rotate(0deg);
11997 transform: rotate(0deg);
11998 }
11999 100% {
12000 -webkit-transform: rotate(359deg);
12001 transform: rotate(359deg);
12002 }
12003 }
12004 @keyframes fa-spin { 12043 @keyframes fa-spin {
12005 0% { 12044 0% {
12006 -webkit-transform: rotate(0deg);
12007 transform: rotate(0deg); 12045 transform: rotate(0deg);
12008 } 12046 }
12009 100% { 12047 100% {
12010 -webkit-transform: rotate(359deg);
12011 transform: rotate(359deg); 12048 transform: rotate(359deg);
12012 } 12049 }
12013 } 12050 }
12014 .fa-rotate-90 { 12051 .fa-rotate-90 {
12015 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; 12052 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
12016 -webkit-transform: rotate(90deg);
12017 -ms-transform: rotate(90deg);
12018 transform: rotate(90deg); 12053 transform: rotate(90deg);
12019 } 12054 }
12020 12055
12021 .fa-rotate-180 { 12056 .fa-rotate-180 {
12022 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; 12057 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
12023 -webkit-transform: rotate(180deg);
12024 -ms-transform: rotate(180deg);
12025 transform: rotate(180deg); 12058 transform: rotate(180deg);
12026 } 12059 }
12027 12060
12028 .fa-rotate-270 { 12061 .fa-rotate-270 {
12029 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; 12062 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
12030 -webkit-transform: rotate(270deg);
12031 -ms-transform: rotate(270deg);
12032 transform: rotate(270deg); 12063 transform: rotate(270deg);
12033 } 12064 }
12034 12065
12035 .fa-flip-horizontal { 12066 .fa-flip-horizontal {
12036 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; 12067 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
12037 -webkit-transform: scale(-1, 1);
12038 -ms-transform: scale(-1, 1);
12039 transform: scale(-1, 1); 12068 transform: scale(-1, 1);
12040 } 12069 }
12041 12070
12042 .fa-flip-vertical { 12071 .fa-flip-vertical {
12043 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 12072 -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
12044 -webkit-transform: scale(1, -1);
12045 -ms-transform: scale(1, -1);
12046 transform: scale(1, -1); 12073 transform: scale(1, -1);
12047 } 12074 }
12048 12075
...@@ -15247,6 +15274,7 @@ body { ...@@ -15247,6 +15274,7 @@ body {
15247 right: 0 !important; 15274 right: 0 !important;
15248 height: 100vh !important; 15275 height: 100vh !important;
15249 transform: translateX(200%) !important; 15276 transform: translateX(200%) !important;
15277 -webkit-backface-visibility: hidden !important;
15250 backface-visibility: hidden !important; 15278 backface-visibility: hidden !important;
15251 transition: transform 0.5s !important; 15279 transition: transform 0.5s !important;
15252 background-color: #F0F0F0; 15280 background-color: #F0F0F0;
...@@ -15261,6 +15289,7 @@ body { ...@@ -15261,6 +15289,7 @@ body {
15261 height: 100%; 15289 height: 100%;
15262 min-height: unset; 15290 min-height: unset;
15263 transform: translateX(100%) !important; 15291 transform: translateX(100%) !important;
15292 -webkit-backface-visibility: hidden !important;
15264 backface-visibility: hidden !important; 15293 backface-visibility: hidden !important;
15265 transition: transform 0.5s !important; 15294 transition: transform 0.5s !important;
15266 background-color: #F0F0F0; 15295 background-color: #F0F0F0;
...@@ -15523,6 +15552,8 @@ body { ...@@ -15523,6 +15552,8 @@ body {
15523 } 15552 }
15524 15553
15525 select { 15554 select {
15555 -webkit-appearance: none;
15556 -moz-appearance: none;
15526 appearance: none; 15557 appearance: none;
15527 background-color: transparent; 15558 background-color: transparent;
15528 border: none; 15559 border: none;
...@@ -15887,7 +15918,6 @@ button, input, optgroup, select, textarea { ...@@ -15887,7 +15918,6 @@ button, input, optgroup, select, textarea {
15887 font-size: 1.375rem; 15918 font-size: 1.375rem;
15888 -webkit-user-select: none; 15919 -webkit-user-select: none;
15889 -moz-user-select: none; 15920 -moz-user-select: none;
15890 -ms-user-select: none;
15891 user-select: none; 15921 user-select: none;
15892 } 15922 }
15893 15923
...@@ -15945,6 +15975,7 @@ input:checked ~ .checkmark:after, ...@@ -15945,6 +15975,7 @@ input:checked ~ .checkmark:after,
15945 15975
15946 input[type=checkbox] { 15976 input[type=checkbox] {
15947 -webkit-appearance: none; 15977 -webkit-appearance: none;
15978 -moz-appearance: none;
15948 appearance: none; 15979 appearance: none;
15949 margin: 0; 15980 margin: 0;
15950 height: 1.375rem; 15981 height: 1.375rem;
...@@ -16002,16 +16033,12 @@ input[type=checkbox]:focus { ...@@ -16002,16 +16033,12 @@ input[type=checkbox]:focus {
16002 .ui-datepicker { 16033 .ui-datepicker {
16003 padding: 0; 16034 padding: 0;
16004 border: 0.0625rem solid #ddd; 16035 border: 0.0625rem solid #ddd;
16005 -webkit-border-radius: 0;
16006 -moz-border-radius: 0;
16007 border-radius: 0; 16036 border-radius: 0;
16008 } 16037 }
16009 16038
16010 .ui-datepicker * { 16039 .ui-datepicker * {
16011 padding: 0; 16040 padding: 0;
16012 font-family: "Open Sans", sans-serif; 16041 font-family: "Open Sans", sans-serif;
16013 -webkit-border-radius: 0;
16014 -moz-border-radius: 0;
16015 border-radius: 0; 16042 border-radius: 0;
16016 } 16043 }
16017 16044
...@@ -16031,8 +16058,6 @@ input[type=checkbox]:focus { ...@@ -16031,8 +16058,6 @@ input[type=checkbox]:focus {
16031 background: #222; 16058 background: #222;
16032 border-color: transparent; 16059 border-color: transparent;
16033 cursor: pointer; 16060 cursor: pointer;
16034 -webkit-border-radius: 0;
16035 -moz-border-radius: 0;
16036 border-radius: 0; 16061 border-radius: 0;
16037 } 16062 }
16038 16063
...@@ -16706,6 +16731,7 @@ a[target=_blank]:after { ...@@ -16706,6 +16731,7 @@ a[target=_blank]:after {
16706 margin-bottom: 1.875rem; 16731 margin-bottom: 1.875rem;
16707 padding-left: 2.25rem; 16732 padding-left: 2.25rem;
16708 -webkit-appearance: none; 16733 -webkit-appearance: none;
16734 -moz-appearance: none;
16709 appearance: none; 16735 appearance: none;
16710 background-color: transparent; 16736 background-color: transparent;
16711 border: 0.0625rem solid #bebebe !important; 16737 border: 0.0625rem solid #bebebe !important;
...@@ -16847,6 +16873,7 @@ a[target=_blank]:after { ...@@ -16847,6 +16873,7 @@ a[target=_blank]:after {
16847 } 16873 }
16848 #search-wrapper .search-filter-reset { 16874 #search-wrapper .search-filter-reset {
16849 -webkit-appearance: none; 16875 -webkit-appearance: none;
16876 -moz-appearance: none;
16850 appearance: none; 16877 appearance: none;
16851 background-color: transparent; 16878 background-color: transparent;
16852 border: 0.0625rem solid #bebebe !important; 16879 border: 0.0625rem solid #bebebe !important;
...@@ -17285,7 +17312,6 @@ ul.sf_date_field .sf-datepicker { ...@@ -17285,7 +17312,6 @@ ul.sf_date_field .sf-datepicker {
17285 } 17312 }
17286 } 17313 }
17287 #advance-search-modal .modal-content { 17314 #advance-search-modal .modal-content {
17288 -webkit-box-shadow: -2px 7px 7px 0px rgba(0, 0, 0, 0.25);
17289 box-shadow: -2px 7px 7px 0px rgba(0, 0, 0, 0.25); 17315 box-shadow: -2px 7px 7px 0px rgba(0, 0, 0, 0.25);
17290 border: 0rem solid #707070; 17316 border: 0rem solid #707070;
17291 } 17317 }
...@@ -17492,9 +17518,6 @@ ul.sf_date_field .sf-datepicker { ...@@ -17492,9 +17518,6 @@ ul.sf_date_field .sf-datepicker {
17492 margin: auto; 17518 margin: auto;
17493 width: 100%; 17519 width: 100%;
17494 height: 100%; 17520 height: 100%;
17495 -webkit-transform: translate3d(0%, 0, 0);
17496 -ms-transform: translate3d(0%, 0, 0);
17497 -o-transform: translate3d(0%, 0, 0);
17498 transform: translate3d(0%, 0, 0); 17521 transform: translate3d(0%, 0, 0);
17499 } 17522 }
17500 .modal.left .modal-content, 17523 .modal.left .modal-content,
...@@ -17781,7 +17804,9 @@ ul.sf_date_field .sf-datepicker { ...@@ -17781,7 +17804,9 @@ ul.sf_date_field .sf-datepicker {
17781 } 17804 }
17782 } 17805 }
17783 #search-wrapper #main > article .photo img { 17806 #search-wrapper #main > article .photo img {
17807 -o-object-fit: cover;
17784 object-fit: cover; 17808 object-fit: cover;
17809 -o-object-position: center;
17785 object-position: center; 17810 object-position: center;
17786 height: 100%; 17811 height: 100%;
17787 width: 100%; 17812 width: 100%;
...@@ -18126,6 +18151,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -18126,6 +18151,7 @@ ul.sf_date_field .sf-datepicker {
18126 margin-bottom: 1.25rem; 18151 margin-bottom: 1.25rem;
18127 background-color: #000; 18152 background-color: #000;
18128 color: #fff; 18153 color: #fff;
18154 width: -moz-fit-content;
18129 width: fit-content; 18155 width: fit-content;
18130 display: block; 18156 display: block;
18131 position: relative; 18157 position: relative;
...@@ -19896,7 +19922,9 @@ ul.sf_date_field .sf-datepicker { ...@@ -19896,7 +19922,9 @@ ul.sf_date_field .sf-datepicker {
19896 } 19922 }
19897 } 19923 }
19898 .relevant-resources #relevant-resources td .rel .photo img { 19924 .relevant-resources #relevant-resources td .rel .photo img {
19925 -o-object-fit: cover;
19899 object-fit: cover; 19926 object-fit: cover;
19927 -o-object-position: center;
19900 object-position: center; 19928 object-position: center;
19901 height: 100%; 19929 height: 100%;
19902 width: 100%; 19930 width: 100%;
...@@ -20172,6 +20200,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -20172,6 +20200,7 @@ ul.sf_date_field .sf-datepicker {
20172 overflow: hidden; 20200 overflow: hidden;
20173 } 20201 }
20174 .news-and-stories-block ul .article-card.lg img { 20202 .news-and-stories-block ul .article-card.lg img {
20203 -o-object-fit: contain;
20175 object-fit: contain; 20204 object-fit: contain;
20176 min-width: 100%; 20205 min-width: 100%;
20177 min-height: 100%; 20206 min-height: 100%;
...@@ -20318,6 +20347,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -20318,6 +20347,7 @@ ul.sf_date_field .sf-datepicker {
20318 margin-top: 0.938rem; 20347 margin-top: 0.938rem;
20319 } 20348 }
20320 .article-card .image:not(.large) { 20349 .article-card .image:not(.large) {
20350 -o-object-fit: cover;
20321 object-fit: cover; 20351 object-fit: cover;
20322 overflow: hidden; 20352 overflow: hidden;
20323 position: relative; 20353 position: relative;
...@@ -20332,6 +20362,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -20332,6 +20362,7 @@ ul.sf_date_field .sf-datepicker {
20332 } 20362 }
20333 } 20363 }
20334 .article-card .image:not(.large) img { 20364 .article-card .image:not(.large) img {
20365 -o-object-fit: cover;
20335 object-fit: cover; 20366 object-fit: cover;
20336 height: 100%; 20367 height: 100%;
20337 width: 100%; 20368 width: 100%;
...@@ -20979,4 +21010,4 @@ body.understrap-no-sidebar .wp-block-cover.alignwide { ...@@ -20979,4 +21010,4 @@ body.understrap-no-sidebar .wp-block-cover.alignwide {
20979 border: 1px solid #e9ecef; 21010 border: 1px solid #e9ecef;
20980 } 21011 }
20981 21012
20982 /*# sourceMappingURL=child-theme.css.map */ 21013 /*# sourceMappingURL=child-theme.css.map */
...\ No newline at end of file ...\ No newline at end of file
......
This diff could not be displayed because it is too large.