optimized-react-component-library-xyz123 0.1.113 → 0.1.115
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 +74 -84
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +74 -84
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +49 -0
- package/src/css/styles.css +164 -419
package/package.json
CHANGED
package/src/css/darkMode.css
CHANGED
|
@@ -236,6 +236,55 @@
|
|
|
236
236
|
.textfield-about{
|
|
237
237
|
color: var(--dark-info);
|
|
238
238
|
}
|
|
239
|
+
|
|
240
|
+
/* ---------- ADD FILE QUESTION ---------- */
|
|
241
|
+
.filePickText{
|
|
242
|
+
color: var(--dark-text)!important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.filePickButton {
|
|
246
|
+
color: var(--dark-main) !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.DropZone{
|
|
250
|
+
background-color:var(--dark-main);
|
|
251
|
+
color: var(--dark-text);
|
|
252
|
+
border-color: var(--dark-info);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.DropZone::before {
|
|
256
|
+
border-color: var(--dark-info);
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.DropZone:hover {
|
|
260
|
+
background-color:var(--dark-background);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.DropZone svg {
|
|
264
|
+
background: var(--dark-action);
|
|
265
|
+
border-color: var(--dark-action);
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.DropZone svg path{
|
|
269
|
+
fill: var(--dark-main);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.selectedFilesLinkButton,
|
|
273
|
+
.error-close{
|
|
274
|
+
color: var(--dark-action);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.errorMessageAddingFile{
|
|
278
|
+
color: var(--dark-error);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.selectedFilesLinkButton:hover,
|
|
282
|
+
.error-close:hover{
|
|
283
|
+
color: var(--dark-action);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
239
288
|
|
|
240
289
|
/* ---------- EDIT PREVIEW LINK ---------- */
|
|
241
290
|
|