survey-react 1.9.127 → 1.9.129
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 +457 -122
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +122 -17
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +91 -17
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +445 -61
- package/survey.react.js +1570 -541
- 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.129
|
3
3
|
* Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -223,6 +223,10 @@
|
|
223
223
|
--font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
224
224
|
}
|
225
225
|
|
226
|
+
:root {
|
227
|
+
--sjs-transition-duration: 150ms;
|
228
|
+
}
|
229
|
+
|
226
230
|
.sv-action-bar {
|
227
231
|
display: flex;
|
228
232
|
box-sizing: content-box;
|
@@ -412,6 +416,10 @@ button.sv-action-bar-item {
|
|
412
416
|
opacity: 50%;
|
413
417
|
}
|
414
418
|
|
419
|
+
:root {
|
420
|
+
--sjs-transition-duration: 150ms;
|
421
|
+
}
|
422
|
+
|
415
423
|
.sv-dragged-element-shortcut {
|
416
424
|
height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
417
425
|
min-width: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -452,6 +460,10 @@ button.sv-action-bar-item {
|
|
452
460
|
visibility: hidden;
|
453
461
|
}
|
454
462
|
|
463
|
+
:root {
|
464
|
+
--sjs-transition-duration: 150ms;
|
465
|
+
}
|
466
|
+
|
455
467
|
sv-popup {
|
456
468
|
display: block;
|
457
469
|
position: absolute;
|
@@ -888,6 +900,10 @@ sv-popup {
|
|
888
900
|
flex-grow: 1;
|
889
901
|
}
|
890
902
|
|
903
|
+
:root {
|
904
|
+
--sjs-transition-duration: 150ms;
|
905
|
+
}
|
906
|
+
|
891
907
|
.sv-button-group {
|
892
908
|
display: flex;
|
893
909
|
align-items: center;
|
@@ -1026,6 +1042,14 @@ sv-popup {
|
|
1026
1042
|
min-width: unset;
|
1027
1043
|
}
|
1028
1044
|
|
1045
|
+
:root {
|
1046
|
+
--sjs-transition-duration: 150ms;
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
:root {
|
1050
|
+
--sjs-transition-duration: 150ms;
|
1051
|
+
}
|
1052
|
+
|
1029
1053
|
.sv_window {
|
1030
1054
|
position: fixed;
|
1031
1055
|
bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -1035,16 +1059,67 @@ sv-popup {
|
|
1035
1059
|
box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
|
1036
1060
|
background-clip: padding-box;
|
1037
1061
|
z-index: 100;
|
1038
|
-
max-height:
|
1062
|
+
max-height: 50vh;
|
1039
1063
|
overflow: auto;
|
1040
1064
|
box-sizing: border-box;
|
1065
|
+
background: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
1066
|
+
}
|
1067
|
+
@-moz-document url-prefix() {
|
1068
|
+
.sv_window,
|
1069
|
+
.sv_window * {
|
1070
|
+
scrollbar-width: thin;
|
1071
|
+
scrollbar-color: var(--sjs-border-default, var(--border, #d6d6d6)) transparent;
|
1072
|
+
}
|
1073
|
+
}
|
1074
|
+
.sv_window::-webkit-scrollbar,
|
1075
|
+
.sv_window *::-webkit-scrollbar {
|
1076
|
+
width: 12px;
|
1077
|
+
height: 12px;
|
1078
|
+
background-color: transparent;
|
1079
|
+
}
|
1080
|
+
.sv_window::-webkit-scrollbar-thumb,
|
1081
|
+
.sv_window *::-webkit-scrollbar-thumb {
|
1082
|
+
border: 4px solid rgba(0, 0, 0, 0);
|
1083
|
+
background-clip: padding-box;
|
1084
|
+
border-radius: 32px;
|
1085
|
+
background-color: var(--sjs-border-default, var(--border, #d6d6d6));
|
1086
|
+
}
|
1087
|
+
.sv_window::-webkit-scrollbar-track,
|
1088
|
+
.sv_window *::-webkit-scrollbar-track {
|
1089
|
+
background: transparent;
|
1090
|
+
}
|
1091
|
+
.sv_window::-webkit-scrollbar-thumb:hover,
|
1092
|
+
.sv_window *::-webkit-scrollbar-thumb:hover {
|
1093
|
+
border: 2px solid rgba(0, 0, 0, 0);
|
1094
|
+
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
.sv_window_root-content {
|
1098
|
+
height: 100%;
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
.sv_window--full-screen {
|
1102
|
+
top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1103
|
+
left: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1104
|
+
right: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1105
|
+
bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1106
|
+
max-height: 100%;
|
1107
|
+
width: initial !important;
|
1108
|
+
max-width: initial !important;
|
1109
|
+
}
|
1110
|
+
|
1111
|
+
.sv_window_header {
|
1112
|
+
display: flex;
|
1113
|
+
justify-content: flex-end;
|
1041
1114
|
}
|
1042
1115
|
|
1043
1116
|
.sv_window_content {
|
1044
|
-
border-radius: var(--sjs-base-unit, var(--base-unit, 8px));
|
1045
1117
|
overflow: hidden;
|
1046
1118
|
}
|
1047
1119
|
|
1120
|
+
.sv_window--collapsed {
|
1121
|
+
height: initial;
|
1122
|
+
}
|
1048
1123
|
.sv_window--collapsed .sv_window_header {
|
1049
1124
|
height: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1050
1125
|
padding: var(--sjs-base-unit, var(--base-unit, 8px)) var(--sjs-base-unit, var(--base-unit, 8px)) var(--sjs-base-unit, var(--base-unit, 8px)) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -1055,6 +1130,10 @@ sv-popup {
|
|
1055
1130
|
.sv_window--collapsed .sv_window_content {
|
1056
1131
|
display: none;
|
1057
1132
|
}
|
1133
|
+
.sv_window--collapsed .sv_window_buttons_container {
|
1134
|
+
margin-top: 0;
|
1135
|
+
margin-right: 0;
|
1136
|
+
}
|
1058
1137
|
|
1059
1138
|
.sv_window_header_title_collapsed {
|
1060
1139
|
color: var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91));
|
@@ -1065,7 +1144,7 @@ sv-popup {
|
|
1065
1144
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
1066
1145
|
flex: 1;
|
1067
1146
|
display: flex;
|
1068
|
-
justify-content: start;
|
1147
|
+
justify-content: flex-start;
|
1069
1148
|
align-items: center;
|
1070
1149
|
}
|
1071
1150
|
|
@@ -1082,9 +1161,9 @@ sv-popup {
|
|
1082
1161
|
}
|
1083
1162
|
|
1084
1163
|
.sv_window_buttons_container {
|
1085
|
-
position:
|
1086
|
-
top: var(--sjs-base-unit, var(--base-unit, 8px));
|
1087
|
-
right: var(--sjs-base-unit, var(--base-unit, 8px));
|
1164
|
+
position: fixed;
|
1165
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
1166
|
+
margin-right: var(--sjs-base-unit, var(--base-unit, 8px));
|
1088
1167
|
display: flex;
|
1089
1168
|
gap: var(--sjs-base-unit, var(--base-unit, 8px));
|
1090
1169
|
z-index: 1;
|
@@ -1101,13 +1180,16 @@ sv-popup {
|
|
1101
1180
|
.sv_window_button:hover, .sv_window_button:active {
|
1102
1181
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
1103
1182
|
}
|
1104
|
-
.sv_window_button:hover svg use,
|
1183
|
+
.sv_window_button:hover svg use,
|
1184
|
+
.sv_window_button:hover svg path, .sv_window_button:active svg use,
|
1185
|
+
.sv_window_button:active svg path {
|
1105
1186
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
1106
1187
|
}
|
1107
1188
|
.sv_window_button:active {
|
1108
1189
|
opacity: 0.5;
|
1109
1190
|
}
|
1110
|
-
.sv_window_button svg use,
|
1191
|
+
.sv_window_button svg use,
|
1192
|
+
.sv_window_button svg path {
|
1111
1193
|
fill: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
1112
1194
|
}
|
1113
1195
|
|
@@ -1154,6 +1236,14 @@ sv-brand-info, .sv-brand-info {
|
|
1154
1236
|
color: #909090;
|
1155
1237
|
}
|
1156
1238
|
|
1239
|
+
:root {
|
1240
|
+
--sjs-transition-duration: 150ms;
|
1241
|
+
}
|
1242
|
+
|
1243
|
+
:root {
|
1244
|
+
--sjs-transition-duration: 150ms;
|
1245
|
+
}
|
1246
|
+
|
1157
1247
|
.sv-ranking {
|
1158
1248
|
outline: none;
|
1159
1249
|
user-select: none;
|
@@ -1243,6 +1333,8 @@ sv-brand-info, .sv-brand-info {
|
|
1243
1333
|
box-sizing: border-box;
|
1244
1334
|
font-weight: 600;
|
1245
1335
|
margin-left: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1336
|
+
transition: outline var(--sjs-transition-duration, 150ms), background var(--sjs-transition-duration, 150ms);
|
1337
|
+
outline: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid transparent;
|
1246
1338
|
}
|
1247
1339
|
.sv-ranking-item__index.sv-ranking-item__index svg {
|
1248
1340
|
fill: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
@@ -1437,6 +1529,10 @@ sv-brand-info, .sv-brand-info {
|
|
1437
1529
|
display: none;
|
1438
1530
|
}
|
1439
1531
|
|
1532
|
+
:root {
|
1533
|
+
--sjs-transition-duration: 150ms;
|
1534
|
+
}
|
1535
|
+
|
1440
1536
|
.sv-list {
|
1441
1537
|
padding: 0;
|
1442
1538
|
margin: 0;
|
@@ -1491,6 +1587,7 @@ sv-brand-info, .sv-brand-info {
|
|
1491
1587
|
text-align: left;
|
1492
1588
|
text-overflow: ellipsis;
|
1493
1589
|
white-space: nowrap;
|
1590
|
+
transition: background-color var(--sjs-transition-duration, 150ms), color var(--sjs-transition-duration, 150ms);
|
1494
1591
|
}
|
1495
1592
|
|
1496
1593
|
.sv-list__item.sv-list__item--focused:not(.sv-list__item--selected) {
|
@@ -1651,6 +1748,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1651
1748
|
background-color: transparent;
|
1652
1749
|
}
|
1653
1750
|
|
1751
|
+
:root {
|
1752
|
+
--sjs-transition-duration: 150ms;
|
1753
|
+
}
|
1754
|
+
|
1654
1755
|
.sv-save-data_root {
|
1655
1756
|
position: fixed;
|
1656
1757
|
left: 50%;
|
@@ -2176,6 +2277,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2176
2277
|
border-radius: var(--sjs-editorpanel-cornerRadius, var(--sjs-corner-radius, 4px));
|
2177
2278
|
text-align: start;
|
2178
2279
|
box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
2280
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
2179
2281
|
}
|
2180
2282
|
|
2181
2283
|
.sd-input:focus {
|
@@ -2456,6 +2558,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2456
2558
|
}
|
2457
2559
|
.sd-checkbox__svg use {
|
2458
2560
|
fill: transparent;
|
2561
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
2459
2562
|
}
|
2460
2563
|
|
2461
2564
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
@@ -2624,29 +2727,29 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2624
2727
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:last-of-type > .sd-table__cell {
|
2625
2728
|
border-bottom: var(--sjs-base-unit, var(--base-unit, 8px)) solid transparent;
|
2626
2729
|
}
|
2627
|
-
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell,
|
2730
|
+
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions),
|
2628
2731
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
|
2629
2732
|
border-top-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2630
2733
|
border-bottom-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2631
2734
|
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2632
2735
|
}
|
2633
|
-
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell.sd-matrix__text--checked,
|
2736
|
+
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions).sd-matrix__text--checked,
|
2634
2737
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type.sd-matrix__text--checked {
|
2635
2738
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
2636
2739
|
}
|
2637
|
-
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell .sd-input,
|
2740
|
+
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-input,
|
2638
2741
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
|
2639
2742
|
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2640
2743
|
}
|
2641
|
-
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell .sd-item:not(.sd-item--error) .sd-item__decorator,
|
2744
|
+
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error) .sd-item__decorator,
|
2642
2745
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error) .sd-item__decorator {
|
2643
2746
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2644
2747
|
}
|
2645
|
-
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator,
|
2748
|
+
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator,
|
2646
2749
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator {
|
2647
2750
|
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
2648
2751
|
}
|
2649
|
-
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell .sd-item:not(.sd-item--error).sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after,
|
2752
|
+
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error).sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after,
|
2650
2753
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error).sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after {
|
2651
2754
|
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2652
2755
|
}
|
@@ -2663,6 +2766,9 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2663
2766
|
.sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
|
2664
2767
|
min-width: calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2665
2768
|
}
|
2769
|
+
.sd-table__cell .sd-item {
|
2770
|
+
text-align: initial;
|
2771
|
+
}
|
2666
2772
|
|
2667
2773
|
.sd-table__cell--error {
|
2668
2774
|
border: none;
|
@@ -2741,6 +2847,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2741
2847
|
|
2742
2848
|
.sd-table__cell--footer {
|
2743
2849
|
text-align: right;
|
2850
|
+
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2744
2851
|
}
|
2745
2852
|
|
2746
2853
|
.sd-table__cell--footer-total {
|
@@ -2773,6 +2880,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2773
2880
|
background: transparent;
|
2774
2881
|
border-radius: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2775
2882
|
padding: var(--sjs-base-unit, var(--base-unit, 8px));
|
2883
|
+
transition: background var(--sjs-transition-duration, 150ms);
|
2776
2884
|
}
|
2777
2885
|
.sd-table__cell--detail-button svg {
|
2778
2886
|
--sjs-internal-font-editorfont-size: var(--sjs-mobile-font-editorfont-size, var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px)));
|
@@ -2780,6 +2888,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2780
2888
|
width: var(--sjs-internal-font-editorfont-size);
|
2781
2889
|
height: var(--sjs-internal-font-editorfont-size);
|
2782
2890
|
fill: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2891
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
2783
2892
|
}
|
2784
2893
|
.sd-table__cell--detail-button:hover, .sd-table__cell--detail-button:focus {
|
2785
2894
|
background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
@@ -2815,6 +2924,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2815
2924
|
.sd-table__cell--actions:not(.sd-table__cell--vertical),
|
2816
2925
|
.sd-table__cell--empty,
|
2817
2926
|
.sd-table__cell--row-text,
|
2927
|
+
.sd-table__cell--footer-total,
|
2818
2928
|
.sd-matrix__cell:first-of-type,
|
2819
2929
|
.sd-matrix tr > td:first-of-type {
|
2820
2930
|
position: sticky;
|
@@ -2824,6 +2934,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2824
2934
|
.sd-table__cell--actions:not(.sd-table__cell--vertical):first-of-type,
|
2825
2935
|
.sd-table__cell--empty:first-of-type,
|
2826
2936
|
.sd-table__cell--row-text:first-of-type,
|
2937
|
+
.sd-table__cell--footer-total:first-of-type,
|
2827
2938
|
.sd-matrix__cell:first-of-type:first-of-type,
|
2828
2939
|
.sd-matrix tr > td:first-of-type:first-of-type {
|
2829
2940
|
left: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -2831,6 +2942,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2831
2942
|
.sd-table__cell--actions:not(.sd-table__cell--vertical):last-of-type,
|
2832
2943
|
.sd-table__cell--empty:last-of-type,
|
2833
2944
|
.sd-table__cell--row-text:last-of-type,
|
2945
|
+
.sd-table__cell--footer-total:last-of-type,
|
2834
2946
|
.sd-matrix__cell:first-of-type:last-of-type,
|
2835
2947
|
.sd-matrix tr > td:first-of-type:last-of-type {
|
2836
2948
|
right: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -2918,6 +3030,23 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2918
3030
|
margin: initial;
|
2919
3031
|
}
|
2920
3032
|
|
3033
|
+
.sd-table__cell--footer .sd-table__question-wrapper--expression .sd-expression {
|
3034
|
+
padding: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3035
|
+
border-bottom: 1px solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
3036
|
+
font-size: var(--sjs-font-size, 16px);
|
3037
|
+
font-weight: 600;
|
3038
|
+
line-height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3039
|
+
}
|
3040
|
+
.sd-table__cell--footer .sd-table__question-wrapper--left {
|
3041
|
+
text-align: start;
|
3042
|
+
}
|
3043
|
+
.sd-table__cell--footer .sd-table__question-wrapper--center {
|
3044
|
+
text-align: center;
|
3045
|
+
}
|
3046
|
+
.sd-table__cell--footer .sd-table__question-wrapper--right {
|
3047
|
+
text-align: end;
|
3048
|
+
}
|
3049
|
+
|
2921
3050
|
.sd-table.sd-matrixdynamic {
|
2922
3051
|
table-layout: auto;
|
2923
3052
|
}
|
@@ -3035,6 +3164,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3035
3164
|
}
|
3036
3165
|
.sd-page__row.sd-row--multiple.sd-row--compact {
|
3037
3166
|
padding: 0;
|
3167
|
+
row-gap: var(--sd-base-vertical-padding);
|
3038
3168
|
margin-left: calc(-1 * var(--sd-base-padding));
|
3039
3169
|
width: calc(100% + var(--sd-base-padding));
|
3040
3170
|
}
|
@@ -3185,6 +3315,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3185
3315
|
flex-shrink: 0;
|
3186
3316
|
margin-top: calc((1.5 * (var(--sjs-internal-font-editorfont-size)) - 3 * (var(--sjs-base-unit, var(--base-unit, 8px)))) / 2);
|
3187
3317
|
box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3318
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms), background var(--sjs-transition-duration, 150ms);
|
3188
3319
|
}
|
3189
3320
|
|
3190
3321
|
.sd-item--checked .sd-item__decorator {
|
@@ -3290,6 +3421,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3290
3421
|
}
|
3291
3422
|
.sd-checkbox__svg use {
|
3292
3423
|
fill: transparent;
|
3424
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
3293
3425
|
}
|
3294
3426
|
|
3295
3427
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
@@ -3314,6 +3446,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3314
3446
|
height: var(--sjs-base-unit, var(--base-unit, 8px));
|
3315
3447
|
border-radius: 50%;
|
3316
3448
|
background-color: transparent;
|
3449
|
+
transition: background-color var(--sjs-transition-duration, 150ms);
|
3317
3450
|
}
|
3318
3451
|
|
3319
3452
|
.sd-radio--checked .sd-radio__decorator:after {
|
@@ -3466,7 +3599,6 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3466
3599
|
.sd-rating__item {
|
3467
3600
|
position: relative;
|
3468
3601
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
3469
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
3470
3602
|
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3471
3603
|
white-space: nowrap;
|
3472
3604
|
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -3477,10 +3609,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3477
3609
|
box-sizing: border-box;
|
3478
3610
|
min-width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3479
3611
|
text-align: center;
|
3480
|
-
border:
|
3612
|
+
border: 0px solid transparent;
|
3481
3613
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3482
3614
|
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3483
3615
|
font-size: var(--sjs-font-size, 16px);
|
3616
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 0px var(--sjs-general-backcolor, var(--background, #fff));
|
3617
|
+
transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
|
3484
3618
|
}
|
3485
3619
|
|
3486
3620
|
.sd-rating__item--fixed-size {
|
@@ -3533,7 +3667,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
3533
3667
|
}
|
3534
3668
|
|
3535
3669
|
.sd-rating__item--selected:focus-within {
|
3536
|
-
box-shadow: inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
|
3670
|
+
box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
|
3537
3671
|
}
|
3538
3672
|
|
3539
3673
|
.sd-rating__item-smiley {
|
@@ -3547,6 +3681,8 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
3547
3681
|
border: 2px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
3548
3682
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3549
3683
|
fill: var(--sjs-border-default, var(--border, #d6d6d6));
|
3684
|
+
box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 0px var(--sjs-general-backcolor, var(--background, #fff));
|
3685
|
+
transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
|
3550
3686
|
}
|
3551
3687
|
.sd-rating__item-smiley svg {
|
3552
3688
|
display: block;
|
@@ -3573,6 +3709,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3573
3709
|
margin-inline-start: 2px;
|
3574
3710
|
}
|
3575
3711
|
|
3712
|
+
.sd-rating__item-smiley--scale-colored {
|
3713
|
+
transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), opacity var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
|
3714
|
+
}
|
3715
|
+
|
3576
3716
|
.sd-rating__item-smiley--error {
|
3577
3717
|
background-color: var(--sjs-special-red-light, var(--red-light, rgba(230, 10, 62, 0.1)));
|
3578
3718
|
border-color: transparent;
|
@@ -3608,7 +3748,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3608
3748
|
}
|
3609
3749
|
|
3610
3750
|
.sd-rating__item-smiley--selected:focus-within {
|
3611
|
-
box-shadow: inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
|
3751
|
+
box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
|
3612
3752
|
}
|
3613
3753
|
|
3614
3754
|
.sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected) {
|
@@ -3641,13 +3781,18 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3641
3781
|
}
|
3642
3782
|
.sd-rating__item-star svg {
|
3643
3783
|
stroke: var(--sjs-border-default, var(--border, #d6d6d6));
|
3644
|
-
fill:
|
3784
|
+
fill: transparent;
|
3645
3785
|
width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3646
3786
|
height: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3647
3787
|
display: block;
|
3788
|
+
position: absolute;
|
3789
|
+
transition: stroke var(--sjs-transition-duration, 150ms), opacity var(--sjs-transition-duration, 150ms), fill var(--sjs-transition-duration, 150ms);
|
3790
|
+
}
|
3791
|
+
.sd-rating__item-star .sv-star {
|
3792
|
+
opacity: 1;
|
3648
3793
|
}
|
3649
3794
|
.sd-rating__item-star .sv-star-2 {
|
3650
|
-
|
3795
|
+
opacity: 0;
|
3651
3796
|
}
|
3652
3797
|
|
3653
3798
|
.sd-rating__item-star--small {
|
@@ -3660,7 +3805,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3660
3805
|
}
|
3661
3806
|
|
3662
3807
|
.sd-rating__item-star--selected svg {
|
3663
|
-
stroke:
|
3808
|
+
stroke: transparent;
|
3664
3809
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3665
3810
|
}
|
3666
3811
|
|
@@ -3684,11 +3829,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3684
3829
|
|
3685
3830
|
.sd-rating__item-star:focus-within svg {
|
3686
3831
|
stroke: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3687
|
-
fill:
|
3832
|
+
fill: transparent;
|
3688
3833
|
}
|
3689
3834
|
|
3690
3835
|
.sd-rating__item-star--unhighlighted svg {
|
3691
|
-
stroke:
|
3836
|
+
stroke: transparent;
|
3692
3837
|
fill: var(--sjs-border-default, var(--border, #d6d6d6));
|
3693
3838
|
}
|
3694
3839
|
|
@@ -3707,10 +3852,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3707
3852
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3708
3853
|
}
|
3709
3854
|
.sd-rating__item-star--selected:focus-within .sv-star {
|
3710
|
-
|
3855
|
+
opacity: 0;
|
3711
3856
|
}
|
3712
3857
|
.sd-rating__item-star--selected:focus-within .sv-star-2 {
|
3713
|
-
|
3858
|
+
opacity: 1;
|
3714
3859
|
}
|
3715
3860
|
|
3716
3861
|
.sd-rating__item-text.sd-rating__item-text {
|
@@ -3723,6 +3868,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3723
3868
|
display: inline-block;
|
3724
3869
|
border: 2px solid transparent;
|
3725
3870
|
box-sizing: border-box;
|
3871
|
+
transition: color var(--sjs-transition-duration, 150ms);
|
3726
3872
|
}
|
3727
3873
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text, .sd-rating__item-text.sd-rating__item-text.sd-rating__max-text {
|
3728
3874
|
margin-top: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -3960,7 +4106,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3960
4106
|
}
|
3961
4107
|
|
3962
4108
|
.sd-input.sd-dropdown:focus-within {
|
3963
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4109
|
+
box-shadow: var(--sjs-shadow-inner-reset, inset 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3964
4110
|
}
|
3965
4111
|
|
3966
4112
|
.sd-input.sd-dropdown:focus-within .sd-dropdown__filter-string-input {
|
@@ -4033,7 +4179,21 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4033
4179
|
font-size: var(--sjs-internal-font-editorfont-size);
|
4034
4180
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
4035
4181
|
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
4036
|
-
padding-inline-end: calc(
|
4182
|
+
padding-inline-end: calc(1.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4183
|
+
padding-block: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4184
|
+
padding-inline-start: calc(1.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4185
|
+
border: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid transparent;
|
4186
|
+
border-radius: var(--sjs-corner-radius, 4px);
|
4187
|
+
transition: border-color var(--sjs-transition-duration, 150ms);
|
4188
|
+
}
|
4189
|
+
.sv-dropdown-popup .sv-list__item.sv-list__item--focused:not(.sv-list__item--selected) .sv-list__item-body {
|
4190
|
+
border: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
4191
|
+
padding-inline-end: calc(1.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4192
|
+
padding-block: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4193
|
+
padding-inline-start: calc(1.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4194
|
+
}
|
4195
|
+
.sv-dropdown-popup .sv-list__item span {
|
4196
|
+
margin-inline-start: calc(-0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4037
4197
|
}
|
4038
4198
|
|
4039
4199
|
[dir=rtl] .sd-dropdown,
|
@@ -4061,7 +4221,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4061
4221
|
}
|
4062
4222
|
|
4063
4223
|
.sd-input.sd-tagbox:focus-within {
|
4064
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4224
|
+
box-shadow: var(--sjs-shadow-inner-reset, inset 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4065
4225
|
}
|
4066
4226
|
|
4067
4227
|
.sv-tagbox__item {
|
@@ -4083,17 +4243,19 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4083
4243
|
.sv-tagbox__item:hover .sd-tagbox-item_clean-button,
|
4084
4244
|
.sv-tagbox__item:focus .sd-tagbox-item_clean-button,
|
4085
4245
|
.sv-tagbox__item:focus-within .sd-tagbox-item_clean-button {
|
4086
|
-
display: flex;
|
4087
4246
|
align-self: center;
|
4247
|
+
opacity: 1;
|
4088
4248
|
}
|
4089
4249
|
|
4090
4250
|
.sd-tagbox-item_clean-button {
|
4091
|
-
display:
|
4251
|
+
display: flex;
|
4092
4252
|
position: absolute;
|
4093
4253
|
inset-inline-end: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4094
4254
|
padding: 0;
|
4095
4255
|
padding-inline-start: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4096
4256
|
background: linear-gradient(270deg, var(--sjs-primary-backcolor, var(--primary, #19b394)) 53.12%, rgba(25, 179, 148, 0) 100%);
|
4257
|
+
opacity: 0;
|
4258
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
4097
4259
|
}
|
4098
4260
|
|
4099
4261
|
.sd-tagbox-item_clean-button-svg {
|
@@ -4227,7 +4389,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4227
4389
|
}
|
4228
4390
|
|
4229
4391
|
.sd-imagepicker__check-decorator {
|
4230
|
-
display:
|
4392
|
+
display: block;
|
4393
|
+
opacity: 0;
|
4231
4394
|
position: absolute;
|
4232
4395
|
top: var(--sjs-base-unit, var(--base-unit, 8px));
|
4233
4396
|
right: var(--sjs-base-unit, var(--base-unit, 8px));
|
@@ -4236,6 +4399,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4236
4399
|
border-radius: 100%;
|
4237
4400
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
4238
4401
|
z-index: 1;
|
4402
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
4239
4403
|
}
|
4240
4404
|
|
4241
4405
|
.sd-imagepicker__check-icon {
|
@@ -4247,7 +4411,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4247
4411
|
}
|
4248
4412
|
|
4249
4413
|
.sd-imagepicker__item--checked .sd-imagepicker__check-decorator {
|
4250
|
-
|
4414
|
+
opacity: 1;
|
4251
4415
|
}
|
4252
4416
|
|
4253
4417
|
.sd-imagepicker__item--error .sd-imagepicker__image-container::before {
|
@@ -4272,6 +4436,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4272
4436
|
display: block;
|
4273
4437
|
box-sizing: border-box;
|
4274
4438
|
max-width: 100%;
|
4439
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
4275
4440
|
}
|
4276
4441
|
|
4277
4442
|
.sd-imagepicker__text {
|
@@ -4337,6 +4502,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4337
4502
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4338
4503
|
}
|
4339
4504
|
|
4505
|
+
:root {
|
4506
|
+
--sjs-transition-duration: 150ms;
|
4507
|
+
}
|
4508
|
+
|
4340
4509
|
.sd-html {
|
4341
4510
|
white-space: initial;
|
4342
4511
|
}
|
@@ -4434,7 +4603,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4434
4603
|
vertical-align: baseline;
|
4435
4604
|
text-align: center;
|
4436
4605
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
4437
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
4438
4606
|
border: none;
|
4439
4607
|
border-radius: var(--sjs-corner-radius, 4px);
|
4440
4608
|
cursor: pointer;
|
@@ -4446,12 +4614,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4446
4614
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4447
4615
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
4448
4616
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
4617
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4618
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
4449
4619
|
}
|
4450
4620
|
.sd-html button:hover {
|
4451
4621
|
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
4452
4622
|
}
|
4453
4623
|
.sd-html button:focus {
|
4454
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4624
|
+
box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4455
4625
|
}
|
4456
4626
|
.sd-html button span {
|
4457
4627
|
display: flex;
|
@@ -4522,10 +4692,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4522
4692
|
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4523
4693
|
background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
|
4524
4694
|
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4525
|
-
box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
4695
|
+
box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4696
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
4526
4697
|
}
|
4527
4698
|
.sd-boolean.sd-boolean--allowhover:focus-within {
|
4528
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4699
|
+
box-shadow: var(--sjs-shadow-inner-reset, inset 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4529
4700
|
}
|
4530
4701
|
|
4531
4702
|
.sd-boolean__thumb,
|
@@ -4600,11 +4771,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4600
4771
|
|
4601
4772
|
.sd-boolean__thumb-ghost {
|
4602
4773
|
z-index: 1;
|
4774
|
+
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4775
|
+
background-color: transparent;
|
4776
|
+
transition: background-color var(--sjs-transition-duration, 150ms);
|
4603
4777
|
}
|
4604
4778
|
|
4605
4779
|
.sd-boolean.sd-boolean--allowhover .sd-boolean__thumb-ghost:hover {
|
4606
4780
|
background-color: var(--sjs-editorpanel-hovercolor, var(--sjs-general-backcolor-dim-dark, rgb(243, 243, 243)));
|
4607
|
-
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4608
4781
|
}
|
4609
4782
|
|
4610
4783
|
.sd-boolean--error {
|
@@ -4734,6 +4907,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4734
4907
|
padding-bottom: var(--sd-base-padding);
|
4735
4908
|
}
|
4736
4909
|
|
4910
|
+
.sd-question--paneldynamic:not(.sd-question--empty) > .sd-question__content > .sd-question__comment-area {
|
4911
|
+
padding-bottom: var(--sd-base-padding);
|
4912
|
+
}
|
4913
|
+
|
4737
4914
|
.sd-paneldynamic__buttons-container .sd-action-bar {
|
4738
4915
|
width: 100%;
|
4739
4916
|
margin: 0 calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -4793,6 +4970,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4793
4970
|
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
4794
4971
|
overflow-x: hidden;
|
4795
4972
|
white-space: nowrap;
|
4973
|
+
box-shadow: inset 0px 0px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4974
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
4796
4975
|
}
|
4797
4976
|
.sd-tab-item:hover, .sd-tab-item:focus-visible {
|
4798
4977
|
outline: none;
|
@@ -4859,6 +5038,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4859
5038
|
padding-bottom: 0;
|
4860
5039
|
}
|
4861
5040
|
|
5041
|
+
:root {
|
5042
|
+
--sjs-transition-duration: 150ms;
|
5043
|
+
}
|
5044
|
+
|
4862
5045
|
.sd-file {
|
4863
5046
|
position: relative;
|
4864
5047
|
font-size: var(--sjs-font-size, 16px);
|
@@ -5038,11 +5221,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5038
5221
|
.sd-file__preview img:hover + .sd-file__remove-file-button,
|
5039
5222
|
.sd-file__preview svg:hover + .sd-file__remove-file-button,
|
5040
5223
|
.sd-file__preview .sd-file__remove-file-button:hover {
|
5041
|
-
|
5042
|
-
position: absolute;
|
5043
|
-
left: 50%;
|
5044
|
-
top: 50%;
|
5045
|
-
transform: translate(-50%, -50%);
|
5224
|
+
opacity: 1;
|
5046
5225
|
}
|
5047
5226
|
|
5048
5227
|
.sd-file__sign {
|
@@ -5070,7 +5249,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5070
5249
|
}
|
5071
5250
|
|
5072
5251
|
.sd-file__remove-file-button {
|
5073
|
-
display:
|
5252
|
+
display: block;
|
5253
|
+
opacity: 0;
|
5254
|
+
position: absolute;
|
5255
|
+
left: 50%;
|
5256
|
+
top: 50%;
|
5257
|
+
transform: translate(-50%, -50%);
|
5258
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
5074
5259
|
}
|
5075
5260
|
|
5076
5261
|
.sd-file__decorator--error {
|
@@ -5248,13 +5433,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5248
5433
|
display: none;
|
5249
5434
|
}
|
5250
5435
|
|
5436
|
+
:root {
|
5437
|
+
--sjs-transition-duration: 150ms;
|
5438
|
+
}
|
5439
|
+
|
5251
5440
|
.sd-btn {
|
5252
5441
|
appearance: none;
|
5253
5442
|
-webkit-appearance: none;
|
5254
5443
|
-moz-appearance: none;
|
5255
5444
|
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5256
5445
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
5257
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5258
5446
|
border-radius: var(--sjs-corner-radius, 4px);
|
5259
5447
|
cursor: pointer;
|
5260
5448
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
@@ -5266,6 +5454,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5266
5454
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5267
5455
|
border: none;
|
5268
5456
|
outline: none;
|
5457
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5458
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms), background var(--sjs-transition-duration, 150ms);
|
5269
5459
|
}
|
5270
5460
|
|
5271
5461
|
.sd-btn--small {
|
@@ -5278,7 +5468,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5278
5468
|
}
|
5279
5469
|
|
5280
5470
|
.sd-btn:focus-visible {
|
5281
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5471
|
+
box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5282
5472
|
}
|
5283
5473
|
|
5284
5474
|
.sd-btn:disabled {
|
@@ -5317,6 +5507,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5317
5507
|
pointer-events: none;
|
5318
5508
|
}
|
5319
5509
|
|
5510
|
+
:root {
|
5511
|
+
--sjs-transition-duration: 150ms;
|
5512
|
+
}
|
5513
|
+
|
5320
5514
|
.sd-body {
|
5321
5515
|
width: 100%;
|
5322
5516
|
box-sizing: border-box;
|
@@ -5507,7 +5701,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5507
5701
|
vertical-align: baseline;
|
5508
5702
|
text-align: center;
|
5509
5703
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
5510
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5511
5704
|
border: none;
|
5512
5705
|
border-radius: var(--sjs-corner-radius, 4px);
|
5513
5706
|
cursor: pointer;
|
@@ -5519,6 +5712,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5519
5712
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5520
5713
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5521
5714
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
5715
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5716
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
5522
5717
|
}
|
5523
5718
|
.sd-body--empty button:hover,
|
5524
5719
|
.sd-body--loading button:hover {
|
@@ -5526,7 +5721,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5526
5721
|
}
|
5527
5722
|
.sd-body--empty button:focus,
|
5528
5723
|
.sd-body--loading button:focus {
|
5529
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5724
|
+
box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5530
5725
|
}
|
5531
5726
|
.sd-body--empty button span,
|
5532
5727
|
.sd-body--loading button span {
|
@@ -5545,6 +5740,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5545
5740
|
right: 0;
|
5546
5741
|
}
|
5547
5742
|
|
5743
|
+
:root {
|
5744
|
+
--sjs-transition-duration: 150ms;
|
5745
|
+
}
|
5746
|
+
|
5548
5747
|
.sd-multipletext {
|
5549
5748
|
width: 100%;
|
5550
5749
|
table-layout: fixed;
|
@@ -5561,7 +5760,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5561
5760
|
}
|
5562
5761
|
|
5563
5762
|
.sd-multipletext__item-container.sd-input:focus-within {
|
5564
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5763
|
+
box-shadow: var(--sjs-shadow-inner-reset, inset 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5565
5764
|
}
|
5566
5765
|
|
5567
5766
|
.sd-multipletext__item-container {
|
@@ -5670,6 +5869,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5670
5869
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5671
5870
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
5672
5871
|
outline: none;
|
5872
|
+
transition: background-color var(--sjs-transition-duration, 150ms);
|
5673
5873
|
}
|
5674
5874
|
|
5675
5875
|
.sd-action--negative {
|
@@ -5692,6 +5892,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5692
5892
|
}
|
5693
5893
|
.sd-action--icon use {
|
5694
5894
|
fill: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
5895
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
5695
5896
|
}
|
5696
5897
|
|
5697
5898
|
svg.sd-action--icon {
|
@@ -5772,6 +5973,7 @@ svg.sd-action--icon {
|
|
5772
5973
|
}
|
5773
5974
|
.sd-context-btn use {
|
5774
5975
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
5976
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
5775
5977
|
}
|
5776
5978
|
|
5777
5979
|
.sd-context-btn:hover use,
|
@@ -5787,6 +5989,10 @@ svg.sd-action--icon {
|
|
5787
5989
|
opacity: 0.25;
|
5788
5990
|
}
|
5789
5991
|
|
5992
|
+
:root {
|
5993
|
+
--sjs-transition-duration: 150ms;
|
5994
|
+
}
|
5995
|
+
|
5790
5996
|
.sd-completedpage,
|
5791
5997
|
.sd-completed-before-page {
|
5792
5998
|
align-items: center;
|
@@ -5899,7 +6105,6 @@ svg.sd-action--icon {
|
|
5899
6105
|
vertical-align: baseline;
|
5900
6106
|
text-align: center;
|
5901
6107
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
5902
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5903
6108
|
border: none;
|
5904
6109
|
border-radius: var(--sjs-corner-radius, 4px);
|
5905
6110
|
cursor: pointer;
|
@@ -5911,6 +6116,8 @@ svg.sd-action--icon {
|
|
5911
6116
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5912
6117
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5913
6118
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
6119
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6120
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
5914
6121
|
}
|
5915
6122
|
.sd-completedpage button:hover,
|
5916
6123
|
.sd-completed-before-page button:hover {
|
@@ -5918,7 +6125,7 @@ svg.sd-action--icon {
|
|
5918
6125
|
}
|
5919
6126
|
.sd-completedpage button:focus,
|
5920
6127
|
.sd-completed-before-page button:focus {
|
5921
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6128
|
+
box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5922
6129
|
}
|
5923
6130
|
.sd-completedpage button span,
|
5924
6131
|
.sd-completed-before-page button span {
|
@@ -5956,53 +6163,159 @@ svg.sd-action--icon {
|
|
5956
6163
|
visibility: hidden;
|
5957
6164
|
}
|
5958
6165
|
|
5959
|
-
.sd-progress-
|
6166
|
+
.sd-progress-buttons__page-description {
|
6167
|
+
display: none;
|
6168
|
+
}
|
6169
|
+
|
6170
|
+
.sd-progress-buttons {
|
6171
|
+
padding: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5960
6172
|
display: flex;
|
5961
|
-
|
5962
|
-
margin: 0;
|
5963
|
-
padding: 0;
|
6173
|
+
flex-direction: column;
|
5964
6174
|
}
|
5965
6175
|
|
6176
|
+
.sd-progress-buttons__list-container {
|
6177
|
+
display: flex;
|
6178
|
+
overflow: hidden;
|
6179
|
+
}
|
6180
|
+
|
6181
|
+
.sd-progress-buttons__connector {
|
6182
|
+
display: none;
|
6183
|
+
}
|
6184
|
+
|
6185
|
+
.sd-progress-buttons__list {
|
6186
|
+
display: inline-flex;
|
6187
|
+
flex-direction: row;
|
6188
|
+
flex-grow: 1;
|
6189
|
+
margin: 0 auto;
|
6190
|
+
padding: 0;
|
6191
|
+
}
|
5966
6192
|
.sd-progress-buttons__list li {
|
5967
|
-
|
6193
|
+
display: flex;
|
5968
6194
|
flex-grow: 1;
|
5969
|
-
|
5970
|
-
|
5971
|
-
|
5972
|
-
|
6195
|
+
flex-shrink: 1;
|
6196
|
+
flex-basis: 0;
|
6197
|
+
position: relative;
|
6198
|
+
flex-wrap: nowrap;
|
6199
|
+
text-align: center;
|
6200
|
+
flex-direction: column;
|
6201
|
+
}
|
6202
|
+
.sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6203
|
+
display: block;
|
6204
|
+
content: "";
|
6205
|
+
width: 100%;
|
6206
|
+
height: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6207
|
+
background-color: var(--sjs-navigation-default, #bcbcbc);
|
6208
|
+
position: absolute;
|
6209
|
+
bottom: calc(0.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6210
|
+
right: 50%;
|
6211
|
+
}
|
6212
|
+
.sd-progress-buttons__list li:after {
|
6213
|
+
display: flex;
|
6214
|
+
content: attr(data-page-number);
|
6215
|
+
width: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6216
|
+
height: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6217
|
+
margin: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6218
|
+
border: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid transparent;
|
6219
|
+
background-color: var(--sjs-navigation-default, #bcbcbc);
|
6220
|
+
border-radius: 50%;
|
5973
6221
|
cursor: pointer;
|
6222
|
+
align-self: center;
|
6223
|
+
z-index: 1;
|
6224
|
+
font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
|
6225
|
+
font-weight: 600;
|
6226
|
+
line-height: var(--sjs-font-size, 16px);
|
6227
|
+
justify-content: center;
|
6228
|
+
color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
5974
6229
|
}
|
5975
|
-
.sd-progress-buttons__list
|
5976
|
-
|
6230
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--passed:not(:first-child) > .sd-progress-buttons__connector {
|
6231
|
+
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5977
6232
|
}
|
5978
|
-
|
5979
|
-
|
5980
|
-
.sd-progress-buttons__list .sd-progress-buttons__list-element--passed {
|
5981
|
-
border-top: 2px solid var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6233
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--passed:after {
|
6234
|
+
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5982
6235
|
}
|
5983
|
-
|
5984
|
-
|
5985
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6236
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--current:not(:first-child) > .sd-progress-buttons__connector {
|
6237
|
+
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5986
6238
|
}
|
5987
|
-
|
5988
|
-
|
5989
|
-
|
6239
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--current:after {
|
6240
|
+
border-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6241
|
+
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
5990
6242
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6243
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6244
|
+
margin: 0;
|
5991
6245
|
}
|
5992
6246
|
|
5993
6247
|
.sd-progress-buttons__page-title {
|
5994
|
-
|
5995
|
-
|
6248
|
+
display: flex;
|
6249
|
+
justify-content: center;
|
6250
|
+
align-items: center;
|
6251
|
+
font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
|
5996
6252
|
font-weight: 600;
|
5997
|
-
line-height:
|
6253
|
+
line-height: var(--sjs-font-size, 16px);
|
6254
|
+
flex-grow: 1;
|
6255
|
+
text-align: center;
|
6256
|
+
padding: 0 calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6257
|
+
margin-bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5998
6258
|
}
|
5999
6259
|
|
6000
|
-
.sd-progress-buttons__page-
|
6260
|
+
.sd-progress-buttons__header .sd-progress-buttons__page-title {
|
6261
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
6262
|
+
}
|
6263
|
+
|
6264
|
+
.sd-progress-buttons__footer .sd-progress-buttons__page-title {
|
6265
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
6266
|
+
margin-bottom: 0;
|
6267
|
+
justify-content: flex-end;
|
6268
|
+
padding: 0;
|
6269
|
+
color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
6270
|
+
}
|
6271
|
+
|
6272
|
+
.sd-progress-buttons--bottom {
|
6273
|
+
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6274
|
+
flex-direction: column-reverse;
|
6275
|
+
}
|
6276
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__list li {
|
6277
|
+
flex-direction: column-reverse;
|
6278
|
+
}
|
6279
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6280
|
+
top: calc(0.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6281
|
+
}
|
6282
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__page-title {
|
6283
|
+
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6284
|
+
margin-bottom: 0;
|
6285
|
+
}
|
6286
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__header .sd-progress-buttons__page-title {
|
6287
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
6288
|
+
margin-bottom: 0;
|
6289
|
+
}
|
6290
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__footer .sd-progress-buttons__page-title {
|
6291
|
+
margin-top: 0;
|
6292
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
6293
|
+
}
|
6294
|
+
|
6295
|
+
.sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6296
|
+
bottom: calc(1.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6297
|
+
}
|
6298
|
+
.sd-progress-buttons--numbered .sd-progress-buttons__list li:after {
|
6299
|
+
width: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6300
|
+
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6301
|
+
}
|
6302
|
+
|
6303
|
+
.sd-root-modern--mobile .sd-progress-buttons__list,
|
6304
|
+
.sd-progress-buttons--no-titles .sd-progress-buttons__list {
|
6305
|
+
justify-content: space-between;
|
6001
6306
|
width: 100%;
|
6002
|
-
|
6003
|
-
|
6004
|
-
|
6005
|
-
|
6307
|
+
}
|
6308
|
+
.sd-root-modern--mobile .sd-progress-buttons__list li,
|
6309
|
+
.sd-progress-buttons--no-titles .sd-progress-buttons__list li {
|
6310
|
+
flex-grow: 0;
|
6311
|
+
}
|
6312
|
+
|
6313
|
+
.sd-progress-buttons--bottom.sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6314
|
+
top: calc(1.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6315
|
+
}
|
6316
|
+
|
6317
|
+
.sd-root-modern--mobile .sd-progress-buttons {
|
6318
|
+
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6006
6319
|
}
|
6007
6320
|
|
6008
6321
|
.sv_progress-toc {
|
@@ -6294,6 +6607,18 @@ svg.sd-action--icon {
|
|
6294
6607
|
max-width: 100%;
|
6295
6608
|
}
|
6296
6609
|
|
6610
|
+
.sv-header__background-color--none .sv-header__title .sd-title,
|
6611
|
+
.sv-header__background-color--custom .sv-header__title .sd-title {
|
6612
|
+
color: var(--sjs-font-pagetitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
6613
|
+
}
|
6614
|
+
.sv-header__background-color--none .sv-header__description .sd-description,
|
6615
|
+
.sv-header__background-color--custom .sv-header__description .sd-description {
|
6616
|
+
--header-description-font-size: var(--sjs-font-headerdescription-size, var(--sjs-font-size, 16px));
|
6617
|
+
font-size: var(--header-description-font-size);
|
6618
|
+
line-height: calc(1.5 * (var(--header-description-font-size)));
|
6619
|
+
color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
6620
|
+
}
|
6621
|
+
|
6297
6622
|
@keyframes rotationAnimation {
|
6298
6623
|
from {
|
6299
6624
|
rotate: 0deg;
|
@@ -6470,6 +6795,7 @@ sv-components-container,
|
|
6470
6795
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--has-end-actions):not(:last-of-type)::after {
|
6471
6796
|
bottom: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6472
6797
|
}
|
6798
|
+
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tfoot tr::before,
|
6473
6799
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--expanded)::after {
|
6474
6800
|
z-index: 12;
|
6475
6801
|
content: " ";
|
@@ -6478,16 +6804,24 @@ sv-components-container,
|
|
6478
6804
|
height: 1px;
|
6479
6805
|
background-color: var(--sjs-border-light, var(--border-light, #eaeaea));
|
6480
6806
|
left: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6481
|
-
bottom: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6482
6807
|
width: calc(100% + 4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
6483
6808
|
z-index: 12;
|
6484
6809
|
}
|
6810
|
+
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--expanded)::after {
|
6811
|
+
bottom: 0;
|
6812
|
+
}
|
6813
|
+
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tfoot tr {
|
6814
|
+
padding-top: calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6815
|
+
}
|
6816
|
+
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tfoot tr::before {
|
6817
|
+
top: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6818
|
+
}
|
6485
6819
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--show-detail-mobile,
|
6486
6820
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--remove-row {
|
6487
6821
|
margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6488
6822
|
}
|
6489
6823
|
.sd-root-modern.sd-root-modern--mobile .sd-matrix__label {
|
6490
|
-
justify-content: start;
|
6824
|
+
justify-content: flex-start;
|
6491
6825
|
}
|
6492
6826
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell {
|
6493
6827
|
border-top: none;
|
@@ -6526,6 +6860,7 @@ sv-components-container,
|
|
6526
6860
|
.sd-root-modern.sd-root-modern--mobile .sd-matrix__cell::before,
|
6527
6861
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--actions::before,
|
6528
6862
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--row-text::before,
|
6863
|
+
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--footer-total::before,
|
6529
6864
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--error::before {
|
6530
6865
|
content: none;
|
6531
6866
|
}
|
@@ -6565,6 +6900,7 @@ sv-components-container,
|
|
6565
6900
|
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
6566
6901
|
margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6567
6902
|
}
|
6903
|
+
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--footer-total:not(.sd-matrix__cell),
|
6568
6904
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--row-text:not(.sd-matrix__cell) {
|
6569
6905
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6570
6906
|
}
|
@@ -6666,31 +7002,45 @@ body {
|
|
6666
7002
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
6667
7003
|
position: relative;
|
6668
7004
|
}
|
6669
|
-
|
6670
|
-
|
6671
|
-
|
6672
|
-
|
6673
|
-
|
6674
|
-
|
7005
|
+
@-moz-document url-prefix() {
|
7006
|
+
.sd-root-modern,
|
7007
|
+
.sd-root-modern * {
|
7008
|
+
scrollbar-width: thin;
|
7009
|
+
scrollbar-color: var(--sjs-border-default, var(--border, #d6d6d6)) transparent;
|
7010
|
+
}
|
6675
7011
|
}
|
6676
|
-
.sd-root-modern
|
7012
|
+
.sd-root-modern::-webkit-scrollbar,
|
7013
|
+
.sd-root-modern *::-webkit-scrollbar {
|
6677
7014
|
width: 12px;
|
6678
7015
|
height: 12px;
|
6679
7016
|
background-color: transparent;
|
6680
7017
|
}
|
6681
|
-
.sd-root-modern
|
7018
|
+
.sd-root-modern::-webkit-scrollbar-thumb,
|
7019
|
+
.sd-root-modern *::-webkit-scrollbar-thumb {
|
6682
7020
|
border: 4px solid rgba(0, 0, 0, 0);
|
6683
7021
|
background-clip: padding-box;
|
6684
7022
|
border-radius: 32px;
|
6685
7023
|
background-color: var(--sjs-border-default, var(--border, #d6d6d6));
|
6686
7024
|
}
|
6687
|
-
.sd-root-modern
|
7025
|
+
.sd-root-modern::-webkit-scrollbar-track,
|
7026
|
+
.sd-root-modern *::-webkit-scrollbar-track {
|
6688
7027
|
background: transparent;
|
6689
7028
|
}
|
6690
|
-
.sd-root-modern
|
7029
|
+
.sd-root-modern::-webkit-scrollbar-thumb:hover,
|
7030
|
+
.sd-root-modern *::-webkit-scrollbar-thumb:hover {
|
6691
7031
|
border: 2px solid rgba(0, 0, 0, 0);
|
6692
7032
|
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6693
7033
|
}
|
7034
|
+
.sd-root-modern form {
|
7035
|
+
position: relative;
|
7036
|
+
}
|
7037
|
+
|
7038
|
+
.sd-root-modern--animation-disabled * {
|
7039
|
+
-webkit-transition: none !important;
|
7040
|
+
-moz-transition: none !important;
|
7041
|
+
-o-transition: none !important;
|
7042
|
+
transition: none !important;
|
7043
|
+
}
|
6694
7044
|
|
6695
7045
|
.sd-root-modern.sd-root-modern--full-container {
|
6696
7046
|
width: 100%;
|
@@ -6698,28 +7048,6 @@ body {
|
|
6698
7048
|
overflow: auto;
|
6699
7049
|
position: static;
|
6700
7050
|
}
|
6701
|
-
.sd-root-modern.sd-root-modern--full-container * {
|
6702
|
-
scrollbar-width: thin;
|
6703
|
-
scrollbar-color: var(--sjs-border-default, var(--border, #d6d6d6)) transparent;
|
6704
|
-
}
|
6705
|
-
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar {
|
6706
|
-
width: 12px;
|
6707
|
-
height: 12px;
|
6708
|
-
background-color: transparent;
|
6709
|
-
}
|
6710
|
-
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-thumb {
|
6711
|
-
border: 4px solid rgba(0, 0, 0, 0);
|
6712
|
-
background-clip: padding-box;
|
6713
|
-
border-radius: 32px;
|
6714
|
-
background-color: var(--sjs-border-default, var(--border, #d6d6d6));
|
6715
|
-
}
|
6716
|
-
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-track {
|
6717
|
-
background: transparent;
|
6718
|
-
}
|
6719
|
-
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-thumb:hover {
|
6720
|
-
border: 2px solid rgba(0, 0, 0, 0);
|
6721
|
-
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6722
|
-
}
|
6723
7051
|
|
6724
7052
|
.sd-root-modern--mobile {
|
6725
7053
|
--sd-timer-size: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -6741,25 +7069,32 @@ body {
|
|
6741
7069
|
max-height: 100%;
|
6742
7070
|
}
|
6743
7071
|
|
6744
|
-
|
6745
|
-
|
6746
|
-
|
7072
|
+
@-moz-document url-prefix() {
|
7073
|
+
.sv-popup .sv-popup__scrolling-content,
|
7074
|
+
.sv-popup .sv-popup__scrolling-content * {
|
7075
|
+
scrollbar-width: thin;
|
7076
|
+
scrollbar-color: var(--sjs-border-default, var(--border, #d6d6d6)) transparent;
|
7077
|
+
}
|
6747
7078
|
}
|
6748
|
-
.sv-popup .sv-popup__scrolling-content
|
7079
|
+
.sv-popup .sv-popup__scrolling-content::-webkit-scrollbar,
|
7080
|
+
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar {
|
6749
7081
|
width: 12px;
|
6750
7082
|
height: 12px;
|
6751
|
-
background-color:
|
7083
|
+
background-color: transparent;
|
6752
7084
|
}
|
6753
|
-
.sv-popup .sv-popup__scrolling-content
|
7085
|
+
.sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-thumb,
|
7086
|
+
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-thumb {
|
6754
7087
|
border: 4px solid rgba(0, 0, 0, 0);
|
6755
7088
|
background-clip: padding-box;
|
6756
7089
|
border-radius: 32px;
|
6757
7090
|
background-color: var(--sjs-border-default, var(--border, #d6d6d6));
|
6758
7091
|
}
|
6759
|
-
.sv-popup .sv-popup__scrolling-content
|
7092
|
+
.sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-track,
|
7093
|
+
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-track {
|
6760
7094
|
background: transparent;
|
6761
7095
|
}
|
6762
|
-
.sv-popup .sv-popup__scrolling-content
|
7096
|
+
.sv-popup .sv-popup__scrolling-content::-webkit-scrollbar-thumb:hover,
|
7097
|
+
.sv-popup .sv-popup__scrolling-content *::-webkit-scrollbar-thumb:hover {
|
6763
7098
|
border: 2px solid rgba(0, 0, 0, 0);
|
6764
7099
|
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6765
7100
|
}
|