optimized-react-component-library-xyz123 0.18.2 → 0.18.4
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/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +11 -0
- package/src/css/questions.css +2 -0
- package/src/css/styles.css +17 -0
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -242,6 +242,17 @@
|
|
|
242
242
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
+
/* ---------- SINGLE CHECKBOX ---------- */
|
|
246
|
+
.pts-singleCheckbox-container input[type='checkbox'] {
|
|
247
|
+
background-color: var(--dark-main);
|
|
248
|
+
border-color: var(--dark-info);
|
|
249
|
+
}
|
|
250
|
+
.pts-singleCheckbox-container input[type='checkbox']:checked {
|
|
251
|
+
background-color: var(--dark-action);
|
|
252
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='black' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
|
|
245
256
|
/* ---------- TEXTAREA ---------- */
|
|
246
257
|
|
|
247
258
|
.pts-textArea-container textarea {
|
package/src/css/questions.css
CHANGED
|
@@ -172,6 +172,7 @@ div.pts-root-question:last-child {
|
|
|
172
172
|
border-radius: 0.2rem;
|
|
173
173
|
|
|
174
174
|
cursor: pointer;
|
|
175
|
+
margin-left: 0px;
|
|
175
176
|
}
|
|
176
177
|
|
|
177
178
|
.pts-singleCheckbox-container input[type='checkbox']:checked {
|
|
@@ -204,6 +205,7 @@ div.pts-root-question:last-child {
|
|
|
204
205
|
border: 0.15rem solid var(--info);
|
|
205
206
|
border-radius: 0.2rem;
|
|
206
207
|
cursor: pointer;
|
|
208
|
+
margin-left: 0px;
|
|
207
209
|
}
|
|
208
210
|
|
|
209
211
|
.pts-checkboxGroup-container input[type='checkbox']:checked {
|
package/src/css/styles.css
CHANGED
|
@@ -140,6 +140,10 @@ p[aria-live='assertive']:empty {
|
|
|
140
140
|
padding: 0;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
+
.pts-root-categoryDescription {
|
|
144
|
+
margin-top: 0px;
|
|
145
|
+
}
|
|
146
|
+
|
|
143
147
|
.pts-first-category-section {
|
|
144
148
|
padding-top: 0;
|
|
145
149
|
border-top-left-radius: 0;
|
|
@@ -807,4 +811,17 @@ textarea:focus-visible,
|
|
|
807
811
|
.unsetMargin-Padding {
|
|
808
812
|
margin: 0;
|
|
809
813
|
padding: 0;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.visually-hidden {
|
|
817
|
+
position: absolute !important;
|
|
818
|
+
width: 1px;
|
|
819
|
+
height: 1px;
|
|
820
|
+
padding: 0;
|
|
821
|
+
margin: -1px;
|
|
822
|
+
overflow: hidden;
|
|
823
|
+
clip: rect(0, 0, 0, 0);
|
|
824
|
+
clip-path: inset(50%);
|
|
825
|
+
white-space: nowrap;
|
|
826
|
+
border: 0;
|
|
810
827
|
}
|