@sc-360-v2/storefront-cms-library 0.4.35 → 0.4.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/add-products-tab.scss +9 -1
- package/dist/builder.js +1 -1
- package/dist/buyForHeaders.scss +1 -1
- package/dist/cart-details.scss +83 -77
- package/dist/confirm-modal.scss +351 -0
- package/dist/coupon.scss +801 -63
- package/dist/dropdownTemplate.scss +38 -0
- package/dist/embroider-template-1-v2.scss +238 -19
- package/dist/gallery-slider-temp.scss +7 -0
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/login.scss +11 -3
- package/dist/product-actions.scss +12 -4
- package/dist/product-image.scss +4 -0
- package/dist/static-global.scss +88 -0
- package/dist/types/builder/tools/element-edit/icon-list.d.ts +1 -0
- package/dist/widget.scss +2 -0
- package/package.json +1 -1
|
@@ -113,11 +113,19 @@ div[data-div-type="cms-buy-for-tabs-container-wrapper"] {
|
|
|
113
113
|
.search-input {
|
|
114
114
|
display: flex;
|
|
115
115
|
align-items: center;
|
|
116
|
-
border: 1px solid var(--
|
|
116
|
+
border: 1px solid var(--_gray-300);
|
|
117
117
|
border-radius: 4px;
|
|
118
118
|
padding: 8px 12px;
|
|
119
119
|
background: transparent;
|
|
120
120
|
// height: 40px;
|
|
121
|
+
transition:
|
|
122
|
+
outline border 0.2s ease,
|
|
123
|
+
border 0.2s ease;
|
|
124
|
+
&:focus-within {
|
|
125
|
+
// border: 1px solid var(--_thm-cs-tt-by-tt);
|
|
126
|
+
border: 1px solid color-mix(in srgb, var(--_thm-cs-tt-by-tt) 40%, transparent);
|
|
127
|
+
outline: 2px solid color-mix(in srgb, var(--_thm-cs-tt-by-tt) 10%, transparent);
|
|
128
|
+
}
|
|
121
129
|
|
|
122
130
|
.icon {
|
|
123
131
|
margin-right: 8px;
|