jquery-ui
5 years ago
photoswipe
4 months ago
_animation.scss
3 years ago
_fonts.scss
2 years ago
_mixins.scss
1 month ago
_variables.scss
1 month ago
activation-rtl.css
2 months ago
activation.css
2 months ago
activation.scss
2 months ago
address-autocomplete-rtl.css
2 months ago
address-autocomplete.css
2 months ago
address-autocomplete.scss
2 months ago
admin-rtl.css
1 month ago
admin.css
1 month ago
admin.scss
1 month ago
auth-rtl.css
1 month ago
auth.css
1 month ago
auth.scss
1 year ago
brands-admin-rtl.css
1 year ago
brands-admin.css
1 year ago
brands-admin.scss
1 year ago
brands-rtl.css
1 year ago
brands.css
1 year ago
brands.scss
1 year ago
coming-soon-entire-site-deprecated-rtl.css
1 year ago
coming-soon-entire-site-deprecated.css
1 year ago
coming-soon-entire-site-deprecated.scss
1 year ago
coming-soon-rtl.css
1 year ago
coming-soon.css
1 year ago
coming-soon.scss
1 year ago
dashboard-rtl.css
1 month ago
dashboard-setup-rtl.css
4 years ago
dashboard-setup.css
4 years ago
dashboard-setup.scss
3 years ago
dashboard.css
1 month ago
dashboard.scss
3 months ago
forms-rtl.css
2 months ago
forms.css
2 months ago
forms.scss
2 months ago
helper-rtl.css
1 month ago
helper.css
1 month ago
helper.scss
1 month ago
marketplace-suggestions-rtl.css
1 month ago
marketplace-suggestions.css
1 month ago
marketplace-suggestions.scss
11 months ago
menu-rtl.css
1 month ago
menu.css
1 month ago
menu.scss
2 years ago
network-order-widget-rtl.css
4 years ago
network-order-widget.css
4 years ago
network-order-widget.scss
3 years ago
order-review-rtl.css
1 month ago
order-review.css
1 month ago
order-review.scss
1 month ago
prettyPhoto-rtl.css
1 month ago
prettyPhoto.css
1 month ago
prettyPhoto.scss
3 years ago
privacy-rtl.css
6 years ago
privacy.css
6 years ago
privacy.scss
3 years ago
reports-print-rtl.css
3 years ago
reports-print.css
3 years ago
reports-print.scss
3 years ago
select2.css
2 months ago
select2.scss
2 months ago
twenty-nineteen-rtl.css
2 months ago
twenty-nineteen.css
2 months ago
twenty-nineteen.scss
10 months ago
twenty-seventeen-rtl.css
2 months ago
twenty-seventeen.css
2 months ago
twenty-seventeen.scss
10 months ago
twenty-twenty-one-admin-rtl.css
2 years ago
twenty-twenty-one-admin.css
2 years ago
twenty-twenty-one-admin.scss
2 years ago
twenty-twenty-one-rtl.css
2 months ago
twenty-twenty-one.css
2 months ago
twenty-twenty-one.scss
3 months ago
twenty-twenty-rtl.css
2 months ago
twenty-twenty-three-rtl.css
2 months ago
twenty-twenty-three.css
2 months ago
twenty-twenty-three.scss
4 months ago
twenty-twenty-two-rtl.css
1 month ago
twenty-twenty-two.css
1 month ago
twenty-twenty-two.scss
4 months ago
twenty-twenty.css
2 months ago
twenty-twenty.scss
3 months ago
variation-gallery-admin-rtl.css
1 month ago
variation-gallery-admin.css
1 month ago
variation-gallery-admin.scss
1 month ago
wc-setup-rtl.css
1 month ago
wc-setup.css
1 month ago
wc-setup.scss
2 months ago
woocommerce-blocktheme-rtl.css
1 month ago
woocommerce-blocktheme.css
1 month ago
woocommerce-blocktheme.scss
10 months ago
woocommerce-classictheme-editor-fonts-rtl.css
1 year ago
woocommerce-classictheme-editor-fonts.css
1 year ago
woocommerce-classictheme-editor-fonts.scss
1 year ago
woocommerce-layout-rtl.css
1 month ago
woocommerce-layout.css
1 month ago
woocommerce-layout.scss
1 year ago
woocommerce-rtl.css
1 month ago
woocommerce-smallscreen-rtl.css
1 month ago
woocommerce-smallscreen.css
1 month ago
woocommerce-smallscreen.scss
2 months ago
woocommerce.css
1 month ago
woocommerce.scss
4 months ago
address-autocomplete.scss
100 lines
| 1 | .woocommerce-address-suggestions { |
| 2 | position: absolute; |
| 3 | z-index: 1000; |
| 4 | width: 100%; |
| 5 | max-width: 100%; |
| 6 | margin-top: 4px; |
| 7 | background: #fff; |
| 8 | border: 1px solid #ddd; |
| 9 | border-radius: 4px; |
| 10 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); |
| 11 | box-sizing: border-box; |
| 12 | display: none; |
| 13 | |
| 14 | .suggestions-list { |
| 15 | list-style: none; |
| 16 | margin: 0; |
| 17 | padding: 0; |
| 18 | max-height: 200px; |
| 19 | overflow-y: auto; |
| 20 | |
| 21 | li { |
| 22 | padding: 8px 12px; |
| 23 | font-size: 14px; |
| 24 | cursor: pointer; |
| 25 | text-overflow: ellipsis; |
| 26 | overflow: hidden; |
| 27 | white-space: nowrap; |
| 28 | color: var(--wc-form-color-text, #444); |
| 29 | |
| 30 | &:last-child { |
| 31 | border-bottom: none; |
| 32 | } |
| 33 | |
| 34 | &:hover, |
| 35 | &.active { |
| 36 | background-color: var(--wp-admin-theme-color, #0073aa); |
| 37 | color: #fff; |
| 38 | } |
| 39 | |
| 40 | &:focus { |
| 41 | outline: none; |
| 42 | background-color: var(--wp-admin-theme-color, #0073aa); |
| 43 | color: #fff; |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | .woocommerce-address-autocomplete-branding { |
| 49 | background: #d3d3d3; |
| 50 | padding: 8px 12px; |
| 51 | color: rgba(34, 34, 34, 0.66); |
| 52 | font-size: 12px; |
| 53 | display: flex; |
| 54 | align-items: center; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | // Ensure the input container has relative positioning |
| 59 | .woocommerce-input-wrapper:has(#billing_address_1, #shipping_address_1) { |
| 60 | position: relative; |
| 61 | display: block; |
| 62 | |
| 63 | // Default to showing nothing if autocomplete is not available. |
| 64 | .address-search-icon { |
| 65 | display: none; |
| 66 | } |
| 67 | |
| 68 | // Search icon styles |
| 69 | &.autocomplete-available { |
| 70 | input#billing_address_1, |
| 71 | input#shipping_address_1 { |
| 72 | padding-right: calc(1.1rem + 16px); // Adjust padding for icon |
| 73 | } |
| 74 | |
| 75 | .address-search-icon { |
| 76 | display: block; |
| 77 | position: absolute; |
| 78 | inset-inline-end: 16px; |
| 79 | top: 50%; |
| 80 | transform: translateY(-50%); |
| 81 | pointer-events: none; |
| 82 | width: 16px; |
| 83 | height: 16px; |
| 84 | line-height: 16px; |
| 85 | z-index: 1; |
| 86 | |
| 87 | // Mask needed to ensure the SVG has the correct color. |
| 88 | background-color: var(--wc-form-color-text, #444); |
| 89 | mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNCAxNCIgZm9jdXNhYmxlPSJmYWxzZSIgYXJpYS1oaWRkZW49InRydWUiPgogIDxjaXJjbGUgY3g9IjYiIGN5PSI2IiByPSI0IiBmaWxsPSJub25lIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSI+PC9jaXJjbGU+CiAgPHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0ibTkuMjUgOS4yNSAyLjUgMi41Ij48L3BhdGg+Cjwvc3ZnPg==") |
| 90 | no-repeat center; |
| 91 | mask-size: contain; |
| 92 | |
| 93 | // Safari support. |
| 94 | -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNCAxNCIgZm9jdXNhYmxlPSJmYWxzZSIgYXJpYS1oaWRkZW49InRydWUiPgogIDxjaXJjbGUgY3g9IjYiIGN5PSI2IiByPSI0IiBmaWxsPSJub25lIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSI+PC9jaXJjbGU+CiAgPHBhdGggc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIgZD0ibTkuMjUgOS4yNSAyLjUgMi41Ij48L3BhdGg+Cjwvc3ZnPg==") |
| 95 | no-repeat center; |
| 96 | -webkit-mask-size: contain; |
| 97 | } |
| 98 | } |
| 99 | } |
| 100 |