@sc-360-v2/storefront-cms-library 0.3.27 → 0.3.29

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.
@@ -74,6 +74,7 @@
74
74
  flex-wrap: wrap;
75
75
  gap: 16px;
76
76
  .attribute {
77
+ width: 100%;
77
78
  .label {
78
79
  display: block;
79
80
  font-size: var(--_ctm-dn-ct-as-is-ll-ft-se);
@@ -84,13 +85,13 @@
84
85
  line-height: var(--_ctm-dn-ct-as-is-ll-le-ht);
85
86
  &.required::after {
86
87
  content: " *";
87
- color: #dc2626;
88
+ color: var(--_error-500);
88
89
  }
89
90
  }
90
91
  }
91
92
  .error-text {
92
93
  font-size: 12px;
93
- color: #dc2626;
94
+ color: var(--_error-500);
94
95
  }
95
96
  .attribute_field {
96
97
  width: 100%;
@@ -100,7 +101,7 @@
100
101
 
101
102
  .attribute_form_field {
102
103
  width: 100% !important;
103
- padding: var(--_ctm-dn-ct-as-is-fd-pg);
104
+ padding: 12px;
104
105
  border-radius: var(--_ctm-dn-ct-as-is-fd-br-rs);
105
106
  border-style: var(--_ctm-dn-ct-as-is-fd-br-se);
106
107
  border-width: var(--_ctm-dn-ct-as-is-fd-br-wh);
@@ -111,14 +112,21 @@
111
112
  height: 40px;
112
113
 
113
114
  &:focus {
114
- border-color: #3b82f6;
115
- background-color: #fff;
115
+ border-color: var(--_primary-400);
116
+ outline: 2px solid var(--_primary-200);
116
117
  }
117
-
118
118
  &.error {
119
119
  border-color: #dc2626;
120
120
  background-color: #fef2f2;
121
121
  }
122
+ .react-datepicker-wrapper {
123
+ width: 100%;
124
+ .react-datepicker__close-icon::after {
125
+ background-color: transparent;
126
+ font-size: 25px;
127
+ color: var(--_gray-500);
128
+ }
129
+ }
122
130
  }
123
131
 
124
132
  textarea {
@@ -143,28 +151,33 @@
143
151
 
144
152
  .custom-upload {
145
153
  text-align: center;
146
- border: 1px solid #eaecf0;
154
+ border: 1px solid var(--_gray-200);
147
155
  border-radius: 6px;
148
156
  padding: 16px;
157
+ &:hover {
158
+ cursor: pointer;
159
+ border: 1px solid var(--_primary-200);
160
+ background: var(--_primary-25);
161
+ }
149
162
  .uploadicon {
150
163
  padding: 10px;
151
164
  background: #f2f4f7;
152
165
  display: inline-block;
153
166
  border-radius: 50%;
154
167
  margin-bottom: 12px;
155
- color: #475467;
168
+ color: var(--_gray-600);
156
169
  }
157
170
  p {
158
171
  padding-bottom: 4px;
159
- color: #475467;
172
+ color: var(--_gray-600);
160
173
  font-size: 14px;
161
174
  strong {
162
- color: #243dc6;
175
+ color: var(--_primary-400);
163
176
  font-weight: 600;
164
177
  }
165
178
  }
166
179
  span {
167
- color: #475467;
180
+ color: var(--_gray-600);
168
181
  font-size: 12px;
169
182
  }
170
183
  }
@@ -67,22 +67,23 @@ $button-padding: 6px 12px;
67
67
  }
68
68
 
69
69
  .overlay-panel {
70
- position: fixed;
70
+ position: absolute;
71
71
  // top: 100%;
72
72
  // left: -160px;
73
73
  background: $background-color;
74
74
  box-shadow: $shadow;
75
75
  border-radius: $border-radius;
76
- padding: $spacing-md;
76
+ padding: $spacing-sm;
77
77
  z-index: 1000;
78
+ display: flex;
79
+ flex-direction: column;
78
80
  // width: 220px;
79
81
  .header-template {
80
82
  display: flex;
81
83
  align-items: center;
82
84
  justify-content: space-between;
83
- padding-bottom: $spacing-md;
85
+ padding: $spacing-md;
84
86
  border-bottom: 1px solid #eee;
85
- margin-bottom: $spacing-md;
86
87
 
87
88
  span {
88
89
  font-size: $header-text-font-size;
@@ -99,7 +100,7 @@ $button-padding: 6px 12px;
99
100
  transition: color 0.2s ease-in-out;
100
101
 
101
102
  &:hover {
102
- color: color.scale($primary-color, $lightness: -10%); // Use color.scale
103
+ color: darken($primary-color, 5%);
103
104
  }
104
105
 
105
106
  &:focus {
@@ -110,31 +111,64 @@ $button-padding: 6px 12px;
110
111
  .option {
111
112
  display: flex;
112
113
  align-items: center;
113
- padding: $spacing-sm 0;
114
+ padding: 8px $spacing-md;
114
115
  cursor: pointer;
115
116
  font-size: $font-size;
117
+ min-height: 48px;
118
+ border-radius: 4px;
119
+
120
+ &.disabled {
121
+ .label-content {
122
+ width: 100%;
123
+ align-items: center;
124
+ }
125
+ }
126
+
127
+ .label-content {
128
+ display: flex;
129
+ flex-direction: column;
130
+ gap: 4px;
131
+ }
132
+
133
+ &:hover {
134
+ background-color: var(--_gray-100);
135
+ }
116
136
 
117
137
  input {
118
- margin-right: $spacing-sm;
138
+ margin-right: 8px;
119
139
  width: auto;
120
140
  cursor: pointer;
121
141
  }
122
142
  input[type="radio"] {
123
- margin-right: $spacing-sm;
143
+ margin-right: 8px;
124
144
  accent-color: $primary-color; // 🔴 Red color when selected
125
145
  }
146
+
147
+ &:has(input[type="radio"]:checked) {
148
+ background-color: var(--_gray-200);
149
+ }
126
150
  }
127
151
 
128
152
  .footer {
129
153
  display: flex;
130
154
  justify-content: space-between;
131
- margin-top: $spacing-md;
155
+ padding: 0px $spacing-md;
156
+ gap: $spacing-md;
132
157
 
133
158
  .dropdown_overlay_secondary_button {
134
159
  background: transparent;
135
160
  border: none;
136
161
  color: $text-color;
137
162
  cursor: pointer;
163
+ display: flex;
164
+ align-items: center;
165
+ justify-content: center;
166
+ flex: 1 0 0;
167
+ margin: $spacing-md 0px;
168
+ &:hover {
169
+ border: 1px solid $primary-color;
170
+ border-radius: 4px;
171
+ }
138
172
  }
139
173
 
140
174
  .dropdown_overlay_primary_button {
@@ -145,6 +179,15 @@ $button-padding: 6px 12px;
145
179
  border-radius: 4px;
146
180
  cursor: pointer;
147
181
  font-weight: 500;
182
+ display: flex;
183
+ align-items: center;
184
+ justify-content: center;
185
+ flex: 1 0 0;
186
+ margin: $spacing-md 0px;
187
+
188
+ &:hover {
189
+ background-color: lighten($primary-color, $amount: 5%);
190
+ }
148
191
  }
149
192
 
150
193
  button {
@@ -39,6 +39,15 @@ $dark-color: #343a40;
39
39
  padding: var(--_ctm-lt-pg);
40
40
  flex-direction: column;
41
41
  gap: var(--_ctm-lt-im-gp);
42
+ word-break: keep-all;
43
+
44
+ .chk_checkout_title {
45
+ font-size: 24px;
46
+ font-weight: 700;
47
+ line-height: 32px;
48
+ color: var(--_ctm-dn-it-hs-dn-cr);
49
+ font-family: var(--_ctm-dn-it-hs-dn-ft-fy);
50
+ }
42
51
 
43
52
  .accordion {
44
53
  border-radius: 4px;
@@ -122,7 +131,7 @@ $dark-color: #343a40;
122
131
  display: flex;
123
132
  flex-direction: column;
124
133
  gap: 0.75rem;
125
- max-width: calc(100% - 200px);
134
+ max-width: 85%;
126
135
 
127
136
  @media (max-width: 500px) {
128
137
  max-width: 100%;
@@ -221,22 +230,41 @@ $dark-color: #343a40;
221
230
  .chk_shipping_address_submit_btn {
222
231
  padding: 8px 24px;
223
232
  width: fit-content;
224
- background-color: var(--_ctm-dn-it-bn-dn-bd-cr);
225
- border-color: var(--_ctm-dn-it-bn-dn-br-cr);
226
- border-radius: var(--_ctm-dn-it-bn-dn-br-rs);
227
- border-style: var(--_ctm-dn-it-bn-dn-br-se);
228
- border-width: var(--_ctm-dn-it-bn-dn-br-wh);
229
- color: var(--_ctm-dn-it-bn-dn-cr);
230
- font-family: var(--_ctm-dn-it-bn-dn-ft-fy);
231
- font-size: var(--_ctm-dn-it-bn-dn-ft-se);
232
- font-style: var(--_ctm-dn-it-bn-dn-ft-se-ic);
233
- font-weight: var(--_ctm-dn-it-bn-dn-ft-wt);
234
- line-height: var(--_ctm-dn-it-bn-dn-le-ht);
235
- letter-spacing: var(--_ctm-dn-it-bn-dn-lr-sg);
236
- box-shadow: var(--_ctm-dn-it-bn-dn-sw-ae) var(--_ctm-dn-it-bn-dn-sw-br)
237
- var(--_ctm-dn-it-bn-dn-sw-sd) var(--_ctm-dn-it-bn-dn-sw-cr);
238
- text-align: var(--_ctm-dn-it-bn-dn-tt-an);
239
- text-decoration: var(--_ctm-dn-it-bn-dn-ue);
233
+ background-color: var(--_ctm-dn-it-bn-dn-dt-se-bd-cr);
234
+ border-color: var(--_ctm-dn-it-bn-dn-dt-se-br-cr);
235
+ border-radius: var(--_ctm-dn-it-bn-dn-dt-se-br-rs);
236
+ border-style: var(--_ctm-dn-it-bn-dn-dt-se-br-se);
237
+ border-width: var(--_ctm-dn-it-bn-dn-dt-se-br-wh);
238
+ color: var(--_ctm-dn-it-bn-dn-dt-se-cr);
239
+ font-family: var(--_ctm-dn-it-bn-dn-dt-se-ft-fy);
240
+ font-size: var(--_ctm-dn-it-bn-dn-dt-se-ft-se);
241
+ font-style: var(--_ctm-dn-it-bn-dn-dt-se-ft-se-ic);
242
+ font-weight: var(--_ctm-dn-it-bn-dn-dt-se-ft-wt);
243
+ line-height: var(--_ctm-dn-it-bn-dn-dt-se-le-ht);
244
+ letter-spacing: var(--_ctm-dn-it-bn-dn-dt-se-lr-sg);
245
+ box-shadow: var(--_ctm-dn-it-bn-dn-dt-se-sw-ae) var(--_ctm-dn-it-bn-dn-dt-se-sw-br)
246
+ var(--_ctm-dn-it-bn-dn-dt-se-sw-sd) var(--_ctm-dn-it-bn-dn-dt-se-sw-cr);
247
+ text-align: var(--_ctm-dn-it-bn-dn-dt-se-tt-an);
248
+ text-decoration: var(--_ctm-dn-it-bn-dn-dt-se-ue);
249
+
250
+ &:hover {
251
+ background-color: var(--_ctm-dn-it-bn-dn-hr-se-bd-cr);
252
+ border-color: var(--_ctm-dn-it-bn-dn-hr-se-br-cr);
253
+ border-radius: var(--_ctm-dn-it-bn-dn-hr-se-br-rs);
254
+ border-style: var(--_ctm-dn-it-bn-dn-hr-se-br-se);
255
+ border-width: var(--_ctm-dn-it-bn-dn-hr-se-br-wh);
256
+ color: var(--_ctm-dn-it-bn-dn-hr-se-cr);
257
+ font-family: var(--_ctm-dn-it-bn-dn-hr-se-ft-fy);
258
+ font-size: var(--_ctm-dn-it-bn-dn-hr-se-ft-se);
259
+ font-style: var(--_ctm-dn-it-bn-dn-hr-se-ft-se-ic);
260
+ font-weight: var(--_ctm-dn-it-bn-dn-hr-se-ft-wt);
261
+ line-height: var(--_ctm-dn-it-bn-dn-hr-se-le-ht);
262
+ letter-spacing: var(--_ctm-dn-it-bn-dn-hr-se-lr-sg);
263
+ box-shadow: var(--_ctm-dn-it-bn-dn-hr-se-sw-ae) var(--_ctm-dn-it-bn-dn-hr-se-sw-br)
264
+ var(--_ctm-dn-it-bn-dn-hr-se-sw-sd) var(--_ctm-dn-it-bn-dn-hr-se-sw-cr);
265
+ text-align: var(--_ctm-dn-it-bn-dn-hr-se-tt-an);
266
+ text-decoration: var(--_ctm-dn-it-bn-dn-hr-se-ue);
267
+ }
240
268
  }
241
269
 
242
270
  .chk_shipping_address_use_as_billing_address_chkbx {
@@ -398,6 +426,10 @@ $dark-color: #343a40;
398
426
  }
399
427
 
400
428
  .shipping-method {
429
+ display: flex;
430
+ flex-direction: column;
431
+ gap: var(--_ctm-lt-im-gp);
432
+
401
433
  &__grid {
402
434
  display: grid;
403
435
  grid-template-columns: 1fr;
@@ -423,7 +455,6 @@ $dark-color: #343a40;
423
455
  &__option {
424
456
  display: flex;
425
457
  align-items: center;
426
- padding: 12px 16px;
427
458
  cursor: pointer;
428
459
  transition: all 0.2s ease;
429
460
 
@@ -499,22 +530,43 @@ $dark-color: #343a40;
499
530
  }
500
531
 
501
532
  &__remove_card_btn {
502
- background-color: var(--_ctm-dn-sy-it-bn-dn-bd-cr);
503
- border-color: var(--_ctm-dn-sy-it-bn-dn-br-cr);
504
- border-radius: var(--_ctm-dn-sy-it-bn-dn-br-rs);
505
- border-style: var(--_ctm-dn-sy-it-bn-dn-br-se);
506
- border-width: var(--_ctm-dn-sy-it-bn-dn-br-wh);
507
- color: var(--_ctm-dn-sy-it-bn-dn-cr);
508
- font-family: var(--_ctm-dn-sy-it-bn-dn-ft-fy);
509
- font-size: var(--_ctm-dn-sy-it-bn-dn-ft-se);
510
- font-style: var(--_ctm-dn-sy-it-bn-dn-ft-se-ic);
511
- font-weight: var(--_ctm-dn-sy-it-bn-dn-ft-wt);
512
- line-height: var(--_ctm-dn-sy-it-bn-dn-le-ht);
513
- letter-spacing: var(--_ctm-dn-sy-it-bn-dn-lr-sg);
514
- box-shadow: var(--_ctm-dn-sy-it-bn-dn-sw-ae) var(--_ctm-dn-sy-it-bn-dn-sw-br)
515
- var(--_ctm-dn-sy-it-bn-dn-sw-sd) var(--_ctm-dn-sy-it-bn-dn-sw-cr);
516
- text-align: var(--_ctm-dn-sy-it-bn-dn-tt-an);
517
- text-decoration: var(--_ctm-dn-sy-it-bn-dn-ue);
533
+ background-color: var(--_ctm-dn-sy-it-bn-dn-dt-se-bd-cr);
534
+ border-color: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-cr);
535
+ border-radius: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-rs);
536
+ border-style: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-se);
537
+ border-width: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-wh);
538
+ color: var(--_ctm-dn-sy-it-bn-dn-dt-se-cr);
539
+ font-family: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-fy);
540
+ font-size: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-se);
541
+ font-style: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-se-ic);
542
+ font-weight: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-wt);
543
+ line-height: var(--_ctm-dn-sy-it-bn-dn-dt-se-le-ht);
544
+ letter-spacing: var(--_ctm-dn-sy-it-bn-dn-dt-se-lr-sg);
545
+ box-shadow: var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-ae)
546
+ var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-br) var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-sd)
547
+ var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-cr);
548
+ text-align: var(--_ctm-dn-sy-it-bn-dn-dt-se-tt-an);
549
+ text-decoration: var(--_ctm-dn-sy-it-bn-dn-dt-se-ue);
550
+
551
+ &:hover {
552
+ background-color: var(--_ctm-dn-sy-it-bn-dn-hr-se-bd-cr);
553
+ border-color: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-cr);
554
+ border-radius: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-rs);
555
+ border-style: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-se);
556
+ border-width: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-wh);
557
+ color: var(--_ctm-dn-sy-it-bn-dn-hr-se-cr);
558
+ font-family: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-fy);
559
+ font-size: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-se);
560
+ font-style: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-se-ic);
561
+ font-weight: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-wt);
562
+ line-height: var(--_ctm-dn-sy-it-bn-dn-hr-se-le-ht);
563
+ letter-spacing: var(--_ctm-dn-sy-it-bn-dn-hr-se-lr-sg);
564
+ box-shadow: var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-ae)
565
+ var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-br) var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-sd)
566
+ var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-cr);
567
+ text-align: var(--_ctm-dn-sy-it-bn-dn-hr-se-tt-an);
568
+ text-decoration: var(--_ctm-dn-sy-it-bn-dn-hr-se-ue);
569
+ }
518
570
  }
519
571
 
520
572
  &__info_wrapper {
@@ -745,22 +797,43 @@ $dark-color: #343a40;
745
797
  }
746
798
 
747
799
  &_secondary_button {
748
- background-color: var(--_ctm-dn-sy-it-bn-dn-bd-cr);
749
- border-color: var(--_ctm-dn-sy-it-bn-dn-br-cr);
750
- border-radius: var(--_ctm-dn-sy-it-bn-dn-br-rs);
751
- border-style: var(--_ctm-dn-sy-it-bn-dn-br-se);
752
- border-width: var(--_ctm-dn-sy-it-bn-dn-br-wh);
753
- color: var(--_ctm-dn-sy-it-bn-dn-cr);
754
- font-family: var(--_ctm-dn-sy-it-bn-dn-ft-fy);
755
- font-size: var(--_ctm-dn-sy-it-bn-dn-ft-se);
756
- font-style: var(--_ctm-dn-sy-it-bn-dn-ft-se-ic);
757
- font-weight: var(--_ctm-dn-sy-it-bn-dn-ft-wt);
758
- line-height: var(--_ctm-dn-sy-it-bn-dn-le-ht);
759
- letter-spacing: var(--_ctm-dn-sy-it-bn-dn-lr-sg);
760
- box-shadow: var(--_ctm-dn-sy-it-bn-dn-sw-ae) var(--_ctm-dn-sy-it-bn-dn-sw-br)
761
- var(--_ctm-dn-sy-it-bn-dn-sw-sd) var(--_ctm-dn-sy-it-bn-dn-sw-cr);
762
- text-align: var(--_ctm-dn-sy-it-bn-dn-tt-an);
763
- text-decoration: var(--_ctm-dn-sy-it-bn-dn-ue);
800
+ background-color: var(--_ctm-dn-sy-it-bn-dn-dt-se-bd-cr);
801
+ border-color: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-cr);
802
+ border-radius: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-rs);
803
+ border-style: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-se);
804
+ border-width: var(--_ctm-dn-sy-it-bn-dn-dt-se-br-wh);
805
+ color: var(--_ctm-dn-sy-it-bn-dn-dt-se-cr);
806
+ font-family: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-fy);
807
+ font-size: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-se);
808
+ font-style: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-se-ic);
809
+ font-weight: var(--_ctm-dn-sy-it-bn-dn-dt-se-ft-wt);
810
+ line-height: var(--_ctm-dn-sy-it-bn-dn-dt-se-le-ht);
811
+ letter-spacing: var(--_ctm-dn-sy-it-bn-dn-dt-se-lr-sg);
812
+ box-shadow: var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-ae)
813
+ var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-br) var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-sd)
814
+ var(--_ctm-dn-sy-it-bn-dn-dt-se-sw-cr);
815
+ text-align: var(--_ctm-dn-sy-it-bn-dn-dt-se-tt-an);
816
+ text-decoration: var(--_ctm-dn-sy-it-bn-dn-dt-se-ue);
817
+
818
+ &:hover {
819
+ background-color: var(--_ctm-dn-sy-it-bn-dn-hr-se-bd-cr);
820
+ border-color: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-cr);
821
+ border-radius: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-rs);
822
+ border-style: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-se);
823
+ border-width: var(--_ctm-dn-sy-it-bn-dn-hr-se-br-wh);
824
+ color: var(--_ctm-dn-sy-it-bn-dn-hr-se-cr);
825
+ font-family: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-fy);
826
+ font-size: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-se);
827
+ font-style: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-se-ic);
828
+ font-weight: var(--_ctm-dn-sy-it-bn-dn-hr-se-ft-wt);
829
+ line-height: var(--_ctm-dn-sy-it-bn-dn-hr-se-le-ht);
830
+ letter-spacing: var(--_ctm-dn-sy-it-bn-dn-hr-se-lr-sg);
831
+ box-shadow: var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-ae)
832
+ var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-br) var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-sd)
833
+ var(--_ctm-dn-sy-it-bn-dn-hr-se-sw-cr);
834
+ text-align: var(--_ctm-dn-sy-it-bn-dn-hr-se-tt-an);
835
+ text-decoration: var(--_ctm-dn-sy-it-bn-dn-hr-se-ue);
836
+ }
764
837
  }
765
838
 
766
839
  &_button_wrapper {
@@ -932,22 +1005,42 @@ $dark-color: #343a40;
932
1005
 
933
1006
  .chk_submit-btn {
934
1007
  padding: 8px 24px;
935
- background-color: var(--_ctm-dn-it-bn-dn-bd-cr);
936
- border-color: var(--_ctm-dn-it-bn-dn-br-cr);
937
- border-radius: var(--_ctm-dn-it-bn-dn-br-rs);
938
- border-style: var(--_ctm-dn-it-bn-dn-br-se);
939
- border-width: var(--_ctm-dn-it-bn-dn-br-wh);
940
- color: var(--_ctm-dn-it-bn-dn-cr);
941
- font-family: var(--_ctm-dn-it-bn-dn-ft-fy);
942
- font-size: var(--_ctm-dn-it-bn-dn-ft-se);
943
- font-style: var(--_ctm-dn-it-bn-dn-ft-se-ic);
944
- font-weight: var(--_ctm-dn-it-bn-dn-ft-wt);
945
- line-height: var(--_ctm-dn-it-bn-dn-le-ht);
946
- letter-spacing: var(--_ctm-dn-it-bn-dn-lr-sg);
947
- box-shadow: var(--_ctm-dn-it-bn-dn-sw-ae) var(--_ctm-dn-it-bn-dn-sw-br)
948
- var(--_ctm-dn-it-bn-dn-sw-sd) var(--_ctm-dn-it-bn-dn-sw-cr);
949
- text-align: var(--_ctm-dn-it-bn-dn-tt-an);
950
- text-decoration: var(--_ctm-dn-it-bn-dn-ue);
1008
+ width: fit-content;
1009
+ background-color: var(--_ctm-dn-it-bn-dn-dt-se-bd-cr);
1010
+ border-color: var(--_ctm-dn-it-bn-dn-dt-se-br-cr);
1011
+ border-radius: var(--_ctm-dn-it-bn-dn-dt-se-br-rs);
1012
+ border-style: var(--_ctm-dn-it-bn-dn-dt-se-br-se);
1013
+ border-width: var(--_ctm-dn-it-bn-dn-dt-se-br-wh);
1014
+ color: var(--_ctm-dn-it-bn-dn-dt-se-cr);
1015
+ font-family: var(--_ctm-dn-it-bn-dn-dt-se-ft-fy);
1016
+ font-size: var(--_ctm-dn-it-bn-dn-dt-se-ft-se);
1017
+ font-style: var(--_ctm-dn-it-bn-dn-dt-se-ft-se-ic);
1018
+ font-weight: var(--_ctm-dn-it-bn-dn-dt-se-ft-wt);
1019
+ line-height: var(--_ctm-dn-it-bn-dn-dt-se-le-ht);
1020
+ letter-spacing: var(--_ctm-dn-it-bn-dn-dt-se-lr-sg);
1021
+ box-shadow: var(--_ctm-dn-it-bn-dn-dt-se-sw-ae) var(--_ctm-dn-it-bn-dn-dt-se-sw-br)
1022
+ var(--_ctm-dn-it-bn-dn-dt-se-sw-sd) var(--_ctm-dn-it-bn-dn-dt-se-sw-cr);
1023
+ text-align: var(--_ctm-dn-it-bn-dn-dt-se-tt-an);
1024
+ text-decoration: var(--_ctm-dn-it-bn-dn-dt-se-ue);
1025
+
1026
+ &:hover {
1027
+ background-color: var(--_ctm-dn-it-bn-dn-hr-se-bd-cr);
1028
+ border-color: var(--_ctm-dn-it-bn-dn-hr-se-br-cr);
1029
+ border-radius: var(--_ctm-dn-it-bn-dn-hr-se-br-rs);
1030
+ border-style: var(--_ctm-dn-it-bn-dn-hr-se-br-se);
1031
+ border-width: var(--_ctm-dn-it-bn-dn-hr-se-br-wh);
1032
+ color: var(--_ctm-dn-it-bn-dn-hr-se-cr);
1033
+ font-family: var(--_ctm-dn-it-bn-dn-hr-se-ft-fy);
1034
+ font-size: var(--_ctm-dn-it-bn-dn-hr-se-ft-se);
1035
+ font-style: var(--_ctm-dn-it-bn-dn-hr-se-ft-se-ic);
1036
+ font-weight: var(--_ctm-dn-it-bn-dn-hr-se-ft-wt);
1037
+ line-height: var(--_ctm-dn-it-bn-dn-hr-se-le-ht);
1038
+ letter-spacing: var(--_ctm-dn-it-bn-dn-hr-se-lr-sg);
1039
+ box-shadow: var(--_ctm-dn-it-bn-dn-hr-se-sw-ae) var(--_ctm-dn-it-bn-dn-hr-se-sw-br)
1040
+ var(--_ctm-dn-it-bn-dn-hr-se-sw-sd) var(--_ctm-dn-it-bn-dn-hr-se-sw-cr);
1041
+ text-align: var(--_ctm-dn-it-bn-dn-hr-se-tt-an);
1042
+ text-decoration: var(--_ctm-dn-it-bn-dn-hr-se-ue);
1043
+ }
951
1044
  }
952
1045
 
953
1046
  .chk_checkbox_wrapper {
package/dist/filters.scss CHANGED
@@ -2176,7 +2176,6 @@ $resizeActive: '[data-cms-element-resizer="true"]';
2176
2176
  border: 1px solid #ddd;
2177
2177
  border-radius: 5px;
2178
2178
  white-space: nowrap;
2179
- z-index: 1;
2180
2179
  padding-inline: 15px;
2181
2180
  }
2182
2181
 
@@ -53,9 +53,6 @@
53
53
 
54
54
  .fb_field {
55
55
  width: 100%;
56
- .react-datepicker-popper {
57
- width: 330px !important;
58
- }
59
56
 
60
57
  .toggle_input {
61
58
  display: flex;
@@ -64,7 +61,21 @@
64
61
  height: 18px;
65
62
  }
66
63
  }
64
+ .editor {
65
+ padding-inline: 0px !important;
66
+ .fr-toolbar.fr-top {
67
+ border-top-left-radius: 6px;
68
+ border-top-right-radius: 6px;
69
+ }
70
+ .fr-second-toolbar {
71
+ border-bottom-left-radius: 6px;
72
+ border-bottom-right-radius: 6px;
73
+ }
74
+ }
67
75
 
76
+ .react-datepicker-wrapper {
77
+ display: block;
78
+ }
68
79
  input:not([type="checkbox"][type="radio"]),
69
80
  select {
70
81
  border: 1px solid var(--_gray-300);
@@ -85,6 +96,7 @@
85
96
  resize: vertical;
86
97
  border-radius: 6px;
87
98
  background-color: var(--_base-white);
99
+ border: 1px solid var(--_gray-300);
88
100
  padding: 12px;
89
101
  }
90
102
  .error_styles {
@@ -92,6 +104,8 @@
92
104
  }
93
105
  .label_with_radio {
94
106
  display: flex;
107
+ align-items: center;
108
+ gap: 4px;
95
109
  label {
96
110
  margin-right: 12px;
97
111
  display: flex;
@@ -117,8 +131,8 @@
117
131
  .custom-mark {
118
132
  width: 20px;
119
133
  height: 20px;
120
- background-color: #fff;
121
- border: 2px solid #ccc;
134
+ background-color: var(--_base-white);
135
+ border: 2px solid var(--_gray-400);
122
136
  margin: 0px 4px;
123
137
  position: relative;
124
138
  transition: all 0.2s ease;
@@ -147,8 +161,8 @@
147
161
  }
148
162
 
149
163
  input:checked + .custom-mark {
150
- background-color: #4caf50;
151
- border-color: #4caf50;
164
+ background-color: var(--_primary-400);
165
+ border-color: var(--_primary-400);
152
166
 
153
167
  &::after {
154
168
  opacity: 1;
@@ -165,15 +179,15 @@
165
179
  left: 50%;
166
180
  width: 10px;
167
181
  height: 10px;
168
- background-color: #fff;
182
+ background-color: var(--_base-white);
169
183
  border-radius: 50%;
170
184
  transform: translate(-50%, -50%);
171
185
  }
172
186
  }
173
187
 
174
188
  input:checked + .custom-mark {
175
- background-color: #4caf50;
176
- border-color: #4caf50;
189
+ background-color: var(--_primary-400);
190
+ border-color: var(--_primary-400);
177
191
 
178
192
  &::after {
179
193
  opacity: 1;
@@ -187,7 +201,8 @@
187
201
  }
188
202
  &:has(input[type="checkbox"]) {
189
203
  display: flex;
190
- align-items: center;
204
+ flex-direction: column;
205
+ // align-items: center;
191
206
  gap: 8px;
192
207
  }
193
208
  input[type="checkbox"] {