survey-react 1.9.81 → 1.9.83
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/defaultV2.css +168 -137
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +63 -51
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +10 -6
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +136 -105
- package/survey.react.js +455 -204
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/defaultV2.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.83
|
3
3
|
* Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -114,7 +114,7 @@
|
|
114
114
|
border: none;
|
115
115
|
border-radius: 2px;
|
116
116
|
background-color: transparent;
|
117
|
-
color: var(--foreground, #161616);
|
117
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
118
118
|
cursor: pointer;
|
119
119
|
font-family: var(--font-family, var(--font-family));
|
120
120
|
overflow-x: hidden;
|
@@ -159,7 +159,7 @@ button.sv-action-bar-item {
|
|
159
159
|
display: block;
|
160
160
|
}
|
161
161
|
.sv-action-bar-item__icon use {
|
162
|
-
fill: var(--foreground-light, #909090);
|
162
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
163
163
|
}
|
164
164
|
|
165
165
|
.sv-action-bar-item:not(.sv-action-bar-item--pressed):hover:enabled,
|
@@ -314,11 +314,15 @@ sv-popup {
|
|
314
314
|
left: 0;
|
315
315
|
top: 0;
|
316
316
|
width: 100vw;
|
317
|
-
height: 100vh;
|
318
317
|
outline: none;
|
318
|
+
height: 100vh;
|
319
319
|
z-index: 1500;
|
320
320
|
}
|
321
321
|
|
322
|
+
.sv-dropdown-popup {
|
323
|
+
height: 0;
|
324
|
+
}
|
325
|
+
|
322
326
|
.sv-popup__container {
|
323
327
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
|
324
328
|
position: absolute;
|
@@ -398,7 +402,7 @@ sv-popup {
|
|
398
402
|
.sv-popup--overlay.sv-popup--overlay .sv-popup__button {
|
399
403
|
background-color: var(--primary, #19b394);
|
400
404
|
border: 2px solid var(--primary, #19b394);
|
401
|
-
color: var(--primary-foreground, #fff);
|
405
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
402
406
|
}
|
403
407
|
|
404
408
|
.sv-popup--modal .sv-popup__scrolling-content {
|
@@ -475,7 +479,7 @@ sv-popup {
|
|
475
479
|
font-style: normal;
|
476
480
|
font-weight: 700;
|
477
481
|
margin-bottom: calc(2 * var(--base-unit, 8px));
|
478
|
-
color: var(--foreground, #161616);
|
482
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
479
483
|
}
|
480
484
|
|
481
485
|
.sv-popup__body-footer {
|
@@ -494,7 +498,7 @@ sv-popup {
|
|
494
498
|
border-radius: 4px;
|
495
499
|
margin: 2px;
|
496
500
|
cursor: pointer;
|
497
|
-
font-family: var(--font-family, var(--font-family
|
501
|
+
font-family: var(--font-family, var(--font-family));
|
498
502
|
font-style: normal;
|
499
503
|
font-weight: 600;
|
500
504
|
font-size: calc(2 * var(--base-unit, 8px));
|
@@ -510,7 +514,8 @@ sv-popup {
|
|
510
514
|
}
|
511
515
|
|
512
516
|
.sv-popup__button:disabled {
|
513
|
-
color: var(--
|
517
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
518
|
+
opacity: 0.25;
|
514
519
|
cursor: default;
|
515
520
|
}
|
516
521
|
|
@@ -520,7 +525,7 @@ sv-popup {
|
|
520
525
|
|
521
526
|
.sv-popup__button--apply {
|
522
527
|
background-color: var(--primary, #19b394);
|
523
|
-
color: var(--primary-foreground, #fff);
|
528
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
524
529
|
}
|
525
530
|
|
526
531
|
.sv-popup__button--apply:disabled {
|
@@ -605,7 +610,7 @@ sv-popup {
|
|
605
610
|
}
|
606
611
|
.sv-dropdown-popup.sv-popup--overlay .sv-popup__button:disabled {
|
607
612
|
pointer-events: none;
|
608
|
-
color: var(--foreground, #161616);
|
613
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
609
614
|
opacity: 0.25;
|
610
615
|
}
|
611
616
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter-clear-button {
|
@@ -622,13 +627,13 @@ sv-popup {
|
|
622
627
|
width: calc(2 * var(--base-unit, 8px));
|
623
628
|
}
|
624
629
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__filter-clear-button svg use {
|
625
|
-
fill: var(--foreground-light, #909090);
|
630
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
626
631
|
}
|
627
632
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__input {
|
628
|
-
color: var(--foreground-light, #909090);
|
633
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
629
634
|
font-size: calc(2 * var(--base-unit, 8px));
|
630
635
|
line-height: calc(3 * var(--base-unit, 8px));
|
631
|
-
font-family: var(--font-family
|
636
|
+
font-family: var(--font-family);
|
632
637
|
padding: calc(0.5 * var(--base-unit, 8px)) 0 calc(0.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px));
|
633
638
|
}
|
634
639
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__item:hover .sv-list__item-body,
|
@@ -640,14 +645,14 @@ sv-popup {
|
|
640
645
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__item:focus.sv-list__item--selected .sv-list__item-body,
|
641
646
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__item--focused.sv-list__item--selected .sv-list__item-body {
|
642
647
|
background: var(--primary, #19b394);
|
643
|
-
color: var(--primary-foreground, #fff);
|
648
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
644
649
|
font-weight: 600;
|
645
650
|
}
|
646
651
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__item:hover.sv-list__item--selected .sd-list__item-body,
|
647
652
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__item:focus.sv-list__item--selected .sd-list__item-body,
|
648
653
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__item--focused.sv-list__item--selected .sd-list__item-body {
|
649
654
|
background: var(--primary-light, rgba(25, 179, 148, 0.1));
|
650
|
-
color: var(--foreground, #161616);
|
655
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
651
656
|
}
|
652
657
|
|
653
658
|
.sv-dropdown-popup.sv-popup--overlay.sv-popup--tablet .sv-popup__body-content {
|
@@ -704,7 +709,7 @@ sv-popup {
|
|
704
709
|
background: var(--background, #fff);
|
705
710
|
cursor: pointer;
|
706
711
|
overflow: hidden;
|
707
|
-
color: var(--foreground, #161616);
|
712
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
708
713
|
position: relative;
|
709
714
|
}
|
710
715
|
.sv-button-group__item:not(:last-of-type) {
|
@@ -720,7 +725,7 @@ sv-popup {
|
|
720
725
|
height: calc(3 * var(--base-unit, 8px));
|
721
726
|
}
|
722
727
|
.sv-button-group__item-icon use {
|
723
|
-
fill: var(--foreground-light, #909090);
|
728
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
724
729
|
}
|
725
730
|
|
726
731
|
.sv-button-group__item--selected {
|
@@ -752,11 +757,12 @@ sv-popup {
|
|
752
757
|
}
|
753
758
|
|
754
759
|
.sv-button-group__item--disabled {
|
755
|
-
color: var(--
|
760
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
761
|
+
opacity: 0.25;
|
756
762
|
cursor: default;
|
757
763
|
}
|
758
764
|
.sv-button-group__item--disabled .sv-button-group__item-icon use {
|
759
|
-
fill: var(--
|
765
|
+
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
760
766
|
}
|
761
767
|
.sv-button-group__item--disabled:hover {
|
762
768
|
background-color: var(--background, #fff);
|
@@ -814,7 +820,7 @@ sv-popup {
|
|
814
820
|
right: 10px;
|
815
821
|
background-color: cadetblue;
|
816
822
|
padding: 1px;
|
817
|
-
font-family: var(--font-family, var(--font-family
|
823
|
+
font-family: var(--font-family, var(--font-family));
|
818
824
|
font-size: 14px;
|
819
825
|
font-style: normal;
|
820
826
|
font-weight: 400;
|
@@ -868,7 +874,7 @@ sv-popup {
|
|
868
874
|
|
869
875
|
.sv-brand-info {
|
870
876
|
width: 100%;
|
871
|
-
font-family: var(--font-family, var(--font-family
|
877
|
+
font-family: var(--font-family, var(--font-family));
|
872
878
|
text-align: center;
|
873
879
|
color: #161616;
|
874
880
|
background: white;
|
@@ -974,7 +980,7 @@ sv-popup {
|
|
974
980
|
align-items: center;
|
975
981
|
justify-content: center;
|
976
982
|
background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
|
977
|
-
color: var(--foreground, #161616);
|
983
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
978
984
|
font-size: calc(2 * var(--base-unit, 8px));
|
979
985
|
border-radius: 100%;
|
980
986
|
border: calc(0.25 * var(--base-unit, 8px)) solid transparent;
|
@@ -996,14 +1002,15 @@ sv-popup {
|
|
996
1002
|
overflow: hidden;
|
997
1003
|
text-overflow: ellipsis;
|
998
1004
|
white-space: nowrap;
|
999
|
-
color: var(--foreground, #161616);
|
1005
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1000
1006
|
font-size: calc(2 * var(--base-unit, 8px));
|
1001
1007
|
line-height: calc(3 * var(--base-unit, 8px));
|
1002
1008
|
margin: 0 calc(2 * var(--base-unit, 8px));
|
1003
1009
|
}
|
1004
1010
|
|
1005
1011
|
.sd-ranking--disabled .sv-ranking-item__text {
|
1006
|
-
color: var(--
|
1012
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1013
|
+
opacity: 0.25;
|
1007
1014
|
}
|
1008
1015
|
|
1009
1016
|
.sv-ranking-item__ghost.sv-ranking-item__ghost {
|
@@ -1046,7 +1053,7 @@ sv-popup {
|
|
1046
1053
|
|
1047
1054
|
.sv-ranking--mobile .sv-ranking-item__icon--hover {
|
1048
1055
|
visibility: visible;
|
1049
|
-
fill: var(--foreground-light, #909090);
|
1056
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1050
1057
|
}
|
1051
1058
|
|
1052
1059
|
.sv-ranking--mobile.sv-ranking--drag .sv-ranking-item--ghost .sv-ranking-item__icon.sv-ranking-item__icon--hover {
|
@@ -1122,14 +1129,14 @@ sv-popup {
|
|
1122
1129
|
font-size: calc(2 * var(--base-unit, 8px));
|
1123
1130
|
font-weight: 400;
|
1124
1131
|
text-align: center;
|
1125
|
-
color: var(--foreground-light, #909090);
|
1132
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1126
1133
|
}
|
1127
1134
|
|
1128
1135
|
.sv-list__item {
|
1129
1136
|
width: 100%;
|
1130
1137
|
align-items: center;
|
1131
1138
|
box-sizing: border-box;
|
1132
|
-
color: var(--foreground, #161616);
|
1139
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1133
1140
|
cursor: pointer;
|
1134
1141
|
overflow: hidden;
|
1135
1142
|
text-overflow: ellipsis;
|
@@ -1143,7 +1150,7 @@ sv-popup {
|
|
1143
1150
|
padding-block: calc(1 * var(--base-unit, 8px));
|
1144
1151
|
padding-inline-end: calc(8 * var(--base-unit, 8px));
|
1145
1152
|
padding-inline-start: calc(2 * var(--base-unit, 8px));
|
1146
|
-
color: var(--foreground, #161616);
|
1153
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1147
1154
|
font-size: calc(2 * var(--base-unit, 8px));
|
1148
1155
|
line-height: calc(3 * var(--base-unit, 8px));
|
1149
1156
|
cursor: pointer;
|
@@ -1182,7 +1189,7 @@ sv-popup {
|
|
1182
1189
|
display: block;
|
1183
1190
|
}
|
1184
1191
|
.sv-list__item-icon use {
|
1185
|
-
fill: var(--foreground-light, #909090);
|
1192
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1186
1193
|
}
|
1187
1194
|
|
1188
1195
|
[dir=rtl] .sv-list__item-icon,
|
@@ -1203,7 +1210,7 @@ sv-popup {
|
|
1203
1210
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected.sv-list__item--focused .sv-list__item-body,
|
1204
1211
|
li:focus .sv-list__item.sv-list__item--selected .sv-list__item-body {
|
1205
1212
|
background-color: var(--primary, #19b394);
|
1206
|
-
color: var(--primary-foreground, #fff);
|
1213
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
1207
1214
|
font-weight: 600;
|
1208
1215
|
}
|
1209
1216
|
.sv-list__item.sv-list__item--selected .sv-list__item-icon use,
|
@@ -1217,13 +1224,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1217
1224
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected .sv-list__item-body,
|
1218
1225
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected:hover .sv-list__item-body {
|
1219
1226
|
background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
|
1220
|
-
color: var(--foreground, #161616);
|
1227
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1221
1228
|
font-weight: 400;
|
1222
1229
|
}
|
1223
1230
|
|
1224
1231
|
.sv-list__item.sv-list__item--disabled .sv-list__item-body {
|
1225
1232
|
cursor: default;
|
1226
|
-
color: var(--foreground-light, #909090);
|
1233
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1227
1234
|
}
|
1228
1235
|
|
1229
1236
|
.sv-list__item span {
|
@@ -1256,7 +1263,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1256
1263
|
height: calc(3 * var(--base-unit, 8px));
|
1257
1264
|
}
|
1258
1265
|
.sv-list__filter-icon .sv-svg-icon use {
|
1259
|
-
fill: var(--foreground-light, #909090);
|
1266
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1260
1267
|
}
|
1261
1268
|
|
1262
1269
|
.sv-list__input {
|
@@ -1269,7 +1276,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1269
1276
|
width: 100%;
|
1270
1277
|
outline: none;
|
1271
1278
|
font-size: 1em;
|
1272
|
-
color: var(--foreground, #161616);
|
1279
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1273
1280
|
padding: calc(1.5 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
|
1274
1281
|
padding-inline-start: calc(7 * var(--base-unit, 8px));
|
1275
1282
|
line-height: calc(3 * var(--base-unit, 8px));
|
@@ -1277,12 +1284,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1277
1284
|
}
|
1278
1285
|
|
1279
1286
|
.sv-list__input::placeholder {
|
1280
|
-
color: var(--foreground-light, #909090);
|
1287
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1281
1288
|
}
|
1282
1289
|
|
1283
1290
|
.sv-list__input:disabled,
|
1284
1291
|
.sv-list__input:disabled::placeholder {
|
1285
|
-
color: var(--foreground-light, #909090);
|
1292
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1286
1293
|
}
|
1287
1294
|
|
1288
1295
|
.sv-list__loading-indicator {
|
@@ -1302,11 +1309,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1302
1309
|
padding: calc(3 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
|
1303
1310
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
|
1304
1311
|
border-radius: calc(1 * var(--base-unit, 8px));
|
1305
|
-
color: var(--foreground, #161616);
|
1312
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1306
1313
|
min-width: calc(30 * var(--base-unit, 8px));
|
1307
1314
|
text-align: center;
|
1308
1315
|
z-index: 1600;
|
1309
|
-
font-family: var(--font-family,
|
1316
|
+
font-family: var(--font-family, var(--font-family));
|
1310
1317
|
font-size: calc(2 * var(--base-unit, 8px));
|
1311
1318
|
line-height: calc(3 * var(--base-unit, 8px));
|
1312
1319
|
display: flex;
|
@@ -1389,7 +1396,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1389
1396
|
padding-left: calc(var(--sd-base-padding) + var(--sv-element-add-padding-left, 0px));
|
1390
1397
|
padding-right: calc(var(--sd-base-padding) + var(--sv-element-add-padding-right, 0px));
|
1391
1398
|
padding-bottom: var(--sd-base-padding);
|
1392
|
-
background: var(--sjs-question-background, #fff);
|
1399
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
1393
1400
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1394
1401
|
}
|
1395
1402
|
.svc-logic-question-value > .sd-question__erbox--outside-question,
|
@@ -1576,7 +1583,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1576
1583
|
width: calc(5 * var(--base-unit, 8px));
|
1577
1584
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
1578
1585
|
line-height: calc(2 * var(--base-unit, 8px));
|
1579
|
-
color: var(--foreground-light, #909090);
|
1586
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1580
1587
|
margin-inline-start: calc(-5 * var(--base-unit, 8px));
|
1581
1588
|
text-align: end;
|
1582
1589
|
box-sizing: border-box;
|
@@ -1716,7 +1723,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1716
1723
|
display: flex;
|
1717
1724
|
flex-direction: column;
|
1718
1725
|
gap: calc(1 * var(--base-unit, 8px));
|
1719
|
-
color: var(--foreground, #161616);
|
1726
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1720
1727
|
white-space: normal;
|
1721
1728
|
}
|
1722
1729
|
|
@@ -1727,7 +1734,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1727
1734
|
width: auto;
|
1728
1735
|
max-width: calc(29 * var(--base-unit, 8px));
|
1729
1736
|
background-color: var(--background, #fff);
|
1730
|
-
color: var(--foreground, #161616);
|
1737
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1731
1738
|
opacity: 0.75;
|
1732
1739
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
|
1733
1740
|
z-index: 1000;
|
@@ -1770,7 +1777,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1770
1777
|
min-height: calc(24 * var(--base-unit, 8px));
|
1771
1778
|
line-height: calc(3 * var(--base-unit, 8px));
|
1772
1779
|
font-size: calc(2 * var(--base-unit, 8px));
|
1773
|
-
color: var(--foreground-light, #909090);
|
1780
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1774
1781
|
}
|
1775
1782
|
.sd-question__placeholder > div .sv-string-viewer, .sd-question__placeholder > span .sv-string-viewer {
|
1776
1783
|
white-space: pre-line;
|
@@ -1800,10 +1807,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1800
1807
|
box-sizing: border-box;
|
1801
1808
|
padding: calc(1.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
|
1802
1809
|
line-height: calc(3 * var(--base-unit, 8px));
|
1803
|
-
font-family: var(--font-family,
|
1810
|
+
font-family: var(--font-family, var(--font-family));
|
1804
1811
|
font-size: calc(2 * var(--base-unit, 8px));
|
1805
|
-
color: var(--foreground, #161616);
|
1806
|
-
background-color: var(--sjs-editor-background, #f9f9f9);
|
1812
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1813
|
+
background-color: var(--sjs-editor-background, var(--background-dim-light, #f9f9f9));
|
1807
1814
|
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1808
1815
|
border: none;
|
1809
1816
|
border-radius: 3px;
|
@@ -1815,7 +1822,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1815
1822
|
}
|
1816
1823
|
|
1817
1824
|
.sd-input--disabled {
|
1818
|
-
background-color: var(--sjs-editor-background, #f9f9f9);
|
1825
|
+
background-color: var(--sjs-editor-background, var(--background-dim-light, #f9f9f9));
|
1819
1826
|
-webkit-user-select: none;
|
1820
1827
|
-moz-user-select: none;
|
1821
1828
|
-ms-user-select: none;
|
@@ -1823,7 +1830,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1823
1830
|
}
|
1824
1831
|
|
1825
1832
|
.sd-input::placeholder {
|
1826
|
-
color: var(--foreground-light, #909090);
|
1833
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1827
1834
|
-webkit-user-select: none;
|
1828
1835
|
-moz-user-select: none;
|
1829
1836
|
-ms-user-select: none;
|
@@ -1832,12 +1839,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1832
1839
|
|
1833
1840
|
.sd-input--disabled,
|
1834
1841
|
.sd-input--disabled::placeholder {
|
1835
|
-
color: var(--
|
1842
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1843
|
+
opacity: 0.25;
|
1836
1844
|
}
|
1837
1845
|
|
1838
1846
|
.sd-root--readonly .sd-input--disabled,
|
1839
1847
|
.sd-root--readonly .sd-input--disabled::placeholder {
|
1840
|
-
color: var(--foreground, #161616);
|
1848
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1841
1849
|
}
|
1842
1850
|
|
1843
1851
|
.sd-input:focus {
|
@@ -1858,10 +1866,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1858
1866
|
justify-content: flex-end;
|
1859
1867
|
align-items: flex-end;
|
1860
1868
|
padding: 0px;
|
1861
|
-
font-family:
|
1869
|
+
font-family: var(--font-family);
|
1862
1870
|
line-height: calc(3 * var(--base-unit, 8px));
|
1863
1871
|
font-size: calc(2 * var(--base-unit, 8px));
|
1864
|
-
color: var(--foreground-light, #909090);
|
1872
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1865
1873
|
position: absolute;
|
1866
1874
|
inset-inline-end: calc(2 * var(--base-unit, 8px));
|
1867
1875
|
inset-block-end: calc(1.5 * var(--base-unit, 8px));
|
@@ -1971,7 +1979,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1971
1979
|
}
|
1972
1980
|
|
1973
1981
|
.sjs_sp_placeholder {
|
1974
|
-
color: var(--foreground-light, #909090);
|
1982
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1975
1983
|
}
|
1976
1984
|
|
1977
1985
|
.sjs_sp_container {
|
@@ -2007,7 +2015,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2007
2015
|
display: block;
|
2008
2016
|
}
|
2009
2017
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
2010
|
-
fill: var(--primary-foreground, #fff);
|
2018
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2011
2019
|
}
|
2012
2020
|
|
2013
2021
|
.sd-checkbox--checked.sd-checkbox--disabled .sd-checkbox__svg use {
|
@@ -2043,7 +2051,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2043
2051
|
border: none;
|
2044
2052
|
line-height: calc(3 * var(--base-unit, 8px));
|
2045
2053
|
font-size: calc(2 * var(--base-unit, 8px));
|
2046
|
-
font-family: var(--font-family,
|
2054
|
+
font-family: var(--font-family, var(--font-family));
|
2047
2055
|
font-weight: 600;
|
2048
2056
|
padding: calc(1 * var(--base-unit, 8px)) 0;
|
2049
2057
|
}
|
@@ -2074,11 +2082,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2074
2082
|
display: block;
|
2075
2083
|
}
|
2076
2084
|
.sd-drag-element__svg use {
|
2077
|
-
fill: var(--foreground-light, #909090);
|
2085
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2078
2086
|
}
|
2079
2087
|
|
2080
2088
|
.sd-table {
|
2081
2089
|
width: 100%;
|
2090
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2082
2091
|
border-collapse: collapse;
|
2083
2092
|
white-space: normal;
|
2084
2093
|
}
|
@@ -2103,7 +2112,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2103
2112
|
}
|
2104
2113
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-input,
|
2105
2114
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
|
2106
|
-
background-color: var(--primary-foreground, #fff);
|
2115
|
+
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2107
2116
|
}
|
2108
2117
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item__decorator,
|
2109
2118
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item__decorator {
|
@@ -2115,7 +2124,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2115
2124
|
font-size: calc(2 * var(--base-unit, 8px));
|
2116
2125
|
line-height: calc(3 * var(--base-unit, 8px));
|
2117
2126
|
padding: calc(1 * var(--base-unit, 8px));
|
2118
|
-
color: var(--foreground, #161616);
|
2127
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2119
2128
|
text-align: center;
|
2120
2129
|
}
|
2121
2130
|
|
@@ -2179,7 +2188,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2179
2188
|
opacity: 1;
|
2180
2189
|
}
|
2181
2190
|
.svc-question__content .sd-table__cell--actions .sv-action-bar-item:disabled use {
|
2182
|
-
fill: var(--foreground-light, #909090);
|
2191
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2183
2192
|
}
|
2184
2193
|
|
2185
2194
|
.sd-table__cell--actions:not(.sd-table__cell--vertical) {
|
@@ -2197,7 +2206,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2197
2206
|
.sd-table__cell--detail-button svg {
|
2198
2207
|
width: calc(2 * var(--base-unit, 8px));
|
2199
2208
|
height: calc(2 * var(--base-unit, 8px));
|
2200
|
-
fill: var(--foreground-light, #909090);
|
2209
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2201
2210
|
}
|
2202
2211
|
.sd-table__cell--detail-button:hover {
|
2203
2212
|
background: var(--green-light, rgba(25, 179, 148, 0.1));
|
@@ -2237,6 +2246,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2237
2246
|
.sd-matrix__cell:first-of-type,
|
2238
2247
|
.sd-matrix tr > td:first-of-type {
|
2239
2248
|
position: sticky;
|
2249
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2240
2250
|
z-index: 12;
|
2241
2251
|
}
|
2242
2252
|
.sd-table__cell--actions:not(.sd-table__cell--vertical):first-of-type,
|
@@ -2257,6 +2267,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2257
2267
|
.sd-table__cell--actions:not(.sd-table__cell--vertical):last-child .sd-action-bar {
|
2258
2268
|
margin-right: calc(-3 * var(--base-unit, 8px));
|
2259
2269
|
justify-content: flex-end;
|
2270
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2260
2271
|
}
|
2261
2272
|
|
2262
2273
|
.sd-question.sd-question--table {
|
@@ -2277,7 +2288,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2277
2288
|
min-height: 100%;
|
2278
2289
|
width: calc(var(--sd-base-padding) - var(--base-unit, 8px));
|
2279
2290
|
flex-shrink: 0;
|
2280
|
-
background: var(--sjs-question-background, #fff);
|
2291
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2281
2292
|
z-index: 11;
|
2282
2293
|
}
|
2283
2294
|
.sd-table-wrapper::before {
|
@@ -2336,20 +2347,22 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2336
2347
|
box-sizing: border-box;
|
2337
2348
|
}
|
2338
2349
|
|
2339
|
-
.sd-page__title {
|
2350
|
+
.sd-page .sd-page__title {
|
2340
2351
|
position: static;
|
2341
2352
|
font-size: calc(3 * var(--base-unit, 8px));
|
2342
2353
|
line-height: calc(4 * var(--base-unit, 8px));
|
2343
2354
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
2344
2355
|
font-weight: 700;
|
2356
|
+
color: var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91));
|
2345
2357
|
}
|
2346
2358
|
|
2347
|
-
.sd-page__description {
|
2359
|
+
.sd-page .sd-page__description {
|
2348
2360
|
position: static;
|
2349
2361
|
font-size: calc(2 * var(--base-unit, 8px));
|
2350
2362
|
line-height: calc(3 * var(--base-unit, 8px));
|
2351
2363
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
2352
2364
|
font-weight: 400;
|
2365
|
+
color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
2353
2366
|
}
|
2354
2367
|
|
2355
2368
|
.sd-row {
|
@@ -2366,7 +2379,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2366
2379
|
|
2367
2380
|
.sd-page__row.sd-row--multiple,
|
2368
2381
|
.svc-row > .sd-row--multiple {
|
2369
|
-
background: var(--sjs-question-background, #fff);
|
2382
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2370
2383
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2371
2384
|
border-radius: calc(0.5 * var(--base-unit, 8px));
|
2372
2385
|
}
|
@@ -2418,9 +2431,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2418
2431
|
|
2419
2432
|
.sd-title {
|
2420
2433
|
display: block;
|
2421
|
-
font-family: var(--font-family,
|
2434
|
+
font-family: var(--font-family, var(--font-family));
|
2422
2435
|
font-style: normal;
|
2423
|
-
color: var(--foreground, #161616);
|
2436
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2424
2437
|
flex-direction: row;
|
2425
2438
|
white-space: normal;
|
2426
2439
|
word-break: break-word;
|
@@ -2431,7 +2444,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2431
2444
|
align-items: center;
|
2432
2445
|
padding: var(--sd-page-vertical-padding) var(--sd-page-vertical-padding);
|
2433
2446
|
overflow: auto;
|
2434
|
-
font-family: var(--font-family,
|
2447
|
+
font-family: var(--font-family, var(--font-family));
|
2435
2448
|
gap: calc(4 * var(--base-unit, 8px));
|
2436
2449
|
box-shadow: 0px 2px 0px var(--primary, #19b394);
|
2437
2450
|
margin-bottom: 2px;
|
@@ -2501,10 +2514,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2501
2514
|
}
|
2502
2515
|
|
2503
2516
|
.sd-description {
|
2504
|
-
font-family: var(--font-family,
|
2517
|
+
font-family: var(--font-family, var(--font-family));
|
2505
2518
|
font-style: normal;
|
2506
2519
|
font-weight: normal;
|
2507
|
-
color: var(--foreground-light, #909090);
|
2520
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2508
2521
|
white-space: normal;
|
2509
2522
|
word-break: break-word;
|
2510
2523
|
}
|
@@ -2521,7 +2534,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2521
2534
|
width: calc(3 * var(--base-unit, 8px));
|
2522
2535
|
height: calc(3 * var(--base-unit, 8px));
|
2523
2536
|
box-sizing: border-box;
|
2524
|
-
background: var(--sd-item-default-background, var(--sjs-editor-background, #f9f9f9));
|
2537
|
+
background: var(--sd-item-default-background, var(--sjs-editor-background, var(--background-dim-light, #f9f9f9)));
|
2525
2538
|
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2526
2539
|
border: none;
|
2527
2540
|
flex-shrink: 0;
|
@@ -2547,12 +2560,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2547
2560
|
}
|
2548
2561
|
|
2549
2562
|
.sd-item__control-label {
|
2550
|
-
font-family: var(--font-family,
|
2563
|
+
font-family: var(--font-family, var(--font-family));
|
2551
2564
|
font-style: normal;
|
2552
2565
|
font-weight: normal;
|
2553
2566
|
line-height: calc(3 * var(--base-unit, 8px));
|
2554
2567
|
font-size: calc(2 * var(--base-unit, 8px));
|
2555
|
-
color: var(--foreground, #161616);
|
2568
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2556
2569
|
white-space: normal;
|
2557
2570
|
word-break: break-word;
|
2558
2571
|
width: 100%;
|
@@ -2560,11 +2573,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2560
2573
|
}
|
2561
2574
|
|
2562
2575
|
.sd-item--disabled .sd-item__control-label {
|
2563
|
-
color: var(--
|
2576
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2577
|
+
opacity: 0.25;
|
2564
2578
|
}
|
2565
2579
|
|
2566
2580
|
.sd-root--readonly .sd-item--disabled .sd-item__control-label {
|
2567
|
-
color: var(--foreground, #161616);
|
2581
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2568
2582
|
}
|
2569
2583
|
|
2570
2584
|
.sd-item--error .sd-item__decorator {
|
@@ -2633,7 +2647,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2633
2647
|
display: block;
|
2634
2648
|
}
|
2635
2649
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
2636
|
-
fill: var(--primary-foreground, #fff);
|
2650
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2637
2651
|
}
|
2638
2652
|
|
2639
2653
|
.sd-checkbox--checked.sd-checkbox--disabled .sd-checkbox__svg use {
|
@@ -2654,7 +2668,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2654
2668
|
width: calc(1 * var(--base-unit, 8px));
|
2655
2669
|
height: calc(1 * var(--base-unit, 8px));
|
2656
2670
|
border-radius: 50%;
|
2657
|
-
background-color: var(--primary-foreground, #fff);
|
2671
|
+
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2658
2672
|
}
|
2659
2673
|
|
2660
2674
|
.sd-radio--checked.sd-radio--disabled .sd-radio__decorator:after {
|
@@ -2726,16 +2740,25 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2726
2740
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2727
2741
|
border-radius: calc(12.5 * var(--base-unit, 8px));
|
2728
2742
|
white-space: nowrap;
|
2729
|
-
padding: calc(
|
2743
|
+
padding: calc(0.5 * var(--base-unit, 8px)) calc(2.5 * var(--base-unit, 8px));
|
2744
|
+
height: calc(6 * var(--base-unit, 8px));
|
2745
|
+
display: flex;
|
2746
|
+
justify-content: center;
|
2747
|
+
align-items: center;
|
2730
2748
|
box-sizing: border-box;
|
2731
2749
|
min-width: calc(6 * var(--base-unit, 8px));
|
2732
2750
|
text-align: center;
|
2733
2751
|
border: 2px solid var(--background, #fff);
|
2734
|
-
color: var(--foreground, #161616);
|
2735
|
-
fill: var(--foreground, #161616);
|
2752
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2753
|
+
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2736
2754
|
font-size: calc(2 * var(--base-unit, 8px));
|
2737
2755
|
}
|
2738
2756
|
|
2757
|
+
.sd-rating__item--fixed-size {
|
2758
|
+
width: calc(6 * var(--base-unit, 8px));
|
2759
|
+
padding: 0;
|
2760
|
+
}
|
2761
|
+
|
2739
2762
|
legend + .sd-rating__item,
|
2740
2763
|
legend + sv-ng-rating-item + .sd-rating__item {
|
2741
2764
|
margin-inline-start: 2px;
|
@@ -2748,13 +2771,17 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
2748
2771
|
}
|
2749
2772
|
|
2750
2773
|
.sd-rating__item.sd-rating__item--disabled {
|
2751
|
-
color: var(--
|
2752
|
-
fill: var(--
|
2774
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2775
|
+
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2753
2776
|
}
|
2754
2777
|
|
2755
2778
|
.sd-rating__item.sd-rating__item--selected.sd-rating__item--disabled {
|
2756
|
-
color: var(--primary-
|
2757
|
-
fill: var(--
|
2779
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2780
|
+
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2781
|
+
}
|
2782
|
+
|
2783
|
+
.sd-question--disabled .sd-rating__item-text {
|
2784
|
+
opacity: 0.25;
|
2758
2785
|
}
|
2759
2786
|
|
2760
2787
|
.sd-rating__item--allowhover:hover,
|
@@ -2765,7 +2792,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
2765
2792
|
.sd-rating__item--selected {
|
2766
2793
|
background-color: var(--primary, #19b394);
|
2767
2794
|
border-color: var(--primary, #19b394);
|
2768
|
-
color: var(--primary-foreground, #fff);
|
2795
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2769
2796
|
font-weight: 600;
|
2770
2797
|
box-shadow: 0px 1px 2px transparent;
|
2771
2798
|
}
|
@@ -2784,7 +2811,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
2784
2811
|
min-width: calc(6 * var(--base-unit, 8px));
|
2785
2812
|
text-align: center;
|
2786
2813
|
border: 2px solid var(--border, #d6d6d6);
|
2787
|
-
color: var(--foreground, #161616);
|
2814
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2788
2815
|
fill: var(--border, #d6d6d6);
|
2789
2816
|
}
|
2790
2817
|
.sd-rating__item-smiley svg {
|
@@ -2809,7 +2836,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2809
2836
|
|
2810
2837
|
.sd-rating__item-smiley.sd-rating__item-smiley--selected.sd-rating__item-smiley--disabled {
|
2811
2838
|
opacity: initial;
|
2812
|
-
fill: var(--primary-foreground, #fff);
|
2839
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2813
2840
|
}
|
2814
2841
|
|
2815
2842
|
.sd-rating__item-smiley--allowhover:hover,
|
@@ -2820,7 +2847,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2820
2847
|
.sd-rating__item-smiley--selected {
|
2821
2848
|
background-color: var(--primary, #19b394);
|
2822
2849
|
border-color: var(--primary, #19b394);
|
2823
|
-
fill: var(--primary-foreground, #fff);
|
2850
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2824
2851
|
font-weight: 600;
|
2825
2852
|
}
|
2826
2853
|
|
@@ -2910,14 +2937,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2910
2937
|
.sd-rating__item-text.sd-rating__item-text {
|
2911
2938
|
font-size: calc(2 * var(--base-unit, 8px));
|
2912
2939
|
line-height: calc(3 * var(--base-unit, 8px));
|
2913
|
-
min-width: calc(3 * var(--base-unit, 8px));
|
2914
2940
|
display: inline-block;
|
2915
2941
|
}
|
2916
2942
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text, .sd-rating__item-text.sd-rating__item-text.sd-rating__max-text {
|
2917
2943
|
margin-top: calc(1.25 * var(--base-unit, 8px));
|
2918
2944
|
margin-bottom: calc(1.25 * var(--base-unit, 8px));
|
2919
2945
|
border: 2px solid var(--background, #fff);
|
2920
|
-
color: var(--foreground-light, #909090);
|
2946
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2921
2947
|
}
|
2922
2948
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text {
|
2923
2949
|
margin-right: calc(1 * var(--base-unit, 8px));
|
@@ -2930,6 +2956,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2930
2956
|
.sd-rating__item-text.sd-rating__item-text .sv-string-editor {
|
2931
2957
|
white-space: nowrap;
|
2932
2958
|
}
|
2959
|
+
.sd-rating__item-text.sd-rating__item-text.sd-rating__item--fixed-size {
|
2960
|
+
min-width: calc(3 * var(--base-unit, 8px));
|
2961
|
+
}
|
2933
2962
|
|
2934
2963
|
.sv-ranking-item--error .sv-ranking-item__index {
|
2935
2964
|
background-color: var(--red-light, rgba(230, 10, 62, 0.1));
|
@@ -2974,7 +3003,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2974
3003
|
|
2975
3004
|
.sd-dropdown--empty:not(.sd-input--disabled),
|
2976
3005
|
.sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__value {
|
2977
|
-
color: var(--foreground-light, #909090);
|
3006
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2978
3007
|
}
|
2979
3008
|
|
2980
3009
|
.sd-dropdown__input-field-component {
|
@@ -2982,8 +3011,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2982
3011
|
}
|
2983
3012
|
|
2984
3013
|
.sd-dropdown option {
|
2985
|
-
color: var(--foreground, #161616);
|
2986
|
-
font-family: var(--font-family,
|
3014
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3015
|
+
font-family: var(--font-family, var(--font-family));
|
2987
3016
|
font-size: calc(2 * var(--base-unit, 8px));
|
2988
3017
|
}
|
2989
3018
|
|
@@ -2993,9 +3022,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2993
3022
|
overflow: hidden;
|
2994
3023
|
text-overflow: ellipsis;
|
2995
3024
|
white-space: nowrap;
|
2996
|
-
font-family: var(--font-family,
|
3025
|
+
font-family: var(--font-family, var(--font-family));
|
2997
3026
|
font-size: calc(2 * var(--base-unit, 8px));
|
2998
|
-
color: var(--foreground, #161616);
|
3027
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2999
3028
|
position: relative;
|
3000
3029
|
}
|
3001
3030
|
|
@@ -3010,7 +3039,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3010
3039
|
}
|
3011
3040
|
|
3012
3041
|
.sd-dropdown use {
|
3013
|
-
fill: var(--foreground-light, #909090);
|
3042
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3014
3043
|
}
|
3015
3044
|
|
3016
3045
|
.sd-input.sd-dropdown:focus-within {
|
@@ -3030,7 +3059,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3030
3059
|
border: none;
|
3031
3060
|
outline: none;
|
3032
3061
|
padding: 0;
|
3033
|
-
font-family: var(--font-family,
|
3062
|
+
font-family: var(--font-family, var(--font-family));
|
3034
3063
|
font-size: calc(2 * var(--base-unit, 8px));
|
3035
3064
|
background-color: transparent;
|
3036
3065
|
overflow: hidden;
|
@@ -3042,13 +3071,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3042
3071
|
}
|
3043
3072
|
|
3044
3073
|
.sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__filter-string-input::placeholder {
|
3045
|
-
color: var(--foreground-light, #909090);
|
3074
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3046
3075
|
}
|
3047
3076
|
|
3048
3077
|
.sd-dropdown__filter-string-input::placeholder {
|
3049
|
-
font-family: var(--font-family,
|
3078
|
+
font-family: var(--font-family, var(--font-family));
|
3050
3079
|
font-size: calc(2 * var(--base-unit, 8px));
|
3051
|
-
color: var(--foreground, #161616);
|
3080
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3052
3081
|
width: 100%;
|
3053
3082
|
max-width: 100%;
|
3054
3083
|
overflow: hidden;
|
@@ -3060,7 +3089,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3060
3089
|
}
|
3061
3090
|
|
3062
3091
|
.sd-dropdown__hint-prefix {
|
3063
|
-
color: var(--foreground-light, #909090);
|
3092
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3064
3093
|
}
|
3065
3094
|
.sd-dropdown__hint-prefix span {
|
3066
3095
|
white-space: pre;
|
@@ -3068,7 +3097,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3068
3097
|
|
3069
3098
|
.sd-dropdown__hint-suffix {
|
3070
3099
|
display: flex;
|
3071
|
-
color: var(--foreground-light, #909090);
|
3100
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3072
3101
|
}
|
3073
3102
|
.sd-dropdown__hint-suffix span {
|
3074
3103
|
white-space: pre;
|
@@ -3113,7 +3142,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3113
3142
|
}
|
3114
3143
|
|
3115
3144
|
.sv-tagbox__item-text {
|
3116
|
-
color: var(--primary-foreground, #fff);
|
3145
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3117
3146
|
min-width: calc(5.5 * var(--base-unit, 8px));
|
3118
3147
|
text-align: center;
|
3119
3148
|
font-weight: 600;
|
@@ -3143,11 +3172,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3143
3172
|
|
3144
3173
|
.sd-tagbox-item_clean-button-svg:hover {
|
3145
3174
|
border-radius: 100px;
|
3146
|
-
background: var(--primary-foreground-disabled, rgba(255, 255, 255, 0.25));
|
3175
|
+
background: var(--sjs-primary-forecolor-light, var(--primary-foreground-disabled, rgba(255, 255, 255, 0.25)));
|
3147
3176
|
}
|
3148
3177
|
|
3149
3178
|
.sd-tagbox-item_clean-button-svg use {
|
3150
|
-
fill: var(--primary-foreground, #fff);
|
3179
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3151
3180
|
}
|
3152
3181
|
|
3153
3182
|
.sd-tagbox__value.sd-dropdown__value {
|
@@ -3179,7 +3208,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3179
3208
|
text-align: left;
|
3180
3209
|
cursor: text;
|
3181
3210
|
pointer-events: none;
|
3182
|
-
color: var(--foreground-light, #909090);
|
3211
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3183
3212
|
}
|
3184
3213
|
|
3185
3214
|
[dir=rtl] .sd-tagbox-item_clean-button,
|
@@ -3277,7 +3306,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3277
3306
|
font-size: calc(2 * var(--base-unit, 8px));
|
3278
3307
|
line-height: calc(3 * var(--base-unit, 8px));
|
3279
3308
|
margin-top: calc(1 * var(--base-unit, 8px));
|
3280
|
-
color: var(--foreground, #161616);
|
3309
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3281
3310
|
}
|
3282
3311
|
|
3283
3312
|
.sd-imagepicker__no-image {
|
@@ -3292,7 +3321,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3292
3321
|
margin: auto;
|
3293
3322
|
}
|
3294
3323
|
.sd-imagepicker__no-image-svg use {
|
3295
|
-
fill: var(--foreground-light, #909090);
|
3324
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3296
3325
|
}
|
3297
3326
|
|
3298
3327
|
.sd-imagepicker__column {
|
@@ -3333,7 +3362,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3333
3362
|
}
|
3334
3363
|
|
3335
3364
|
.sd-image__no-image use {
|
3336
|
-
fill: var(--foreground-light, #909090);
|
3365
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3337
3366
|
}
|
3338
3367
|
|
3339
3368
|
.sd-html {
|
@@ -3341,7 +3370,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3341
3370
|
}
|
3342
3371
|
|
3343
3372
|
.sd-expression {
|
3344
|
-
color: var(--foreground, #161616);
|
3373
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3345
3374
|
font-size: calc(2 * var(--base-unit, 8px));
|
3346
3375
|
}
|
3347
3376
|
|
@@ -3362,7 +3391,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3362
3391
|
position: absolute;
|
3363
3392
|
margin-top: calc(1 * var(--base-unit, 8px));
|
3364
3393
|
right: calc(3 * var(--base-unit, 8px));
|
3365
|
-
color: var(--foreground-light, #909090);
|
3394
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3366
3395
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
3367
3396
|
line-height: calc(2 * var(--base-unit, 8px));
|
3368
3397
|
font-weight: 600;
|
@@ -3383,7 +3412,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3383
3412
|
width: max-content;
|
3384
3413
|
position: relative;
|
3385
3414
|
padding: calc(0.5 * var(--base-unit, 8px));
|
3386
|
-
background: var(--sjs-editor-background, #f9f9f9);
|
3415
|
+
background: var(--sjs-editor-background, var(--background-dim-light, #f9f9f9));
|
3387
3416
|
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
|
3388
3417
|
border-radius: calc(12.5 * var(--base-unit, 8px));
|
3389
3418
|
}
|
@@ -3391,8 +3420,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3391
3420
|
.sd-boolean__thumb,
|
3392
3421
|
.sd-boolean__label {
|
3393
3422
|
display: block;
|
3394
|
-
color: var(--foreground-light, #909090);
|
3395
|
-
font-family: var(--font-family,
|
3423
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3424
|
+
font-family: var(--font-family, var(--font-family));
|
3396
3425
|
font-size: calc(2 * var(--base-unit, 8px));
|
3397
3426
|
line-height: calc(3 * var(--base-unit, 8px));
|
3398
3427
|
padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
|
@@ -3439,7 +3468,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3439
3468
|
|
3440
3469
|
.sd-boolean--disabled .sd-boolean__thumb,
|
3441
3470
|
.sd-boolean--disabled .sd-boolean__label {
|
3442
|
-
color: var(--
|
3471
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3472
|
+
opacity: 0.25;
|
3443
3473
|
}
|
3444
3474
|
|
3445
3475
|
.svc-question__content .sd-boolean:not(.sd-boolean--checked):not(.sd-boolean--indeterminate) .sd-boolean__label:nth-of-type(1),
|
@@ -3478,7 +3508,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3478
3508
|
display: none;
|
3479
3509
|
}
|
3480
3510
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header > .sd-panel__title {
|
3481
|
-
color: var(--foreground-light, #909090);
|
3511
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3482
3512
|
}
|
3483
3513
|
|
3484
3514
|
.sd-question__content:first-child > .sd-paneldynamic > .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
@@ -3546,7 +3576,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3546
3576
|
|
3547
3577
|
.sd-paneldynamic__progress-text {
|
3548
3578
|
font-size: calc(2 * var(--base-unit, 8px));
|
3549
|
-
color: var(--foreground-light, #909090);
|
3579
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3550
3580
|
margin: 0;
|
3551
3581
|
margin-right: calc(3 * var(--base-unit, 8px));
|
3552
3582
|
}
|
@@ -3634,15 +3664,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3634
3664
|
border: none;
|
3635
3665
|
background-color: transparent;
|
3636
3666
|
cursor: pointer;
|
3637
|
-
font-family: var(--font-family,
|
3667
|
+
font-family: var(--font-family, var(--font-family));
|
3638
3668
|
font-size: calc(2 * var(--base-unit, 8px));
|
3639
|
-
color: var(--foreground-light, #909090);
|
3669
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3640
3670
|
overflow-x: hidden;
|
3641
3671
|
white-space: nowrap;
|
3642
3672
|
}
|
3643
3673
|
|
3644
3674
|
.sv-tab-item.sv-tab-item--pressed {
|
3645
|
-
color: var(--foreground, #161616);
|
3675
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3646
3676
|
box-shadow: inset 0px -2px 0px var(--primary, #19b394);
|
3647
3677
|
}
|
3648
3678
|
|
@@ -3676,7 +3706,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3676
3706
|
}
|
3677
3707
|
.sd-file .sv-action-bar .sv-action-bar-item {
|
3678
3708
|
height: calc(4 * var(--base-unit, 8px));
|
3679
|
-
color: var(--foreground-light, #909090);
|
3709
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3680
3710
|
border-radius: calc(2 * var(--base-unit, 8px));
|
3681
3711
|
}
|
3682
3712
|
.sd-file .sv-action-bar #fileIndex .sv-action-bar-item {
|
@@ -3717,7 +3747,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3717
3747
|
text-align: center;
|
3718
3748
|
word-break: break-word;
|
3719
3749
|
white-space: normal;
|
3720
|
-
color: var(--foreground-light, #909090);
|
3750
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3721
3751
|
}
|
3722
3752
|
|
3723
3753
|
.sd-file__choose-btn--text {
|
@@ -3806,7 +3836,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3806
3836
|
.sd-file__sign a {
|
3807
3837
|
display: block;
|
3808
3838
|
text-decoration: none;
|
3809
|
-
color: var(--foreground, #161616);
|
3839
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3810
3840
|
white-space: normal;
|
3811
3841
|
word-break: break-all;
|
3812
3842
|
width: calc(12 * var(--base-unit, 8px));
|
@@ -3942,13 +3972,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3942
3972
|
}
|
3943
3973
|
|
3944
3974
|
.sd-btn:disabled {
|
3945
|
-
color: var(--
|
3975
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3976
|
+
opacity: 0.25;
|
3946
3977
|
cursor: default;
|
3947
3978
|
}
|
3948
3979
|
|
3949
3980
|
.sd-btn--action {
|
3950
3981
|
background-color: var(--primary, #19b394);
|
3951
|
-
color: var(--primary-foreground, #fff);
|
3982
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3952
3983
|
}
|
3953
3984
|
|
3954
3985
|
.sd-btn--action:not(:disabled):hover, .sd-btn--action:not(:disabled):focus {
|
@@ -3957,7 +3988,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3957
3988
|
}
|
3958
3989
|
|
3959
3990
|
.sd-btn--action:disabled {
|
3960
|
-
color: var(--primary-foreground-disabled, rgba(255, 255, 255, 0.25));
|
3991
|
+
color: var(--sjs-primary-forecolor-light, var(--primary-foreground-disabled, rgba(255, 255, 255, 0.25)));
|
3961
3992
|
}
|
3962
3993
|
|
3963
3994
|
.sd-body {
|
@@ -4072,7 +4103,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4072
4103
|
border-right: 1px solid var(--border, #d6d6d6);
|
4073
4104
|
word-break: break-word;
|
4074
4105
|
white-space: normal;
|
4075
|
-
color: var(--foreground-light, #909090);
|
4106
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4076
4107
|
}
|
4077
4108
|
|
4078
4109
|
.sd-multipletext__item {
|
@@ -4122,16 +4153,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4122
4153
|
}
|
4123
4154
|
|
4124
4155
|
.sd-action--icon use {
|
4125
|
-
fill: var(--foreground-light, #909090);
|
4156
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4126
4157
|
}
|
4127
4158
|
|
4128
4159
|
svg.sd-action--icon {
|
4129
|
-
fill: var(--foreground-light, #909090);
|
4160
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4130
4161
|
}
|
4131
4162
|
|
4132
4163
|
.sd-action:disabled,
|
4133
4164
|
.sd-action--disabled {
|
4134
|
-
color: var(--foreground, #161616);
|
4165
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4135
4166
|
cursor: default;
|
4136
4167
|
opacity: 0.25;
|
4137
4168
|
pointer-events: none;
|
@@ -4194,7 +4225,7 @@ svg.sd-action--icon {
|
|
4194
4225
|
height: calc(3 * var(--base-unit, 8px));
|
4195
4226
|
}
|
4196
4227
|
.sd-context-btn use {
|
4197
|
-
fill: var(--foreground-light, #909090);
|
4228
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4198
4229
|
}
|
4199
4230
|
|
4200
4231
|
.sd-context-btn:hover use,
|
@@ -4275,7 +4306,7 @@ svg.sd-action--icon {
|
|
4275
4306
|
}
|
4276
4307
|
|
4277
4308
|
.sd-progress-buttons__list-element--nonclickable .sd-progress-buttons__page-title {
|
4278
|
-
color: var(--foreground-light, #909090);
|
4309
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4279
4310
|
}
|
4280
4311
|
|
4281
4312
|
.sd-progress-buttons__list-element--current .sd-progress-buttons__page-title,
|
@@ -4295,7 +4326,7 @@ svg.sd-action--icon {
|
|
4295
4326
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
4296
4327
|
line-height: calc(2 * var(--base-unit, 8px));
|
4297
4328
|
font-weight: 600;
|
4298
|
-
color: var(--foreground-light, #909090);
|
4329
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4299
4330
|
}
|
4300
4331
|
|
4301
4332
|
.sv_progress-toc {
|
@@ -4308,7 +4339,7 @@ svg.sd-action--icon {
|
|
4308
4339
|
}
|
4309
4340
|
.sv_progress-toc .sv-list__item.sv-list__item--selected .sv-list__item-body {
|
4310
4341
|
background: var(--primary-light, rgba(25, 179, 148, 0.1));
|
4311
|
-
color: var(--foreground, #161616);
|
4342
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4312
4343
|
font-weight: 400;
|
4313
4344
|
}
|
4314
4345
|
.sv_progress-toc .sv-list__item span {
|
@@ -4414,7 +4445,7 @@ svg.sd-action--icon {
|
|
4414
4445
|
}
|
4415
4446
|
|
4416
4447
|
.sd-timer__text--minor {
|
4417
|
-
color: var(--foreground-light, #909090);
|
4448
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4418
4449
|
font-weight: 600;
|
4419
4450
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
4420
4451
|
}
|
@@ -4625,7 +4656,7 @@ sv-components-container,
|
|
4625
4656
|
margin-bottom: calc(-2 * var(--base-unit, 8px));
|
4626
4657
|
}
|
4627
4658
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--row-text:not(.sd-matrix__cell) {
|
4628
|
-
color: var(--foreground-light, #909090);
|
4659
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4629
4660
|
padding-top: calc(2 * var(--base-unit, 8px));
|
4630
4661
|
}
|
4631
4662
|
.sd-root-modern.sd-root-modern--mobile .sd-matrixdropdown.sd-table tr:not(:last-child) {
|
@@ -4675,7 +4706,7 @@ body {
|
|
4675
4706
|
}
|
4676
4707
|
.sd-root-modern ::-webkit-scrollbar-thumb:hover {
|
4677
4708
|
border: 2px solid rgba(0, 0, 0, 0);
|
4678
|
-
background-color: var(--foreground-light, #909090);
|
4709
|
+
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4679
4710
|
}
|
4680
4711
|
|
4681
4712
|
.sd-container-modern {
|
@@ -4706,7 +4737,7 @@ body {
|
|
4706
4737
|
}
|
4707
4738
|
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-thumb:hover, .sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-thumb:hover {
|
4708
4739
|
border: 2px solid rgba(0, 0, 0, 0);
|
4709
|
-
background-color: var(--foreground-light, #909090);
|
4740
|
+
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4710
4741
|
}
|
4711
4742
|
|
4712
4743
|
.sv-popup.sv-popup--dropdown .sv-popup__shadow {
|