optimized-react-component-library-xyz123 0.9.2 → 0.9.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.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +12 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/questions.css +1 -3
- package/src/css/styles.css +1 -27
package/package.json
CHANGED
package/src/css/questions.css
CHANGED
|
@@ -971,8 +971,6 @@ div.pts-root-question:last-child {
|
|
|
971
971
|
cursor: pointer;
|
|
972
972
|
background-color: transparent;
|
|
973
973
|
border: 0px;
|
|
974
|
-
position: relative;
|
|
975
|
-
right: -0.8rem;
|
|
976
974
|
}
|
|
977
975
|
|
|
978
976
|
.selectedFilesLinkButton:hover {
|
|
@@ -1007,7 +1005,7 @@ div.pts-root-question:last-child {
|
|
|
1007
1005
|
}
|
|
1008
1006
|
|
|
1009
1007
|
.addFile-error-list-container {
|
|
1010
|
-
width:
|
|
1008
|
+
width: 95%;
|
|
1011
1009
|
}
|
|
1012
1010
|
|
|
1013
1011
|
.error-close {
|
package/src/css/styles.css
CHANGED
|
@@ -288,44 +288,18 @@ textarea:focus-visible,
|
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
.pts-languageButton {
|
|
291
|
-
|
|
292
|
-
display: inline-flex;
|
|
293
|
-
align-items: center;
|
|
291
|
+
display: flex;
|
|
294
292
|
background: transparent;
|
|
295
293
|
border: transparent;
|
|
296
294
|
color: var(--action);
|
|
297
295
|
cursor: pointer;
|
|
298
296
|
}
|
|
299
297
|
|
|
300
|
-
.pts-languageButton::after {
|
|
301
|
-
content: "";
|
|
302
|
-
position: absolute;
|
|
303
|
-
left: 0px;
|
|
304
|
-
right: -0.3rem;
|
|
305
|
-
bottom: 0;
|
|
306
|
-
height: 0.2rem;
|
|
307
|
-
background-color: currentColor;
|
|
308
|
-
opacity: 0;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.pts-languageButton:hover::after {
|
|
312
|
-
opacity: 1;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
.languageIcon{
|
|
316
|
-
margin-top: 0.3rem;
|
|
317
|
-
padding-right: 0.6rem;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
298
|
.pts-languageButton svg {
|
|
321
299
|
width: 1.5rem;
|
|
322
300
|
height: 1.5rem;
|
|
323
301
|
}
|
|
324
302
|
|
|
325
|
-
.languageIcon{
|
|
326
|
-
padding-left: 0.6rem;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
303
|
/* ---------- TextBODY ---------- */
|
|
330
304
|
|
|
331
305
|
.MoreInfoIcon{
|