@ordergroove/offers 2.26.7 → 2.26.10

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/offers.js CHANGED
@@ -125,11 +125,11 @@ var lib=(()=>{var ei=Object.create;var ke=Object.defineProperty;var ti=Object.ge
125
125
  height: var(--og-radio-height, 1.4em);
126
126
  margin: var(--og-radio-margin, 0);
127
127
  padding: 0;
128
- border: 1px solid var(--og-primary-color, black);
128
+ border: 1px solid var(--og-primary-color, var(--og-border-color, black));
129
129
  background: #fff;
130
130
  border-radius: 100%;
131
131
  vertical-align: middle;
132
- color: var(--og-primary-color, black);
132
+ color: var(--og-primary-color, var(--og-btn-color, black));
133
133
  }
134
134
 
135
135
  .radio {
@@ -141,23 +141,27 @@ var lib=(()=>{var ei=Object.create;var ke=Object.defineProperty;var ti=Object.ge
141
141
  }
142
142
  .checkbox.active::after,
143
143
  .radio.active::after {
144
- content: ' ';
145
144
  position: absolute;
146
145
  left: 0;
147
146
  top: 0;
148
147
  width: 100%;
149
148
  height: 100%;
150
- border-radius: 100%;
151
- background: var(--og-primary-color, black);
152
149
  box-sizing: border-box;
150
+ }
151
+
152
+ .radio.active::after {
153
+ content: ' ';
154
+ border-radius: 100%;
155
+ background: var(--og-primary-color, var(--og-radio-background-color, black));
153
156
  border: 2px solid #fff;
154
157
  }
158
+
155
159
  .checkbox.active::after {
156
160
  border: none;
157
161
  border-radius: 0;
158
162
  background: #fff;
159
163
  content: '\\2714';
160
- color: var(--og-primary-color, black);
164
+ color: var(--og-primary-color, var(--og-checkbox-color, black));
161
165
  line-height: 1;
162
166
  text-align: center;
163
167
  overflow: visible;