optimized-react-component-library-xyz123 0.9.3 → 0.10.1
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/questions.css +3 -1
- package/src/css/styles.css +27 -1
package/package.json
CHANGED
package/src/css/questions.css
CHANGED
|
@@ -971,6 +971,8 @@ 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;
|
|
974
976
|
}
|
|
975
977
|
|
|
976
978
|
.selectedFilesLinkButton:hover {
|
|
@@ -1005,7 +1007,7 @@ div.pts-root-question:last-child {
|
|
|
1005
1007
|
}
|
|
1006
1008
|
|
|
1007
1009
|
.addFile-error-list-container {
|
|
1008
|
-
width:
|
|
1010
|
+
width: 100%;
|
|
1009
1011
|
}
|
|
1010
1012
|
|
|
1011
1013
|
.error-close {
|
package/src/css/styles.css
CHANGED
|
@@ -288,18 +288,44 @@ textarea:focus-visible,
|
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
.pts-languageButton {
|
|
291
|
-
|
|
291
|
+
position: relative;
|
|
292
|
+
display: inline-flex;
|
|
293
|
+
align-items: center;
|
|
292
294
|
background: transparent;
|
|
293
295
|
border: transparent;
|
|
294
296
|
color: var(--action);
|
|
295
297
|
cursor: pointer;
|
|
296
298
|
}
|
|
297
299
|
|
|
300
|
+
.pts-languageButton::after {
|
|
301
|
+
content: "";
|
|
302
|
+
position: absolute;
|
|
303
|
+
left: 0.7rem;
|
|
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
|
+
|
|
298
320
|
.pts-languageButton svg {
|
|
299
321
|
width: 1.5rem;
|
|
300
322
|
height: 1.5rem;
|
|
301
323
|
}
|
|
302
324
|
|
|
325
|
+
.languageIcon{
|
|
326
|
+
padding-left: 0.6rem;
|
|
327
|
+
}
|
|
328
|
+
|
|
303
329
|
/* ---------- TextBODY ---------- */
|
|
304
330
|
|
|
305
331
|
.MoreInfoIcon{
|