survey-react 1.9.80 → 1.9.82
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 +246 -159
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +123 -58
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +54 -7
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +351 -223
- package/survey.react.js +1194 -664
- 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.82
|
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,7 +314,6 @@ sv-popup {
|
|
314
314
|
left: 0;
|
315
315
|
top: 0;
|
316
316
|
width: 100vw;
|
317
|
-
height: 100vh;
|
318
317
|
outline: none;
|
319
318
|
z-index: 1500;
|
320
319
|
}
|
@@ -343,6 +342,11 @@ sv-popup {
|
|
343
342
|
max-width: 90vw;
|
344
343
|
}
|
345
344
|
|
345
|
+
.sv-popup.sv-popup--modal,
|
346
|
+
.sv-popup.sv-popup--overlay {
|
347
|
+
height: 100vh;
|
348
|
+
}
|
349
|
+
|
346
350
|
.sv-popup--modal {
|
347
351
|
display: flex;
|
348
352
|
align-items: center;
|
@@ -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;
|
@@ -932,11 +938,13 @@ sv-popup {
|
|
932
938
|
|
933
939
|
.sv-ranking-item:focus .sv-ranking-item__icon--focus {
|
934
940
|
visibility: visible;
|
941
|
+
top: calc(0.6 * var(--base-unit, 8px));
|
942
|
+
height: calc(3 * var(--base-unit, 8px));
|
935
943
|
}
|
936
944
|
|
937
945
|
.sv-ranking-item:focus .sv-ranking-item__index {
|
938
946
|
background: var(--background, #fff);
|
939
|
-
|
947
|
+
outline: calc(0.25 * var(--base-unit, 8px)) solid var(--primary, #19b394);
|
940
948
|
}
|
941
949
|
|
942
950
|
.sv-ranking-item__content.sv-ranking-item__content {
|
@@ -955,8 +963,6 @@ sv-popup {
|
|
955
963
|
flex-shrink: 0;
|
956
964
|
width: calc(3 * var(--base-unit, 8px));
|
957
965
|
height: calc(4 * var(--base-unit, 8px));
|
958
|
-
margin-right: calc(1 * var(--base-unit, 8px));
|
959
|
-
margin-left: calc(1 * var(--base-unit, 8px));
|
960
966
|
}
|
961
967
|
|
962
968
|
.sv-ranking-item__icon.sv-ranking-item__icon {
|
@@ -964,7 +970,6 @@ sv-popup {
|
|
964
970
|
fill: var(--primary, #19b394);
|
965
971
|
position: absolute;
|
966
972
|
top: calc(1 * var(--base-unit, 8px));
|
967
|
-
margin-right: calc(1 * var(--base-unit, 8px));
|
968
973
|
width: calc(1.75 * var(--base-unit, 8px));
|
969
974
|
height: calc(2 * var(--base-unit, 8px));
|
970
975
|
}
|
@@ -975,7 +980,7 @@ sv-popup {
|
|
975
980
|
align-items: center;
|
976
981
|
justify-content: center;
|
977
982
|
background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
|
978
|
-
color: var(--foreground, #161616);
|
983
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
979
984
|
font-size: calc(2 * var(--base-unit, 8px));
|
980
985
|
border-radius: 100%;
|
981
986
|
border: calc(0.25 * var(--base-unit, 8px)) solid transparent;
|
@@ -984,7 +989,7 @@ sv-popup {
|
|
984
989
|
line-height: calc(3 * var(--base-unit, 8px));
|
985
990
|
box-sizing: border-box;
|
986
991
|
font-weight: 600;
|
987
|
-
margin-left: calc(
|
992
|
+
margin-left: calc(0 * var(--base-unit, 8px));
|
988
993
|
}
|
989
994
|
.sv-ranking-item__index.sv-ranking-item__index.sv-ranking-item__index--empty:empty {
|
990
995
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAArSURBVHgB7cuhEQAwDMNAtUN4//m8RMtygcE5PxMQxAKnh6Q3mWzXd4mAD4cJBAQCqfbUAAAAAElFTkSuQmCC");
|
@@ -997,14 +1002,15 @@ sv-popup {
|
|
997
1002
|
overflow: hidden;
|
998
1003
|
text-overflow: ellipsis;
|
999
1004
|
white-space: nowrap;
|
1000
|
-
color: var(--foreground, #161616);
|
1005
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1001
1006
|
font-size: calc(2 * var(--base-unit, 8px));
|
1002
1007
|
line-height: calc(3 * var(--base-unit, 8px));
|
1003
1008
|
margin: 0 calc(2 * var(--base-unit, 8px));
|
1004
1009
|
}
|
1005
1010
|
|
1006
1011
|
.sd-ranking--disabled .sv-ranking-item__text {
|
1007
|
-
color: var(--
|
1012
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1013
|
+
opacity: 0.25;
|
1008
1014
|
}
|
1009
1015
|
|
1010
1016
|
.sv-ranking-item__ghost.sv-ranking-item__ghost {
|
@@ -1047,7 +1053,7 @@ sv-popup {
|
|
1047
1053
|
|
1048
1054
|
.sv-ranking--mobile .sv-ranking-item__icon--hover {
|
1049
1055
|
visibility: visible;
|
1050
|
-
fill: var(--foreground-light, #909090);
|
1056
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1051
1057
|
}
|
1052
1058
|
|
1053
1059
|
.sv-ranking--mobile.sv-ranking--drag .sv-ranking-item--ghost .sv-ranking-item__icon.sv-ranking-item__icon--hover {
|
@@ -1090,12 +1096,15 @@ sv-popup {
|
|
1090
1096
|
}
|
1091
1097
|
|
1092
1098
|
.sv-ranking-shortcut .sv-ranking-item__icon {
|
1093
|
-
margin-left: calc(1 * var(--base-unit, 8px));
|
1094
1099
|
width: calc(1.75 * var(--base-unit, 8px));
|
1095
1100
|
height: calc(2 * var(--base-unit, 8px));
|
1096
1101
|
top: calc(1 * var(--base-unit, 8px));
|
1097
1102
|
}
|
1098
1103
|
|
1104
|
+
.sv-ranking-shortcut .sv-ranking-item__icon-container {
|
1105
|
+
margin-left: calc(1 * var(--base-unit, 8px));
|
1106
|
+
}
|
1107
|
+
|
1099
1108
|
.sv-list {
|
1100
1109
|
padding: 0;
|
1101
1110
|
margin: 0;
|
@@ -1120,14 +1129,14 @@ sv-popup {
|
|
1120
1129
|
font-size: calc(2 * var(--base-unit, 8px));
|
1121
1130
|
font-weight: 400;
|
1122
1131
|
text-align: center;
|
1123
|
-
color: var(--foreground-light, #909090);
|
1132
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1124
1133
|
}
|
1125
1134
|
|
1126
1135
|
.sv-list__item {
|
1127
1136
|
width: 100%;
|
1128
1137
|
align-items: center;
|
1129
1138
|
box-sizing: border-box;
|
1130
|
-
color: var(--foreground, #161616);
|
1139
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1131
1140
|
cursor: pointer;
|
1132
1141
|
overflow: hidden;
|
1133
1142
|
text-overflow: ellipsis;
|
@@ -1141,7 +1150,7 @@ sv-popup {
|
|
1141
1150
|
padding-block: calc(1 * var(--base-unit, 8px));
|
1142
1151
|
padding-inline-end: calc(8 * var(--base-unit, 8px));
|
1143
1152
|
padding-inline-start: calc(2 * var(--base-unit, 8px));
|
1144
|
-
color: var(--foreground, #161616);
|
1153
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1145
1154
|
font-size: calc(2 * var(--base-unit, 8px));
|
1146
1155
|
line-height: calc(3 * var(--base-unit, 8px));
|
1147
1156
|
cursor: pointer;
|
@@ -1180,7 +1189,7 @@ sv-popup {
|
|
1180
1189
|
display: block;
|
1181
1190
|
}
|
1182
1191
|
.sv-list__item-icon use {
|
1183
|
-
fill: var(--foreground-light, #909090);
|
1192
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1184
1193
|
}
|
1185
1194
|
|
1186
1195
|
[dir=rtl] .sv-list__item-icon,
|
@@ -1201,7 +1210,7 @@ sv-popup {
|
|
1201
1210
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected.sv-list__item--focused .sv-list__item-body,
|
1202
1211
|
li:focus .sv-list__item.sv-list__item--selected .sv-list__item-body {
|
1203
1212
|
background-color: var(--primary, #19b394);
|
1204
|
-
color: var(--primary-foreground, #fff);
|
1213
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
1205
1214
|
font-weight: 600;
|
1206
1215
|
}
|
1207
1216
|
.sv-list__item.sv-list__item--selected .sv-list__item-icon use,
|
@@ -1215,13 +1224,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1215
1224
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected .sv-list__item-body,
|
1216
1225
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected:hover .sv-list__item-body {
|
1217
1226
|
background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
|
1218
|
-
color: var(--foreground, #161616);
|
1227
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1219
1228
|
font-weight: 400;
|
1220
1229
|
}
|
1221
1230
|
|
1222
1231
|
.sv-list__item.sv-list__item--disabled .sv-list__item-body {
|
1223
1232
|
cursor: default;
|
1224
|
-
color: var(--foreground-light, #909090);
|
1233
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1225
1234
|
}
|
1226
1235
|
|
1227
1236
|
.sv-list__item span {
|
@@ -1254,7 +1263,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1254
1263
|
height: calc(3 * var(--base-unit, 8px));
|
1255
1264
|
}
|
1256
1265
|
.sv-list__filter-icon .sv-svg-icon use {
|
1257
|
-
fill: var(--foreground-light, #909090);
|
1266
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1258
1267
|
}
|
1259
1268
|
|
1260
1269
|
.sv-list__input {
|
@@ -1267,7 +1276,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1267
1276
|
width: 100%;
|
1268
1277
|
outline: none;
|
1269
1278
|
font-size: 1em;
|
1270
|
-
color: var(--foreground, #161616);
|
1279
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1271
1280
|
padding: calc(1.5 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
|
1272
1281
|
padding-inline-start: calc(7 * var(--base-unit, 8px));
|
1273
1282
|
line-height: calc(3 * var(--base-unit, 8px));
|
@@ -1275,12 +1284,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1275
1284
|
}
|
1276
1285
|
|
1277
1286
|
.sv-list__input::placeholder {
|
1278
|
-
color: var(--foreground-light, #909090);
|
1287
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1279
1288
|
}
|
1280
1289
|
|
1281
1290
|
.sv-list__input:disabled,
|
1282
1291
|
.sv-list__input:disabled::placeholder {
|
1283
|
-
color: var(--foreground-light, #909090);
|
1292
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1284
1293
|
}
|
1285
1294
|
|
1286
1295
|
.sv-list__loading-indicator {
|
@@ -1300,11 +1309,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1300
1309
|
padding: calc(3 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
|
1301
1310
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
|
1302
1311
|
border-radius: calc(1 * var(--base-unit, 8px));
|
1303
|
-
color: var(--foreground, #161616);
|
1312
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1304
1313
|
min-width: calc(30 * var(--base-unit, 8px));
|
1305
1314
|
text-align: center;
|
1306
1315
|
z-index: 1600;
|
1307
|
-
font-family: var(--font-family,
|
1316
|
+
font-family: var(--font-family, var(--font-family));
|
1308
1317
|
font-size: calc(2 * var(--base-unit, 8px));
|
1309
1318
|
line-height: calc(3 * var(--base-unit, 8px));
|
1310
1319
|
display: flex;
|
@@ -1387,7 +1396,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1387
1396
|
padding-left: calc(var(--sd-base-padding) + var(--sv-element-add-padding-left, 0px));
|
1388
1397
|
padding-right: calc(var(--sd-base-padding) + var(--sv-element-add-padding-right, 0px));
|
1389
1398
|
padding-bottom: var(--sd-base-padding);
|
1390
|
-
background: var(--background, #fff);
|
1399
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
1391
1400
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1392
1401
|
}
|
1393
1402
|
.svc-logic-question-value > .sd-question__erbox--outside-question,
|
@@ -1574,7 +1583,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1574
1583
|
width: calc(5 * var(--base-unit, 8px));
|
1575
1584
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
1576
1585
|
line-height: calc(2 * var(--base-unit, 8px));
|
1577
|
-
color: var(--foreground-light, #909090);
|
1586
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1578
1587
|
margin-inline-start: calc(-5 * var(--base-unit, 8px));
|
1579
1588
|
text-align: end;
|
1580
1589
|
box-sizing: border-box;
|
@@ -1714,7 +1723,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1714
1723
|
display: flex;
|
1715
1724
|
flex-direction: column;
|
1716
1725
|
gap: calc(1 * var(--base-unit, 8px));
|
1717
|
-
color: var(--foreground, #161616);
|
1726
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1718
1727
|
white-space: normal;
|
1719
1728
|
}
|
1720
1729
|
|
@@ -1725,7 +1734,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1725
1734
|
width: auto;
|
1726
1735
|
max-width: calc(29 * var(--base-unit, 8px));
|
1727
1736
|
background-color: var(--background, #fff);
|
1728
|
-
color: var(--foreground, #161616);
|
1737
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1729
1738
|
opacity: 0.75;
|
1730
1739
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
|
1731
1740
|
z-index: 1000;
|
@@ -1768,7 +1777,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1768
1777
|
min-height: calc(24 * var(--base-unit, 8px));
|
1769
1778
|
line-height: calc(3 * var(--base-unit, 8px));
|
1770
1779
|
font-size: calc(2 * var(--base-unit, 8px));
|
1771
|
-
color: var(--foreground-light, #909090);
|
1780
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1772
1781
|
}
|
1773
1782
|
.sd-question__placeholder > div .sv-string-viewer, .sd-question__placeholder > span .sv-string-viewer {
|
1774
1783
|
white-space: pre-line;
|
@@ -1798,10 +1807,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1798
1807
|
box-sizing: border-box;
|
1799
1808
|
padding: calc(1.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
|
1800
1809
|
line-height: calc(3 * var(--base-unit, 8px));
|
1801
|
-
font-family: var(--font-family,
|
1810
|
+
font-family: var(--font-family, var(--font-family));
|
1802
1811
|
font-size: calc(2 * var(--base-unit, 8px));
|
1803
|
-
color: var(--foreground, #161616);
|
1804
|
-
background-color: var(--background-dim-light, #f9f9f9);
|
1812
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1813
|
+
background-color: var(--sjs-editor-background, var(--background-dim-light, #f9f9f9));
|
1805
1814
|
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1806
1815
|
border: none;
|
1807
1816
|
border-radius: 3px;
|
@@ -1813,7 +1822,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1813
1822
|
}
|
1814
1823
|
|
1815
1824
|
.sd-input--disabled {
|
1816
|
-
background-color: var(--background-dim-light, #f9f9f9);
|
1825
|
+
background-color: var(--sjs-editor-background, var(--background-dim-light, #f9f9f9));
|
1817
1826
|
-webkit-user-select: none;
|
1818
1827
|
-moz-user-select: none;
|
1819
1828
|
-ms-user-select: none;
|
@@ -1821,7 +1830,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1821
1830
|
}
|
1822
1831
|
|
1823
1832
|
.sd-input::placeholder {
|
1824
|
-
color: var(--foreground-light, #909090);
|
1833
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1825
1834
|
-webkit-user-select: none;
|
1826
1835
|
-moz-user-select: none;
|
1827
1836
|
-ms-user-select: none;
|
@@ -1830,12 +1839,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1830
1839
|
|
1831
1840
|
.sd-input--disabled,
|
1832
1841
|
.sd-input--disabled::placeholder {
|
1833
|
-
color: var(--
|
1842
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1843
|
+
opacity: 0.25;
|
1834
1844
|
}
|
1835
1845
|
|
1836
1846
|
.sd-root--readonly .sd-input--disabled,
|
1837
1847
|
.sd-root--readonly .sd-input--disabled::placeholder {
|
1838
|
-
color: var(--foreground, #161616);
|
1848
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1839
1849
|
}
|
1840
1850
|
|
1841
1851
|
.sd-input:focus {
|
@@ -1856,10 +1866,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1856
1866
|
justify-content: flex-end;
|
1857
1867
|
align-items: flex-end;
|
1858
1868
|
padding: 0px;
|
1859
|
-
font-family:
|
1869
|
+
font-family: var(--font-family);
|
1860
1870
|
line-height: calc(3 * var(--base-unit, 8px));
|
1861
1871
|
font-size: calc(2 * var(--base-unit, 8px));
|
1862
|
-
color: var(--foreground-light, #909090);
|
1872
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1863
1873
|
position: absolute;
|
1864
1874
|
inset-inline-end: calc(2 * var(--base-unit, 8px));
|
1865
1875
|
inset-block-end: calc(1.5 * var(--base-unit, 8px));
|
@@ -1969,7 +1979,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1969
1979
|
}
|
1970
1980
|
|
1971
1981
|
.sjs_sp_placeholder {
|
1972
|
-
color: var(--foreground-light, #909090);
|
1982
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1973
1983
|
}
|
1974
1984
|
|
1975
1985
|
.sjs_sp_container {
|
@@ -2005,7 +2015,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2005
2015
|
display: block;
|
2006
2016
|
}
|
2007
2017
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
2008
|
-
fill: var(--primary-foreground, #fff);
|
2018
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2009
2019
|
}
|
2010
2020
|
|
2011
2021
|
.sd-checkbox--checked.sd-checkbox--disabled .sd-checkbox__svg use {
|
@@ -2041,7 +2051,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2041
2051
|
border: none;
|
2042
2052
|
line-height: calc(3 * var(--base-unit, 8px));
|
2043
2053
|
font-size: calc(2 * var(--base-unit, 8px));
|
2044
|
-
font-family: var(--font-family,
|
2054
|
+
font-family: var(--font-family, var(--font-family));
|
2045
2055
|
font-weight: 600;
|
2046
2056
|
padding: calc(1 * var(--base-unit, 8px)) 0;
|
2047
2057
|
}
|
@@ -2072,12 +2082,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2072
2082
|
display: block;
|
2073
2083
|
}
|
2074
2084
|
.sd-drag-element__svg use {
|
2075
|
-
fill: var(--foreground-light, #909090);
|
2085
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2076
2086
|
}
|
2077
2087
|
|
2078
2088
|
.sd-table {
|
2079
2089
|
width: 100%;
|
2080
|
-
background
|
2090
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2081
2091
|
border-collapse: collapse;
|
2082
2092
|
white-space: normal;
|
2083
2093
|
}
|
@@ -2102,7 +2112,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2102
2112
|
}
|
2103
2113
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-input,
|
2104
2114
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
|
2105
|
-
background-color: var(--primary-foreground, #fff);
|
2115
|
+
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2106
2116
|
}
|
2107
2117
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item__decorator,
|
2108
2118
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item__decorator {
|
@@ -2114,7 +2124,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2114
2124
|
font-size: calc(2 * var(--base-unit, 8px));
|
2115
2125
|
line-height: calc(3 * var(--base-unit, 8px));
|
2116
2126
|
padding: calc(1 * var(--base-unit, 8px));
|
2117
|
-
color: var(--foreground, #161616);
|
2127
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2118
2128
|
text-align: center;
|
2119
2129
|
}
|
2120
2130
|
|
@@ -2178,7 +2188,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2178
2188
|
opacity: 1;
|
2179
2189
|
}
|
2180
2190
|
.svc-question__content .sd-table__cell--actions .sv-action-bar-item:disabled use {
|
2181
|
-
fill: var(--foreground-light, #909090);
|
2191
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2182
2192
|
}
|
2183
2193
|
|
2184
2194
|
.sd-table__cell--actions:not(.sd-table__cell--vertical) {
|
@@ -2196,7 +2206,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2196
2206
|
.sd-table__cell--detail-button svg {
|
2197
2207
|
width: calc(2 * var(--base-unit, 8px));
|
2198
2208
|
height: calc(2 * var(--base-unit, 8px));
|
2199
|
-
fill: var(--foreground-light, #909090);
|
2209
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2200
2210
|
}
|
2201
2211
|
.sd-table__cell--detail-button:hover {
|
2202
2212
|
background: var(--green-light, rgba(25, 179, 148, 0.1));
|
@@ -2236,7 +2246,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2236
2246
|
.sd-matrix__cell:first-of-type,
|
2237
2247
|
.sd-matrix tr > td:first-of-type {
|
2238
2248
|
position: sticky;
|
2239
|
-
background: var(--background, #fff);
|
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,7 +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;
|
2260
|
-
background: var(--background, #fff);
|
2270
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2261
2271
|
}
|
2262
2272
|
|
2263
2273
|
.sd-question.sd-question--table {
|
@@ -2278,7 +2288,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2278
2288
|
min-height: 100%;
|
2279
2289
|
width: calc(var(--sd-base-padding) - var(--base-unit, 8px));
|
2280
2290
|
flex-shrink: 0;
|
2281
|
-
background: var(--background, #fff);
|
2291
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2282
2292
|
z-index: 11;
|
2283
2293
|
}
|
2284
2294
|
.sd-table-wrapper::before {
|
@@ -2337,20 +2347,22 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2337
2347
|
box-sizing: border-box;
|
2338
2348
|
}
|
2339
2349
|
|
2340
|
-
.sd-page__title {
|
2350
|
+
.sd-page .sd-page__title {
|
2341
2351
|
position: static;
|
2342
2352
|
font-size: calc(3 * var(--base-unit, 8px));
|
2343
2353
|
line-height: calc(4 * var(--base-unit, 8px));
|
2344
2354
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
2345
2355
|
font-weight: 700;
|
2356
|
+
color: var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91));
|
2346
2357
|
}
|
2347
2358
|
|
2348
|
-
.sd-page__description {
|
2359
|
+
.sd-page .sd-page__description {
|
2349
2360
|
position: static;
|
2350
2361
|
font-size: calc(2 * var(--base-unit, 8px));
|
2351
2362
|
line-height: calc(3 * var(--base-unit, 8px));
|
2352
2363
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
2353
2364
|
font-weight: 400;
|
2365
|
+
color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
2354
2366
|
}
|
2355
2367
|
|
2356
2368
|
.sd-row {
|
@@ -2367,7 +2379,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2367
2379
|
|
2368
2380
|
.sd-page__row.sd-row--multiple,
|
2369
2381
|
.svc-row > .sd-row--multiple {
|
2370
|
-
background: var(--background, #fff);
|
2382
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
2371
2383
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2372
2384
|
border-radius: calc(0.5 * var(--base-unit, 8px));
|
2373
2385
|
}
|
@@ -2419,9 +2431,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2419
2431
|
|
2420
2432
|
.sd-title {
|
2421
2433
|
display: block;
|
2422
|
-
font-family: var(--font-family,
|
2434
|
+
font-family: var(--font-family, var(--font-family));
|
2423
2435
|
font-style: normal;
|
2424
|
-
color: var(--foreground, #161616);
|
2436
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2425
2437
|
flex-direction: row;
|
2426
2438
|
white-space: normal;
|
2427
2439
|
word-break: break-word;
|
@@ -2432,7 +2444,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2432
2444
|
align-items: center;
|
2433
2445
|
padding: var(--sd-page-vertical-padding) var(--sd-page-vertical-padding);
|
2434
2446
|
overflow: auto;
|
2435
|
-
font-family: var(--font-family,
|
2447
|
+
font-family: var(--font-family, var(--font-family));
|
2436
2448
|
gap: calc(4 * var(--base-unit, 8px));
|
2437
2449
|
box-shadow: 0px 2px 0px var(--primary, #19b394);
|
2438
2450
|
margin-bottom: 2px;
|
@@ -2502,10 +2514,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2502
2514
|
}
|
2503
2515
|
|
2504
2516
|
.sd-description {
|
2505
|
-
font-family: var(--font-family,
|
2517
|
+
font-family: var(--font-family, var(--font-family));
|
2506
2518
|
font-style: normal;
|
2507
2519
|
font-weight: normal;
|
2508
|
-
color: var(--foreground-light, #909090);
|
2520
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2509
2521
|
white-space: normal;
|
2510
2522
|
word-break: break-word;
|
2511
2523
|
}
|
@@ -2522,7 +2534,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2522
2534
|
width: calc(3 * var(--base-unit, 8px));
|
2523
2535
|
height: calc(3 * var(--base-unit, 8px));
|
2524
2536
|
box-sizing: border-box;
|
2525
|
-
background: var(--sd-item-default-background, var(--background-dim-light, #f9f9f9));
|
2537
|
+
background: var(--sd-item-default-background, var(--sjs-editor-background, var(--background-dim-light, #f9f9f9)));
|
2526
2538
|
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2527
2539
|
border: none;
|
2528
2540
|
flex-shrink: 0;
|
@@ -2548,12 +2560,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2548
2560
|
}
|
2549
2561
|
|
2550
2562
|
.sd-item__control-label {
|
2551
|
-
font-family: var(--font-family,
|
2563
|
+
font-family: var(--font-family, var(--font-family));
|
2552
2564
|
font-style: normal;
|
2553
2565
|
font-weight: normal;
|
2554
2566
|
line-height: calc(3 * var(--base-unit, 8px));
|
2555
2567
|
font-size: calc(2 * var(--base-unit, 8px));
|
2556
|
-
color: var(--foreground, #161616);
|
2568
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2557
2569
|
white-space: normal;
|
2558
2570
|
word-break: break-word;
|
2559
2571
|
width: 100%;
|
@@ -2561,11 +2573,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2561
2573
|
}
|
2562
2574
|
|
2563
2575
|
.sd-item--disabled .sd-item__control-label {
|
2564
|
-
color: var(--
|
2576
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2577
|
+
opacity: 0.25;
|
2565
2578
|
}
|
2566
2579
|
|
2567
2580
|
.sd-root--readonly .sd-item--disabled .sd-item__control-label {
|
2568
|
-
color: var(--foreground, #161616);
|
2581
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2569
2582
|
}
|
2570
2583
|
|
2571
2584
|
.sd-item--error .sd-item__decorator {
|
@@ -2634,7 +2647,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2634
2647
|
display: block;
|
2635
2648
|
}
|
2636
2649
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
2637
|
-
fill: var(--primary-foreground, #fff);
|
2650
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2638
2651
|
}
|
2639
2652
|
|
2640
2653
|
.sd-checkbox--checked.sd-checkbox--disabled .sd-checkbox__svg use {
|
@@ -2655,7 +2668,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2655
2668
|
width: calc(1 * var(--base-unit, 8px));
|
2656
2669
|
height: calc(1 * var(--base-unit, 8px));
|
2657
2670
|
border-radius: 50%;
|
2658
|
-
background-color: var(--primary-foreground, #fff);
|
2671
|
+
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2659
2672
|
}
|
2660
2673
|
|
2661
2674
|
.sd-radio--checked.sd-radio--disabled .sd-radio__decorator:after {
|
@@ -2727,16 +2740,25 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2727
2740
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2728
2741
|
border-radius: calc(12.5 * var(--base-unit, 8px));
|
2729
2742
|
white-space: nowrap;
|
2730
|
-
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;
|
2731
2748
|
box-sizing: border-box;
|
2732
2749
|
min-width: calc(6 * var(--base-unit, 8px));
|
2733
2750
|
text-align: center;
|
2734
2751
|
border: 2px solid var(--background, #fff);
|
2735
|
-
color: var(--foreground, #161616);
|
2736
|
-
fill: var(--foreground, #161616);
|
2752
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2753
|
+
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2737
2754
|
font-size: calc(2 * var(--base-unit, 8px));
|
2738
2755
|
}
|
2739
2756
|
|
2757
|
+
.sd-rating__item--fixed-size {
|
2758
|
+
width: calc(6 * var(--base-unit, 8px));
|
2759
|
+
padding: 0;
|
2760
|
+
}
|
2761
|
+
|
2740
2762
|
legend + .sd-rating__item,
|
2741
2763
|
legend + sv-ng-rating-item + .sd-rating__item {
|
2742
2764
|
margin-inline-start: 2px;
|
@@ -2749,13 +2771,17 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
2749
2771
|
}
|
2750
2772
|
|
2751
2773
|
.sd-rating__item.sd-rating__item--disabled {
|
2752
|
-
color: var(--
|
2753
|
-
fill: var(--
|
2774
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2775
|
+
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2754
2776
|
}
|
2755
2777
|
|
2756
2778
|
.sd-rating__item.sd-rating__item--selected.sd-rating__item--disabled {
|
2757
|
-
color: var(--primary-
|
2758
|
-
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;
|
2759
2785
|
}
|
2760
2786
|
|
2761
2787
|
.sd-rating__item--allowhover:hover,
|
@@ -2766,7 +2792,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
2766
2792
|
.sd-rating__item--selected {
|
2767
2793
|
background-color: var(--primary, #19b394);
|
2768
2794
|
border-color: var(--primary, #19b394);
|
2769
|
-
color: var(--primary-foreground, #fff);
|
2795
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2770
2796
|
font-weight: 600;
|
2771
2797
|
box-shadow: 0px 1px 2px transparent;
|
2772
2798
|
}
|
@@ -2785,7 +2811,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
2785
2811
|
min-width: calc(6 * var(--base-unit, 8px));
|
2786
2812
|
text-align: center;
|
2787
2813
|
border: 2px solid var(--border, #d6d6d6);
|
2788
|
-
color: var(--foreground, #161616);
|
2814
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2789
2815
|
fill: var(--border, #d6d6d6);
|
2790
2816
|
}
|
2791
2817
|
.sd-rating__item-smiley svg {
|
@@ -2810,7 +2836,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2810
2836
|
|
2811
2837
|
.sd-rating__item-smiley.sd-rating__item-smiley--selected.sd-rating__item-smiley--disabled {
|
2812
2838
|
opacity: initial;
|
2813
|
-
fill: var(--primary-foreground, #fff);
|
2839
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2814
2840
|
}
|
2815
2841
|
|
2816
2842
|
.sd-rating__item-smiley--allowhover:hover,
|
@@ -2821,7 +2847,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2821
2847
|
.sd-rating__item-smiley--selected {
|
2822
2848
|
background-color: var(--primary, #19b394);
|
2823
2849
|
border-color: var(--primary, #19b394);
|
2824
|
-
fill: var(--primary-foreground, #fff);
|
2850
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2825
2851
|
font-weight: 600;
|
2826
2852
|
}
|
2827
2853
|
|
@@ -2911,14 +2937,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2911
2937
|
.sd-rating__item-text.sd-rating__item-text {
|
2912
2938
|
font-size: calc(2 * var(--base-unit, 8px));
|
2913
2939
|
line-height: calc(3 * var(--base-unit, 8px));
|
2914
|
-
min-width: calc(3 * var(--base-unit, 8px));
|
2915
2940
|
display: inline-block;
|
2916
2941
|
}
|
2917
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 {
|
2918
2943
|
margin-top: calc(1.25 * var(--base-unit, 8px));
|
2919
2944
|
margin-bottom: calc(1.25 * var(--base-unit, 8px));
|
2920
2945
|
border: 2px solid var(--background, #fff);
|
2921
|
-
color: var(--foreground-light, #909090);
|
2946
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2922
2947
|
}
|
2923
2948
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text {
|
2924
2949
|
margin-right: calc(1 * var(--base-unit, 8px));
|
@@ -2931,6 +2956,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2931
2956
|
.sd-rating__item-text.sd-rating__item-text .sv-string-editor {
|
2932
2957
|
white-space: nowrap;
|
2933
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
|
+
}
|
2934
2962
|
|
2935
2963
|
.sv-ranking-item--error .sv-ranking-item__index {
|
2936
2964
|
background-color: var(--red-light, rgba(230, 10, 62, 0.1));
|
@@ -2942,21 +2970,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2942
2970
|
left: calc(-3 * var(--base-unit, 8px));
|
2943
2971
|
}
|
2944
2972
|
|
2945
|
-
.sd-element--with-frame .sv-ranking-item__icon {
|
2946
|
-
margin-left: calc(1 * var(--base-unit, 8px));
|
2947
|
-
width: calc(1.75 * var(--base-unit, 8px));
|
2948
|
-
height: calc(2 * var(--base-unit, 8px));
|
2949
|
-
top: calc(1 * var(--base-unit, 8px));
|
2950
|
-
}
|
2951
|
-
|
2952
|
-
.sd-element--with-frame .sv-ranking-item__icon-container {
|
2953
|
-
position: relative;
|
2954
|
-
width: calc(3 * var(--base-unit, 8px));
|
2955
|
-
height: calc(4 * var(--base-unit, 8px));
|
2956
|
-
margin-right: calc(1 * var(--base-unit, 8px));
|
2957
|
-
margin-left: calc(1 * var(--base-unit, 8px));
|
2958
|
-
}
|
2959
|
-
|
2960
2973
|
.sd-element--with-frame .sv-ranking--mobile .sv-ranking-item__icon-container {
|
2961
2974
|
margin-left: 0;
|
2962
2975
|
margin-right: calc(1 * var(--base-unit, 8px));
|
@@ -2990,7 +3003,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2990
3003
|
|
2991
3004
|
.sd-dropdown--empty:not(.sd-input--disabled),
|
2992
3005
|
.sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__value {
|
2993
|
-
color: var(--foreground-light, #909090);
|
3006
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2994
3007
|
}
|
2995
3008
|
|
2996
3009
|
.sd-dropdown__input-field-component {
|
@@ -2998,8 +3011,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2998
3011
|
}
|
2999
3012
|
|
3000
3013
|
.sd-dropdown option {
|
3001
|
-
color: var(--foreground, #161616);
|
3002
|
-
font-family: var(--font-family,
|
3014
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3015
|
+
font-family: var(--font-family, var(--font-family));
|
3003
3016
|
font-size: calc(2 * var(--base-unit, 8px));
|
3004
3017
|
}
|
3005
3018
|
|
@@ -3009,9 +3022,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3009
3022
|
overflow: hidden;
|
3010
3023
|
text-overflow: ellipsis;
|
3011
3024
|
white-space: nowrap;
|
3012
|
-
font-family: var(--font-family,
|
3025
|
+
font-family: var(--font-family, var(--font-family));
|
3013
3026
|
font-size: calc(2 * var(--base-unit, 8px));
|
3014
|
-
color: var(--foreground, #161616);
|
3027
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3015
3028
|
position: relative;
|
3016
3029
|
}
|
3017
3030
|
|
@@ -3026,7 +3039,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3026
3039
|
}
|
3027
3040
|
|
3028
3041
|
.sd-dropdown use {
|
3029
|
-
fill: var(--foreground-light, #909090);
|
3042
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3030
3043
|
}
|
3031
3044
|
|
3032
3045
|
.sd-input.sd-dropdown:focus-within {
|
@@ -3046,7 +3059,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3046
3059
|
border: none;
|
3047
3060
|
outline: none;
|
3048
3061
|
padding: 0;
|
3049
|
-
font-family: var(--font-family,
|
3062
|
+
font-family: var(--font-family, var(--font-family));
|
3050
3063
|
font-size: calc(2 * var(--base-unit, 8px));
|
3051
3064
|
background-color: transparent;
|
3052
3065
|
overflow: hidden;
|
@@ -3058,13 +3071,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3058
3071
|
}
|
3059
3072
|
|
3060
3073
|
.sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__filter-string-input::placeholder {
|
3061
|
-
color: var(--foreground-light, #909090);
|
3074
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3062
3075
|
}
|
3063
3076
|
|
3064
3077
|
.sd-dropdown__filter-string-input::placeholder {
|
3065
|
-
font-family: var(--font-family,
|
3078
|
+
font-family: var(--font-family, var(--font-family));
|
3066
3079
|
font-size: calc(2 * var(--base-unit, 8px));
|
3067
|
-
color: var(--foreground, #161616);
|
3080
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3068
3081
|
width: 100%;
|
3069
3082
|
max-width: 100%;
|
3070
3083
|
overflow: hidden;
|
@@ -3076,12 +3089,18 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3076
3089
|
}
|
3077
3090
|
|
3078
3091
|
.sd-dropdown__hint-prefix {
|
3079
|
-
color: var(--foreground-light, #909090);
|
3092
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3093
|
+
}
|
3094
|
+
.sd-dropdown__hint-prefix span {
|
3095
|
+
white-space: pre;
|
3080
3096
|
}
|
3081
3097
|
|
3082
3098
|
.sd-dropdown__hint-suffix {
|
3083
3099
|
display: flex;
|
3084
|
-
color: var(--foreground-light, #909090);
|
3100
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3101
|
+
}
|
3102
|
+
.sd-dropdown__hint-suffix span {
|
3103
|
+
white-space: pre;
|
3085
3104
|
}
|
3086
3105
|
|
3087
3106
|
[dir=rtl] .sd-dropdown,
|
@@ -3123,7 +3142,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3123
3142
|
}
|
3124
3143
|
|
3125
3144
|
.sv-tagbox__item-text {
|
3126
|
-
color: var(--primary-foreground, #fff);
|
3145
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3127
3146
|
min-width: calc(5.5 * var(--base-unit, 8px));
|
3128
3147
|
text-align: center;
|
3129
3148
|
font-weight: 600;
|
@@ -3153,11 +3172,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3153
3172
|
|
3154
3173
|
.sd-tagbox-item_clean-button-svg:hover {
|
3155
3174
|
border-radius: 100px;
|
3156
|
-
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)));
|
3157
3176
|
}
|
3158
3177
|
|
3159
3178
|
.sd-tagbox-item_clean-button-svg use {
|
3160
|
-
fill: var(--primary-foreground, #fff);
|
3179
|
+
fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3161
3180
|
}
|
3162
3181
|
|
3163
3182
|
.sd-tagbox__value.sd-dropdown__value {
|
@@ -3189,7 +3208,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3189
3208
|
text-align: left;
|
3190
3209
|
cursor: text;
|
3191
3210
|
pointer-events: none;
|
3192
|
-
color: var(--foreground-light, #909090);
|
3211
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3193
3212
|
}
|
3194
3213
|
|
3195
3214
|
[dir=rtl] .sd-tagbox-item_clean-button,
|
@@ -3287,7 +3306,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3287
3306
|
font-size: calc(2 * var(--base-unit, 8px));
|
3288
3307
|
line-height: calc(3 * var(--base-unit, 8px));
|
3289
3308
|
margin-top: calc(1 * var(--base-unit, 8px));
|
3290
|
-
color: var(--foreground, #161616);
|
3309
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3291
3310
|
}
|
3292
3311
|
|
3293
3312
|
.sd-imagepicker__no-image {
|
@@ -3302,7 +3321,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3302
3321
|
margin: auto;
|
3303
3322
|
}
|
3304
3323
|
.sd-imagepicker__no-image-svg use {
|
3305
|
-
fill: var(--foreground-light, #909090);
|
3324
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3306
3325
|
}
|
3307
3326
|
|
3308
3327
|
.sd-imagepicker__column {
|
@@ -3343,7 +3362,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3343
3362
|
}
|
3344
3363
|
|
3345
3364
|
.sd-image__no-image use {
|
3346
|
-
fill: var(--foreground-light, #909090);
|
3365
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3347
3366
|
}
|
3348
3367
|
|
3349
3368
|
.sd-html {
|
@@ -3351,7 +3370,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3351
3370
|
}
|
3352
3371
|
|
3353
3372
|
.sd-expression {
|
3354
|
-
color: var(--foreground, #161616);
|
3373
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3355
3374
|
font-size: calc(2 * var(--base-unit, 8px));
|
3356
3375
|
}
|
3357
3376
|
|
@@ -3372,7 +3391,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3372
3391
|
position: absolute;
|
3373
3392
|
margin-top: calc(1 * var(--base-unit, 8px));
|
3374
3393
|
right: calc(3 * var(--base-unit, 8px));
|
3375
|
-
color: var(--foreground-light, #909090);
|
3394
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3376
3395
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
3377
3396
|
line-height: calc(2 * var(--base-unit, 8px));
|
3378
3397
|
font-weight: 600;
|
@@ -3393,7 +3412,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3393
3412
|
width: max-content;
|
3394
3413
|
position: relative;
|
3395
3414
|
padding: calc(0.5 * var(--base-unit, 8px));
|
3396
|
-
background: var(--background-dim-light, #f9f9f9);
|
3415
|
+
background: var(--sjs-editor-background, var(--background-dim-light, #f9f9f9));
|
3397
3416
|
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
|
3398
3417
|
border-radius: calc(12.5 * var(--base-unit, 8px));
|
3399
3418
|
}
|
@@ -3401,8 +3420,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3401
3420
|
.sd-boolean__thumb,
|
3402
3421
|
.sd-boolean__label {
|
3403
3422
|
display: block;
|
3404
|
-
color: var(--foreground-light, #909090);
|
3405
|
-
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));
|
3406
3425
|
font-size: calc(2 * var(--base-unit, 8px));
|
3407
3426
|
line-height: calc(3 * var(--base-unit, 8px));
|
3408
3427
|
padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
|
@@ -3449,7 +3468,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3449
3468
|
|
3450
3469
|
.sd-boolean--disabled .sd-boolean__thumb,
|
3451
3470
|
.sd-boolean--disabled .sd-boolean__label {
|
3452
|
-
color: var(--
|
3471
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3472
|
+
opacity: 0.25;
|
3453
3473
|
}
|
3454
3474
|
|
3455
3475
|
.svc-question__content .sd-boolean:not(.sd-boolean--checked):not(.sd-boolean--indeterminate) .sd-boolean__label:nth-of-type(1),
|
@@ -3488,7 +3508,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3488
3508
|
display: none;
|
3489
3509
|
}
|
3490
3510
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header > .sd-panel__title {
|
3491
|
-
color: var(--foreground-light, #909090);
|
3511
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3492
3512
|
}
|
3493
3513
|
|
3494
3514
|
.sd-question__content:first-child > .sd-paneldynamic > .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
@@ -3556,7 +3576,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3556
3576
|
|
3557
3577
|
.sd-paneldynamic__progress-text {
|
3558
3578
|
font-size: calc(2 * var(--base-unit, 8px));
|
3559
|
-
color: var(--foreground-light, #909090);
|
3579
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3560
3580
|
margin: 0;
|
3561
3581
|
margin-right: calc(3 * var(--base-unit, 8px));
|
3562
3582
|
}
|
@@ -3612,6 +3632,65 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3612
3632
|
margin-bottom: calc(-1 * var(--base-unit, 8px));
|
3613
3633
|
}
|
3614
3634
|
|
3635
|
+
.sv-tabs-toolbar.sv-action-bar {
|
3636
|
+
gap: calc(4 * var(--base-unit, 8px));
|
3637
|
+
}
|
3638
|
+
|
3639
|
+
.sv-tabs-toolbar.sv-tabs-toolbar--left {
|
3640
|
+
justify-content: flex-start;
|
3641
|
+
}
|
3642
|
+
|
3643
|
+
.sv-tabs-toolbar.sv-tabs-toolbar--right {
|
3644
|
+
justify-content: flex-end;
|
3645
|
+
}
|
3646
|
+
|
3647
|
+
.sv-tabs-toolbar.sv-tabs-toolbar--center {
|
3648
|
+
justify-content: center;
|
3649
|
+
}
|
3650
|
+
|
3651
|
+
.sv-tab-item__root {
|
3652
|
+
display: flex;
|
3653
|
+
}
|
3654
|
+
|
3655
|
+
.sv-tab-item {
|
3656
|
+
padding: calc(1 * var(--base-unit, 8px)) 0 calc(2 * var(--base-unit, 8px)) 0;
|
3657
|
+
display: flex;
|
3658
|
+
-webkit-appearance: none;
|
3659
|
+
-moz-appearance: none;
|
3660
|
+
appearance: none;
|
3661
|
+
display: flex;
|
3662
|
+
padding: calc(1 * var(--base-unit, 8px));
|
3663
|
+
box-sizing: border-box;
|
3664
|
+
border: none;
|
3665
|
+
background-color: transparent;
|
3666
|
+
cursor: pointer;
|
3667
|
+
font-family: var(--font-family, var(--font-family));
|
3668
|
+
font-size: calc(2 * var(--base-unit, 8px));
|
3669
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3670
|
+
overflow-x: hidden;
|
3671
|
+
white-space: nowrap;
|
3672
|
+
}
|
3673
|
+
|
3674
|
+
.sv-tab-item.sv-tab-item--pressed {
|
3675
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3676
|
+
box-shadow: inset 0px -2px 0px var(--primary, #19b394);
|
3677
|
+
}
|
3678
|
+
|
3679
|
+
.sv-tab-item__title {
|
3680
|
+
line-height: calc(3 * var(--base-unit, 8px));
|
3681
|
+
height: calc(3 * var(--base-unit, 8px));
|
3682
|
+
display: flex;
|
3683
|
+
align-items: center;
|
3684
|
+
}
|
3685
|
+
|
3686
|
+
.sd-paneldynamic__header.sd-element__header.sd-paneldynamic__header-tab {
|
3687
|
+
padding-bottom: 0;
|
3688
|
+
}
|
3689
|
+
|
3690
|
+
.sd-paneldynamic__header.sd-element__header.sd-paneldynamic__header-tab::after {
|
3691
|
+
bottom: 0;
|
3692
|
+
}
|
3693
|
+
|
3615
3694
|
.sd-file {
|
3616
3695
|
min-height: calc(36 * var(--base-unit, 8px));
|
3617
3696
|
position: relative;
|
@@ -3627,7 +3706,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3627
3706
|
}
|
3628
3707
|
.sd-file .sv-action-bar .sv-action-bar-item {
|
3629
3708
|
height: calc(4 * var(--base-unit, 8px));
|
3630
|
-
color: var(--foreground-light, #909090);
|
3709
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3631
3710
|
border-radius: calc(2 * var(--base-unit, 8px));
|
3632
3711
|
}
|
3633
3712
|
.sd-file .sv-action-bar #fileIndex .sv-action-bar-item {
|
@@ -3668,7 +3747,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3668
3747
|
text-align: center;
|
3669
3748
|
word-break: break-word;
|
3670
3749
|
white-space: normal;
|
3671
|
-
color: var(--foreground-light, #909090);
|
3750
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3672
3751
|
}
|
3673
3752
|
|
3674
3753
|
.sd-file__choose-btn--text {
|
@@ -3757,7 +3836,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3757
3836
|
.sd-file__sign a {
|
3758
3837
|
display: block;
|
3759
3838
|
text-decoration: none;
|
3760
|
-
color: var(--foreground, #161616);
|
3839
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3761
3840
|
white-space: normal;
|
3762
3841
|
word-break: break-all;
|
3763
3842
|
width: calc(12 * var(--base-unit, 8px));
|
@@ -3893,13 +3972,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3893
3972
|
}
|
3894
3973
|
|
3895
3974
|
.sd-btn:disabled {
|
3896
|
-
color: var(--
|
3975
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3976
|
+
opacity: 0.25;
|
3897
3977
|
cursor: default;
|
3898
3978
|
}
|
3899
3979
|
|
3900
3980
|
.sd-btn--action {
|
3901
3981
|
background-color: var(--primary, #19b394);
|
3902
|
-
color: var(--primary-foreground, #fff);
|
3982
|
+
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3903
3983
|
}
|
3904
3984
|
|
3905
3985
|
.sd-btn--action:not(:disabled):hover, .sd-btn--action:not(:disabled):focus {
|
@@ -3908,7 +3988,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3908
3988
|
}
|
3909
3989
|
|
3910
3990
|
.sd-btn--action:disabled {
|
3911
|
-
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)));
|
3912
3992
|
}
|
3913
3993
|
|
3914
3994
|
.sd-body {
|
@@ -4023,7 +4103,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4023
4103
|
border-right: 1px solid var(--border, #d6d6d6);
|
4024
4104
|
word-break: break-word;
|
4025
4105
|
white-space: normal;
|
4026
|
-
color: var(--foreground-light, #909090);
|
4106
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4027
4107
|
}
|
4028
4108
|
|
4029
4109
|
.sd-multipletext__item {
|
@@ -4073,16 +4153,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4073
4153
|
}
|
4074
4154
|
|
4075
4155
|
.sd-action--icon use {
|
4076
|
-
fill: var(--foreground-light, #909090);
|
4156
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4077
4157
|
}
|
4078
4158
|
|
4079
4159
|
svg.sd-action--icon {
|
4080
|
-
fill: var(--foreground-light, #909090);
|
4160
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4081
4161
|
}
|
4082
4162
|
|
4083
4163
|
.sd-action:disabled,
|
4084
4164
|
.sd-action--disabled {
|
4085
|
-
color: var(--foreground, #161616);
|
4165
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4086
4166
|
cursor: default;
|
4087
4167
|
opacity: 0.25;
|
4088
4168
|
pointer-events: none;
|
@@ -4145,7 +4225,7 @@ svg.sd-action--icon {
|
|
4145
4225
|
height: calc(3 * var(--base-unit, 8px));
|
4146
4226
|
}
|
4147
4227
|
.sd-context-btn use {
|
4148
|
-
fill: var(--foreground-light, #909090);
|
4228
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4149
4229
|
}
|
4150
4230
|
|
4151
4231
|
.sd-context-btn:hover use,
|
@@ -4226,7 +4306,7 @@ svg.sd-action--icon {
|
|
4226
4306
|
}
|
4227
4307
|
|
4228
4308
|
.sd-progress-buttons__list-element--nonclickable .sd-progress-buttons__page-title {
|
4229
|
-
color: var(--foreground-light, #909090);
|
4309
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4230
4310
|
}
|
4231
4311
|
|
4232
4312
|
.sd-progress-buttons__list-element--current .sd-progress-buttons__page-title,
|
@@ -4246,7 +4326,7 @@ svg.sd-action--icon {
|
|
4246
4326
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
4247
4327
|
line-height: calc(2 * var(--base-unit, 8px));
|
4248
4328
|
font-weight: 600;
|
4249
|
-
color: var(--foreground-light, #909090);
|
4329
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4250
4330
|
}
|
4251
4331
|
|
4252
4332
|
.sv_progress-toc {
|
@@ -4254,13 +4334,12 @@ svg.sd-action--icon {
|
|
4254
4334
|
max-width: calc(42 * var(--base-unit, 8px));
|
4255
4335
|
height: 100%;
|
4256
4336
|
background: var(--background, #fff);
|
4257
|
-
border-right: 1px solid var(--border, #d6d6d6);
|
4258
4337
|
box-sizing: border-box;
|
4259
4338
|
min-width: calc(32 * var(--base-unit, 8px));
|
4260
4339
|
}
|
4261
4340
|
.sv_progress-toc .sv-list__item.sv-list__item--selected .sv-list__item-body {
|
4262
4341
|
background: var(--primary-light, rgba(25, 179, 148, 0.1));
|
4263
|
-
color: var(--foreground, #161616);
|
4342
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4264
4343
|
font-weight: 400;
|
4265
4344
|
}
|
4266
4345
|
.sv_progress-toc .sv-list__item span {
|
@@ -4274,6 +4353,14 @@ svg.sd-action--icon {
|
|
4274
4353
|
padding-bottom: calc(1.5 * var(--base-unit, 8px));
|
4275
4354
|
}
|
4276
4355
|
|
4356
|
+
.sv_progress-toc--left {
|
4357
|
+
border-right: 1px solid var(--border, #d6d6d6);
|
4358
|
+
}
|
4359
|
+
|
4360
|
+
.sv_progress-toc--right {
|
4361
|
+
border-left: 1px solid var(--border, #d6d6d6);
|
4362
|
+
}
|
4363
|
+
|
4277
4364
|
.sd-list {
|
4278
4365
|
padding-right: calc(0.5 * var(--base-unit, 8px));
|
4279
4366
|
padding-left: calc(0.5 * var(--base-unit, 8px));
|
@@ -4358,7 +4445,7 @@ svg.sd-action--icon {
|
|
4358
4445
|
}
|
4359
4446
|
|
4360
4447
|
.sd-timer__text--minor {
|
4361
|
-
color: var(--foreground-light, #909090);
|
4448
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4362
4449
|
font-weight: 600;
|
4363
4450
|
font-size: calc(1.5 * var(--base-unit, 8px));
|
4364
4451
|
}
|
@@ -4569,7 +4656,7 @@ sv-components-container,
|
|
4569
4656
|
margin-bottom: calc(-2 * var(--base-unit, 8px));
|
4570
4657
|
}
|
4571
4658
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--row-text:not(.sd-matrix__cell) {
|
4572
|
-
color: var(--foreground-light, #909090);
|
4659
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4573
4660
|
padding-top: calc(2 * var(--base-unit, 8px));
|
4574
4661
|
}
|
4575
4662
|
.sd-root-modern.sd-root-modern--mobile .sd-matrixdropdown.sd-table tr:not(:last-child) {
|
@@ -4619,7 +4706,7 @@ body {
|
|
4619
4706
|
}
|
4620
4707
|
.sd-root-modern ::-webkit-scrollbar-thumb:hover {
|
4621
4708
|
border: 2px solid rgba(0, 0, 0, 0);
|
4622
|
-
background-color: var(--foreground-light, #909090);
|
4709
|
+
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4623
4710
|
}
|
4624
4711
|
|
4625
4712
|
.sd-container-modern {
|
@@ -4650,7 +4737,7 @@ body {
|
|
4650
4737
|
}
|
4651
4738
|
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-thumb:hover, .sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-thumb:hover {
|
4652
4739
|
border: 2px solid rgba(0, 0, 0, 0);
|
4653
|
-
background-color: var(--foreground-light, #909090);
|
4740
|
+
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4654
4741
|
}
|
4655
4742
|
|
4656
4743
|
.sv-popup.sv-popup--dropdown .sv-popup__shadow {
|