survey-react 1.9.126 → 1.9.128
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 +313 -79
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +62 -4
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +31 -4
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +391 -71
- package/survey.react.js +1472 -617
- 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.128
|
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))));
|
@@ -1065,7 +1089,7 @@ sv-popup {
|
|
1065
1089
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
1066
1090
|
flex: 1;
|
1067
1091
|
display: flex;
|
1068
|
-
justify-content: start;
|
1092
|
+
justify-content: flex-start;
|
1069
1093
|
align-items: center;
|
1070
1094
|
}
|
1071
1095
|
|
@@ -1101,13 +1125,16 @@ sv-popup {
|
|
1101
1125
|
.sv_window_button:hover, .sv_window_button:active {
|
1102
1126
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
1103
1127
|
}
|
1104
|
-
.sv_window_button:hover svg use,
|
1128
|
+
.sv_window_button:hover svg use,
|
1129
|
+
.sv_window_button:hover svg path, .sv_window_button:active svg use,
|
1130
|
+
.sv_window_button:active svg path {
|
1105
1131
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
1106
1132
|
}
|
1107
1133
|
.sv_window_button:active {
|
1108
1134
|
opacity: 0.5;
|
1109
1135
|
}
|
1110
|
-
.sv_window_button svg use,
|
1136
|
+
.sv_window_button svg use,
|
1137
|
+
.sv_window_button svg path {
|
1111
1138
|
fill: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
1112
1139
|
}
|
1113
1140
|
|
@@ -1154,6 +1181,14 @@ sv-brand-info, .sv-brand-info {
|
|
1154
1181
|
color: #909090;
|
1155
1182
|
}
|
1156
1183
|
|
1184
|
+
:root {
|
1185
|
+
--sjs-transition-duration: 150ms;
|
1186
|
+
}
|
1187
|
+
|
1188
|
+
:root {
|
1189
|
+
--sjs-transition-duration: 150ms;
|
1190
|
+
}
|
1191
|
+
|
1157
1192
|
.sv-ranking {
|
1158
1193
|
outline: none;
|
1159
1194
|
user-select: none;
|
@@ -1243,6 +1278,8 @@ sv-brand-info, .sv-brand-info {
|
|
1243
1278
|
box-sizing: border-box;
|
1244
1279
|
font-weight: 600;
|
1245
1280
|
margin-left: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1281
|
+
transition: outline var(--sjs-transition-duration, 150ms), background var(--sjs-transition-duration, 150ms);
|
1282
|
+
outline: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid transparent;
|
1246
1283
|
}
|
1247
1284
|
.sv-ranking-item__index.sv-ranking-item__index svg {
|
1248
1285
|
fill: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
@@ -1437,6 +1474,10 @@ sv-brand-info, .sv-brand-info {
|
|
1437
1474
|
display: none;
|
1438
1475
|
}
|
1439
1476
|
|
1477
|
+
:root {
|
1478
|
+
--sjs-transition-duration: 150ms;
|
1479
|
+
}
|
1480
|
+
|
1440
1481
|
.sv-list {
|
1441
1482
|
padding: 0;
|
1442
1483
|
margin: 0;
|
@@ -1491,6 +1532,7 @@ sv-brand-info, .sv-brand-info {
|
|
1491
1532
|
text-align: left;
|
1492
1533
|
text-overflow: ellipsis;
|
1493
1534
|
white-space: nowrap;
|
1535
|
+
transition: background-color var(--sjs-transition-duration, 150ms), color var(--sjs-transition-duration, 150ms);
|
1494
1536
|
}
|
1495
1537
|
|
1496
1538
|
.sv-list__item.sv-list__item--focused:not(.sv-list__item--selected) {
|
@@ -1651,6 +1693,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1651
1693
|
background-color: transparent;
|
1652
1694
|
}
|
1653
1695
|
|
1696
|
+
:root {
|
1697
|
+
--sjs-transition-duration: 150ms;
|
1698
|
+
}
|
1699
|
+
|
1654
1700
|
.sv-save-data_root {
|
1655
1701
|
position: fixed;
|
1656
1702
|
left: 50%;
|
@@ -1765,6 +1811,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1765
1811
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1766
1812
|
}
|
1767
1813
|
|
1814
|
+
.sd-element__header .sv-string-editor {
|
1815
|
+
max-width: 100%;
|
1816
|
+
white-space: normal;
|
1817
|
+
}
|
1818
|
+
|
1768
1819
|
.sd-element__title {
|
1769
1820
|
font-size: 0;
|
1770
1821
|
line-height: 0;
|
@@ -1784,10 +1835,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1784
1835
|
font-size: 0;
|
1785
1836
|
line-height: 0;
|
1786
1837
|
}
|
1787
|
-
.sd-element__title .sv-string-editor {
|
1788
|
-
max-width: 100%;
|
1789
|
-
white-space: normal;
|
1790
|
-
}
|
1791
1838
|
.sd-element__title .sv-title-actions__title {
|
1792
1839
|
white-space: nowrap;
|
1793
1840
|
}
|
@@ -2175,6 +2222,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2175
2222
|
border-radius: var(--sjs-editorpanel-cornerRadius, var(--sjs-corner-radius, 4px));
|
2176
2223
|
text-align: start;
|
2177
2224
|
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));
|
2225
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
2178
2226
|
}
|
2179
2227
|
|
2180
2228
|
.sd-input:focus {
|
@@ -2235,6 +2283,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2235
2283
|
padding-inline-end: calc(8 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2236
2284
|
}
|
2237
2285
|
|
2286
|
+
.sd-text__character-counter.sd-text__character-counter--big:focus-within {
|
2287
|
+
padding-inline-end: calc(11 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2288
|
+
}
|
2289
|
+
|
2238
2290
|
.sd-remaining-character-counter {
|
2239
2291
|
display: none;
|
2240
2292
|
flex-direction: row;
|
@@ -2451,6 +2503,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2451
2503
|
}
|
2452
2504
|
.sd-checkbox__svg use {
|
2453
2505
|
fill: transparent;
|
2506
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
2454
2507
|
}
|
2455
2508
|
|
2456
2509
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
@@ -2619,29 +2672,29 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2619
2672
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:last-of-type > .sd-table__cell {
|
2620
2673
|
border-bottom: var(--sjs-base-unit, var(--base-unit, 8px)) solid transparent;
|
2621
2674
|
}
|
2622
|
-
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell,
|
2675
|
+
.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),
|
2623
2676
|
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
|
2624
2677
|
border-top-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2625
2678
|
border-bottom-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2626
2679
|
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2627
2680
|
}
|
2628
|
-
.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,
|
2681
|
+
.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,
|
2629
2682
|
.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 {
|
2630
2683
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
2631
2684
|
}
|
2632
|
-
.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,
|
2685
|
+
.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,
|
2633
2686
|
.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 {
|
2634
2687
|
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2635
2688
|
}
|
2636
|
-
.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,
|
2689
|
+
.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,
|
2637
2690
|
.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 {
|
2638
2691
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2639
2692
|
}
|
2640
|
-
.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,
|
2693
|
+
.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,
|
2641
2694
|
.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 {
|
2642
2695
|
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
2643
2696
|
}
|
2644
|
-
.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,
|
2697
|
+
.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,
|
2645
2698
|
.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 {
|
2646
2699
|
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
2647
2700
|
}
|
@@ -2658,6 +2711,9 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2658
2711
|
.sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
|
2659
2712
|
min-width: calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2660
2713
|
}
|
2714
|
+
.sd-table__cell .sd-item {
|
2715
|
+
text-align: initial;
|
2716
|
+
}
|
2661
2717
|
|
2662
2718
|
.sd-table__cell--error {
|
2663
2719
|
border: none;
|
@@ -2768,6 +2824,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2768
2824
|
background: transparent;
|
2769
2825
|
border-radius: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2770
2826
|
padding: var(--sjs-base-unit, var(--base-unit, 8px));
|
2827
|
+
transition: background var(--sjs-transition-duration, 150ms);
|
2771
2828
|
}
|
2772
2829
|
.sd-table__cell--detail-button svg {
|
2773
2830
|
--sjs-internal-font-editorfont-size: var(--sjs-mobile-font-editorfont-size, var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px)));
|
@@ -2775,6 +2832,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2775
2832
|
width: var(--sjs-internal-font-editorfont-size);
|
2776
2833
|
height: var(--sjs-internal-font-editorfont-size);
|
2777
2834
|
fill: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2835
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
2778
2836
|
}
|
2779
2837
|
.sd-table__cell--detail-button:hover, .sd-table__cell--detail-button:focus {
|
2780
2838
|
background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
@@ -3180,6 +3238,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3180
3238
|
flex-shrink: 0;
|
3181
3239
|
margin-top: calc((1.5 * (var(--sjs-internal-font-editorfont-size)) - 3 * (var(--sjs-base-unit, var(--base-unit, 8px)))) / 2);
|
3182
3240
|
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));
|
3241
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms), background var(--sjs-transition-duration, 150ms);
|
3183
3242
|
}
|
3184
3243
|
|
3185
3244
|
.sd-item--checked .sd-item__decorator {
|
@@ -3285,6 +3344,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3285
3344
|
}
|
3286
3345
|
.sd-checkbox__svg use {
|
3287
3346
|
fill: transparent;
|
3347
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
3288
3348
|
}
|
3289
3349
|
|
3290
3350
|
.sd-checkbox--checked .sd-checkbox__svg use {
|
@@ -3309,6 +3369,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3309
3369
|
height: var(--sjs-base-unit, var(--base-unit, 8px));
|
3310
3370
|
border-radius: 50%;
|
3311
3371
|
background-color: transparent;
|
3372
|
+
transition: background-color var(--sjs-transition-duration, 150ms);
|
3312
3373
|
}
|
3313
3374
|
|
3314
3375
|
.sd-radio--checked .sd-radio__decorator:after {
|
@@ -3461,7 +3522,6 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3461
3522
|
.sd-rating__item {
|
3462
3523
|
position: relative;
|
3463
3524
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
3464
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
3465
3525
|
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3466
3526
|
white-space: nowrap;
|
3467
3527
|
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -3472,10 +3532,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3472
3532
|
box-sizing: border-box;
|
3473
3533
|
min-width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3474
3534
|
text-align: center;
|
3475
|
-
border:
|
3535
|
+
border: 0px solid transparent;
|
3476
3536
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3477
3537
|
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3478
3538
|
font-size: var(--sjs-font-size, 16px);
|
3539
|
+
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));
|
3540
|
+
transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
|
3479
3541
|
}
|
3480
3542
|
|
3481
3543
|
.sd-rating__item--fixed-size {
|
@@ -3528,7 +3590,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
3528
3590
|
}
|
3529
3591
|
|
3530
3592
|
.sd-rating__item--selected:focus-within {
|
3531
|
-
box-shadow: inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
|
3593
|
+
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));
|
3532
3594
|
}
|
3533
3595
|
|
3534
3596
|
.sd-rating__item-smiley {
|
@@ -3542,6 +3604,8 @@ legend + sv-ng-rating-item + .sd-rating__item {
|
|
3542
3604
|
border: 2px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
3543
3605
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3544
3606
|
fill: var(--sjs-border-default, var(--border, #d6d6d6));
|
3607
|
+
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));
|
3608
|
+
transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
|
3545
3609
|
}
|
3546
3610
|
.sd-rating__item-smiley svg {
|
3547
3611
|
display: block;
|
@@ -3568,6 +3632,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3568
3632
|
margin-inline-start: 2px;
|
3569
3633
|
}
|
3570
3634
|
|
3635
|
+
.sd-rating__item-smiley--scale-colored {
|
3636
|
+
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);
|
3637
|
+
}
|
3638
|
+
|
3571
3639
|
.sd-rating__item-smiley--error {
|
3572
3640
|
background-color: var(--sjs-special-red-light, var(--red-light, rgba(230, 10, 62, 0.1)));
|
3573
3641
|
border-color: transparent;
|
@@ -3603,7 +3671,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3603
3671
|
}
|
3604
3672
|
|
3605
3673
|
.sd-rating__item-smiley--selected:focus-within {
|
3606
|
-
box-shadow: inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
|
3674
|
+
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));
|
3607
3675
|
}
|
3608
3676
|
|
3609
3677
|
.sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected) {
|
@@ -3636,13 +3704,18 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3636
3704
|
}
|
3637
3705
|
.sd-rating__item-star svg {
|
3638
3706
|
stroke: var(--sjs-border-default, var(--border, #d6d6d6));
|
3639
|
-
fill:
|
3707
|
+
fill: transparent;
|
3640
3708
|
width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3641
3709
|
height: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3642
3710
|
display: block;
|
3711
|
+
position: absolute;
|
3712
|
+
transition: stroke var(--sjs-transition-duration, 150ms), opacity var(--sjs-transition-duration, 150ms), fill var(--sjs-transition-duration, 150ms);
|
3713
|
+
}
|
3714
|
+
.sd-rating__item-star .sv-star {
|
3715
|
+
opacity: 1;
|
3643
3716
|
}
|
3644
3717
|
.sd-rating__item-star .sv-star-2 {
|
3645
|
-
|
3718
|
+
opacity: 0;
|
3646
3719
|
}
|
3647
3720
|
|
3648
3721
|
.sd-rating__item-star--small {
|
@@ -3655,7 +3728,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3655
3728
|
}
|
3656
3729
|
|
3657
3730
|
.sd-rating__item-star--selected svg {
|
3658
|
-
stroke:
|
3731
|
+
stroke: transparent;
|
3659
3732
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3660
3733
|
}
|
3661
3734
|
|
@@ -3679,11 +3752,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3679
3752
|
|
3680
3753
|
.sd-rating__item-star:focus-within svg {
|
3681
3754
|
stroke: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3682
|
-
fill:
|
3755
|
+
fill: transparent;
|
3683
3756
|
}
|
3684
3757
|
|
3685
3758
|
.sd-rating__item-star--unhighlighted svg {
|
3686
|
-
stroke:
|
3759
|
+
stroke: transparent;
|
3687
3760
|
fill: var(--sjs-border-default, var(--border, #d6d6d6));
|
3688
3761
|
}
|
3689
3762
|
|
@@ -3702,10 +3775,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3702
3775
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3703
3776
|
}
|
3704
3777
|
.sd-rating__item-star--selected:focus-within .sv-star {
|
3705
|
-
|
3778
|
+
opacity: 0;
|
3706
3779
|
}
|
3707
3780
|
.sd-rating__item-star--selected:focus-within .sv-star-2 {
|
3708
|
-
|
3781
|
+
opacity: 1;
|
3709
3782
|
}
|
3710
3783
|
|
3711
3784
|
.sd-rating__item-text.sd-rating__item-text {
|
@@ -3718,6 +3791,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3718
3791
|
display: inline-block;
|
3719
3792
|
border: 2px solid transparent;
|
3720
3793
|
box-sizing: border-box;
|
3794
|
+
transition: color var(--sjs-transition-duration, 150ms);
|
3721
3795
|
}
|
3722
3796
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text, .sd-rating__item-text.sd-rating__item-text.sd-rating__max-text {
|
3723
3797
|
margin-top: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -3955,7 +4029,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3955
4029
|
}
|
3956
4030
|
|
3957
4031
|
.sd-input.sd-dropdown:focus-within {
|
3958
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4032
|
+
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));
|
3959
4033
|
}
|
3960
4034
|
|
3961
4035
|
.sd-input.sd-dropdown:focus-within .sd-dropdown__filter-string-input {
|
@@ -4056,7 +4130,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4056
4130
|
}
|
4057
4131
|
|
4058
4132
|
.sd-input.sd-tagbox:focus-within {
|
4059
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4133
|
+
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));
|
4060
4134
|
}
|
4061
4135
|
|
4062
4136
|
.sv-tagbox__item {
|
@@ -4078,17 +4152,19 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4078
4152
|
.sv-tagbox__item:hover .sd-tagbox-item_clean-button,
|
4079
4153
|
.sv-tagbox__item:focus .sd-tagbox-item_clean-button,
|
4080
4154
|
.sv-tagbox__item:focus-within .sd-tagbox-item_clean-button {
|
4081
|
-
display: flex;
|
4082
4155
|
align-self: center;
|
4156
|
+
opacity: 1;
|
4083
4157
|
}
|
4084
4158
|
|
4085
4159
|
.sd-tagbox-item_clean-button {
|
4086
|
-
display:
|
4160
|
+
display: flex;
|
4087
4161
|
position: absolute;
|
4088
4162
|
inset-inline-end: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4089
4163
|
padding: 0;
|
4090
4164
|
padding-inline-start: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4091
4165
|
background: linear-gradient(270deg, var(--sjs-primary-backcolor, var(--primary, #19b394)) 53.12%, rgba(25, 179, 148, 0) 100%);
|
4166
|
+
opacity: 0;
|
4167
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
4092
4168
|
}
|
4093
4169
|
|
4094
4170
|
.sd-tagbox-item_clean-button-svg {
|
@@ -4222,7 +4298,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4222
4298
|
}
|
4223
4299
|
|
4224
4300
|
.sd-imagepicker__check-decorator {
|
4225
|
-
display:
|
4301
|
+
display: block;
|
4302
|
+
opacity: 0;
|
4226
4303
|
position: absolute;
|
4227
4304
|
top: var(--sjs-base-unit, var(--base-unit, 8px));
|
4228
4305
|
right: var(--sjs-base-unit, var(--base-unit, 8px));
|
@@ -4231,6 +4308,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4231
4308
|
border-radius: 100%;
|
4232
4309
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
4233
4310
|
z-index: 1;
|
4311
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
4234
4312
|
}
|
4235
4313
|
|
4236
4314
|
.sd-imagepicker__check-icon {
|
@@ -4242,7 +4320,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4242
4320
|
}
|
4243
4321
|
|
4244
4322
|
.sd-imagepicker__item--checked .sd-imagepicker__check-decorator {
|
4245
|
-
|
4323
|
+
opacity: 1;
|
4246
4324
|
}
|
4247
4325
|
|
4248
4326
|
.sd-imagepicker__item--error .sd-imagepicker__image-container::before {
|
@@ -4267,6 +4345,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4267
4345
|
display: block;
|
4268
4346
|
box-sizing: border-box;
|
4269
4347
|
max-width: 100%;
|
4348
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
4270
4349
|
}
|
4271
4350
|
|
4272
4351
|
.sd-imagepicker__text {
|
@@ -4332,6 +4411,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4332
4411
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4333
4412
|
}
|
4334
4413
|
|
4414
|
+
:root {
|
4415
|
+
--sjs-transition-duration: 150ms;
|
4416
|
+
}
|
4417
|
+
|
4335
4418
|
.sd-html {
|
4336
4419
|
white-space: initial;
|
4337
4420
|
}
|
@@ -4429,7 +4512,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4429
4512
|
vertical-align: baseline;
|
4430
4513
|
text-align: center;
|
4431
4514
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
4432
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
4433
4515
|
border: none;
|
4434
4516
|
border-radius: var(--sjs-corner-radius, 4px);
|
4435
4517
|
cursor: pointer;
|
@@ -4441,12 +4523,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4441
4523
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4442
4524
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
4443
4525
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
4526
|
+
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));
|
4527
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
4444
4528
|
}
|
4445
4529
|
.sd-html button:hover {
|
4446
4530
|
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
4447
4531
|
}
|
4448
4532
|
.sd-html button:focus {
|
4449
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4533
|
+
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));
|
4450
4534
|
}
|
4451
4535
|
.sd-html button span {
|
4452
4536
|
display: flex;
|
@@ -4517,10 +4601,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4517
4601
|
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4518
4602
|
background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
|
4519
4603
|
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4520
|
-
box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
4604
|
+
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));
|
4605
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
4521
4606
|
}
|
4522
4607
|
.sd-boolean.sd-boolean--allowhover:focus-within {
|
4523
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4608
|
+
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));
|
4524
4609
|
}
|
4525
4610
|
|
4526
4611
|
.sd-boolean__thumb,
|
@@ -4595,11 +4680,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4595
4680
|
|
4596
4681
|
.sd-boolean__thumb-ghost {
|
4597
4682
|
z-index: 1;
|
4683
|
+
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4684
|
+
background-color: transparent;
|
4685
|
+
transition: background-color var(--sjs-transition-duration, 150ms);
|
4598
4686
|
}
|
4599
4687
|
|
4600
4688
|
.sd-boolean.sd-boolean--allowhover .sd-boolean__thumb-ghost:hover {
|
4601
4689
|
background-color: var(--sjs-editorpanel-hovercolor, var(--sjs-general-backcolor-dim-dark, rgb(243, 243, 243)));
|
4602
|
-
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4603
4690
|
}
|
4604
4691
|
|
4605
4692
|
.sd-boolean--error {
|
@@ -4729,6 +4816,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4729
4816
|
padding-bottom: var(--sd-base-padding);
|
4730
4817
|
}
|
4731
4818
|
|
4819
|
+
.sd-question--paneldynamic:not(.sd-question--empty) > .sd-question__content > .sd-question__comment-area {
|
4820
|
+
padding-bottom: var(--sd-base-padding);
|
4821
|
+
}
|
4822
|
+
|
4732
4823
|
.sd-paneldynamic__buttons-container .sd-action-bar {
|
4733
4824
|
width: 100%;
|
4734
4825
|
margin: 0 calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -4788,6 +4879,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4788
4879
|
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
4789
4880
|
overflow-x: hidden;
|
4790
4881
|
white-space: nowrap;
|
4882
|
+
box-shadow: inset 0px 0px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4883
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
4791
4884
|
}
|
4792
4885
|
.sd-tab-item:hover, .sd-tab-item:focus-visible {
|
4793
4886
|
outline: none;
|
@@ -4854,6 +4947,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4854
4947
|
padding-bottom: 0;
|
4855
4948
|
}
|
4856
4949
|
|
4950
|
+
:root {
|
4951
|
+
--sjs-transition-duration: 150ms;
|
4952
|
+
}
|
4953
|
+
|
4857
4954
|
.sd-file {
|
4858
4955
|
position: relative;
|
4859
4956
|
font-size: var(--sjs-font-size, 16px);
|
@@ -5033,11 +5130,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5033
5130
|
.sd-file__preview img:hover + .sd-file__remove-file-button,
|
5034
5131
|
.sd-file__preview svg:hover + .sd-file__remove-file-button,
|
5035
5132
|
.sd-file__preview .sd-file__remove-file-button:hover {
|
5036
|
-
|
5037
|
-
position: absolute;
|
5038
|
-
left: 50%;
|
5039
|
-
top: 50%;
|
5040
|
-
transform: translate(-50%, -50%);
|
5133
|
+
opacity: 1;
|
5041
5134
|
}
|
5042
5135
|
|
5043
5136
|
.sd-file__sign {
|
@@ -5065,7 +5158,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5065
5158
|
}
|
5066
5159
|
|
5067
5160
|
.sd-file__remove-file-button {
|
5068
|
-
display:
|
5161
|
+
display: block;
|
5162
|
+
opacity: 0;
|
5163
|
+
position: absolute;
|
5164
|
+
left: 50%;
|
5165
|
+
top: 50%;
|
5166
|
+
transform: translate(-50%, -50%);
|
5167
|
+
transition: opacity var(--sjs-transition-duration, 150ms);
|
5069
5168
|
}
|
5070
5169
|
|
5071
5170
|
.sd-file__decorator--error {
|
@@ -5243,13 +5342,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5243
5342
|
display: none;
|
5244
5343
|
}
|
5245
5344
|
|
5345
|
+
:root {
|
5346
|
+
--sjs-transition-duration: 150ms;
|
5347
|
+
}
|
5348
|
+
|
5246
5349
|
.sd-btn {
|
5247
5350
|
appearance: none;
|
5248
5351
|
-webkit-appearance: none;
|
5249
5352
|
-moz-appearance: none;
|
5250
5353
|
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5251
5354
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
5252
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5253
5355
|
border-radius: var(--sjs-corner-radius, 4px);
|
5254
5356
|
cursor: pointer;
|
5255
5357
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
@@ -5261,6 +5363,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5261
5363
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5262
5364
|
border: none;
|
5263
5365
|
outline: none;
|
5366
|
+
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));
|
5367
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms), background var(--sjs-transition-duration, 150ms);
|
5264
5368
|
}
|
5265
5369
|
|
5266
5370
|
.sd-btn--small {
|
@@ -5273,7 +5377,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5273
5377
|
}
|
5274
5378
|
|
5275
5379
|
.sd-btn:focus-visible {
|
5276
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5380
|
+
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));
|
5277
5381
|
}
|
5278
5382
|
|
5279
5383
|
.sd-btn:disabled {
|
@@ -5312,6 +5416,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5312
5416
|
pointer-events: none;
|
5313
5417
|
}
|
5314
5418
|
|
5419
|
+
:root {
|
5420
|
+
--sjs-transition-duration: 150ms;
|
5421
|
+
}
|
5422
|
+
|
5315
5423
|
.sd-body {
|
5316
5424
|
width: 100%;
|
5317
5425
|
box-sizing: border-box;
|
@@ -5502,7 +5610,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5502
5610
|
vertical-align: baseline;
|
5503
5611
|
text-align: center;
|
5504
5612
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
5505
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5506
5613
|
border: none;
|
5507
5614
|
border-radius: var(--sjs-corner-radius, 4px);
|
5508
5615
|
cursor: pointer;
|
@@ -5514,6 +5621,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5514
5621
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5515
5622
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5516
5623
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
5624
|
+
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));
|
5625
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
5517
5626
|
}
|
5518
5627
|
.sd-body--empty button:hover,
|
5519
5628
|
.sd-body--loading button:hover {
|
@@ -5521,7 +5630,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5521
5630
|
}
|
5522
5631
|
.sd-body--empty button:focus,
|
5523
5632
|
.sd-body--loading button:focus {
|
5524
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5633
|
+
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));
|
5525
5634
|
}
|
5526
5635
|
.sd-body--empty button span,
|
5527
5636
|
.sd-body--loading button span {
|
@@ -5540,6 +5649,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5540
5649
|
right: 0;
|
5541
5650
|
}
|
5542
5651
|
|
5652
|
+
:root {
|
5653
|
+
--sjs-transition-duration: 150ms;
|
5654
|
+
}
|
5655
|
+
|
5543
5656
|
.sd-multipletext {
|
5544
5657
|
width: 100%;
|
5545
5658
|
table-layout: fixed;
|
@@ -5556,7 +5669,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5556
5669
|
}
|
5557
5670
|
|
5558
5671
|
.sd-multipletext__item-container.sd-input:focus-within {
|
5559
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5672
|
+
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));
|
5560
5673
|
}
|
5561
5674
|
|
5562
5675
|
.sd-multipletext__item-container {
|
@@ -5665,6 +5778,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5665
5778
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5666
5779
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
5667
5780
|
outline: none;
|
5781
|
+
transition: background-color var(--sjs-transition-duration, 150ms);
|
5668
5782
|
}
|
5669
5783
|
|
5670
5784
|
.sd-action--negative {
|
@@ -5687,6 +5801,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5687
5801
|
}
|
5688
5802
|
.sd-action--icon use {
|
5689
5803
|
fill: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
5804
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
5690
5805
|
}
|
5691
5806
|
|
5692
5807
|
svg.sd-action--icon {
|
@@ -5767,6 +5882,7 @@ svg.sd-action--icon {
|
|
5767
5882
|
}
|
5768
5883
|
.sd-context-btn use {
|
5769
5884
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
5885
|
+
transition: fill var(--sjs-transition-duration, 150ms);
|
5770
5886
|
}
|
5771
5887
|
|
5772
5888
|
.sd-context-btn:hover use,
|
@@ -5782,6 +5898,10 @@ svg.sd-action--icon {
|
|
5782
5898
|
opacity: 0.25;
|
5783
5899
|
}
|
5784
5900
|
|
5901
|
+
:root {
|
5902
|
+
--sjs-transition-duration: 150ms;
|
5903
|
+
}
|
5904
|
+
|
5785
5905
|
.sd-completedpage,
|
5786
5906
|
.sd-completed-before-page {
|
5787
5907
|
align-items: center;
|
@@ -5894,7 +6014,6 @@ svg.sd-action--icon {
|
|
5894
6014
|
vertical-align: baseline;
|
5895
6015
|
text-align: center;
|
5896
6016
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
5897
|
-
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5898
6017
|
border: none;
|
5899
6018
|
border-radius: var(--sjs-corner-radius, 4px);
|
5900
6019
|
cursor: pointer;
|
@@ -5906,6 +6025,8 @@ svg.sd-action--icon {
|
|
5906
6025
|
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5907
6026
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5908
6027
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
6028
|
+
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));
|
6029
|
+
transition: box-shadow var(--sjs-transition-duration, 150ms);
|
5909
6030
|
}
|
5910
6031
|
.sd-completedpage button:hover,
|
5911
6032
|
.sd-completed-before-page button:hover {
|
@@ -5913,7 +6034,7 @@ svg.sd-action--icon {
|
|
5913
6034
|
}
|
5914
6035
|
.sd-completedpage button:focus,
|
5915
6036
|
.sd-completed-before-page button:focus {
|
5916
|
-
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6037
|
+
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));
|
5917
6038
|
}
|
5918
6039
|
.sd-completedpage button span,
|
5919
6040
|
.sd-completed-before-page button span {
|
@@ -5951,53 +6072,159 @@ svg.sd-action--icon {
|
|
5951
6072
|
visibility: hidden;
|
5952
6073
|
}
|
5953
6074
|
|
5954
|
-
.sd-progress-
|
6075
|
+
.sd-progress-buttons__page-description {
|
6076
|
+
display: none;
|
6077
|
+
}
|
6078
|
+
|
6079
|
+
.sd-progress-buttons {
|
6080
|
+
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))));
|
5955
6081
|
display: flex;
|
5956
|
-
|
5957
|
-
|
5958
|
-
|
6082
|
+
flex-direction: column;
|
6083
|
+
}
|
6084
|
+
|
6085
|
+
.sd-progress-buttons__list-container {
|
6086
|
+
display: flex;
|
6087
|
+
overflow: hidden;
|
5959
6088
|
}
|
5960
6089
|
|
6090
|
+
.sd-progress-buttons__connector {
|
6091
|
+
display: none;
|
6092
|
+
}
|
6093
|
+
|
6094
|
+
.sd-progress-buttons__list {
|
6095
|
+
display: inline-flex;
|
6096
|
+
flex-direction: row;
|
6097
|
+
flex-grow: 1;
|
6098
|
+
margin: 0 auto;
|
6099
|
+
padding: 0;
|
6100
|
+
}
|
5961
6101
|
.sd-progress-buttons__list li {
|
5962
|
-
|
6102
|
+
display: flex;
|
5963
6103
|
flex-grow: 1;
|
5964
|
-
|
5965
|
-
|
5966
|
-
|
5967
|
-
|
6104
|
+
flex-shrink: 1;
|
6105
|
+
flex-basis: 0;
|
6106
|
+
position: relative;
|
6107
|
+
flex-wrap: nowrap;
|
6108
|
+
text-align: center;
|
6109
|
+
flex-direction: column;
|
6110
|
+
}
|
6111
|
+
.sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6112
|
+
display: block;
|
6113
|
+
content: "";
|
6114
|
+
width: 100%;
|
6115
|
+
height: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6116
|
+
background-color: var(--sjs-navigation-default, #bcbcbc);
|
6117
|
+
position: absolute;
|
6118
|
+
bottom: calc(0.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6119
|
+
right: 50%;
|
6120
|
+
}
|
6121
|
+
.sd-progress-buttons__list li:after {
|
6122
|
+
display: flex;
|
6123
|
+
content: attr(data-page-number);
|
6124
|
+
width: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6125
|
+
height: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6126
|
+
margin: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6127
|
+
border: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid transparent;
|
6128
|
+
background-color: var(--sjs-navigation-default, #bcbcbc);
|
6129
|
+
border-radius: 50%;
|
5968
6130
|
cursor: pointer;
|
6131
|
+
align-self: center;
|
6132
|
+
z-index: 1;
|
6133
|
+
font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
|
6134
|
+
font-weight: 600;
|
6135
|
+
line-height: var(--sjs-font-size, 16px);
|
6136
|
+
justify-content: center;
|
6137
|
+
color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
5969
6138
|
}
|
5970
|
-
.sd-progress-buttons__list
|
5971
|
-
|
6139
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--passed:not(:first-child) > .sd-progress-buttons__connector {
|
6140
|
+
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5972
6141
|
}
|
5973
|
-
|
5974
|
-
|
5975
|
-
.sd-progress-buttons__list .sd-progress-buttons__list-element--passed {
|
5976
|
-
border-top: 2px solid var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6142
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--passed:after {
|
6143
|
+
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5977
6144
|
}
|
5978
|
-
|
5979
|
-
|
5980
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6145
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--current:not(:first-child) > .sd-progress-buttons__connector {
|
6146
|
+
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5981
6147
|
}
|
5982
|
-
|
5983
|
-
|
5984
|
-
|
6148
|
+
.sd-progress-buttons__list .sd-progress-buttons__list-element--current:after {
|
6149
|
+
border-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6150
|
+
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
5985
6151
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
6152
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6153
|
+
margin: 0;
|
5986
6154
|
}
|
5987
6155
|
|
5988
6156
|
.sd-progress-buttons__page-title {
|
5989
|
-
|
5990
|
-
|
6157
|
+
display: flex;
|
6158
|
+
justify-content: center;
|
6159
|
+
align-items: center;
|
6160
|
+
font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
|
5991
6161
|
font-weight: 600;
|
5992
|
-
line-height:
|
6162
|
+
line-height: var(--sjs-font-size, 16px);
|
6163
|
+
flex-grow: 1;
|
6164
|
+
text-align: center;
|
6165
|
+
padding: 0 calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6166
|
+
margin-bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5993
6167
|
}
|
5994
6168
|
|
5995
|
-
.sd-progress-buttons__page-
|
6169
|
+
.sd-progress-buttons__header .sd-progress-buttons__page-title {
|
6170
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
6171
|
+
}
|
6172
|
+
|
6173
|
+
.sd-progress-buttons__footer .sd-progress-buttons__page-title {
|
6174
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
6175
|
+
margin-bottom: 0;
|
6176
|
+
justify-content: flex-end;
|
6177
|
+
padding: 0;
|
6178
|
+
color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
6179
|
+
}
|
6180
|
+
|
6181
|
+
.sd-progress-buttons--bottom {
|
6182
|
+
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))));
|
6183
|
+
flex-direction: column-reverse;
|
6184
|
+
}
|
6185
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__list li {
|
6186
|
+
flex-direction: column-reverse;
|
6187
|
+
}
|
6188
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6189
|
+
top: calc(0.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6190
|
+
}
|
6191
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__page-title {
|
6192
|
+
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6193
|
+
margin-bottom: 0;
|
6194
|
+
}
|
6195
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__header .sd-progress-buttons__page-title {
|
6196
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
6197
|
+
margin-bottom: 0;
|
6198
|
+
}
|
6199
|
+
.sd-progress-buttons--bottom .sd-progress-buttons__footer .sd-progress-buttons__page-title {
|
6200
|
+
margin-top: 0;
|
6201
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
6202
|
+
}
|
6203
|
+
|
6204
|
+
.sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6205
|
+
bottom: calc(1.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6206
|
+
}
|
6207
|
+
.sd-progress-buttons--numbered .sd-progress-buttons__list li:after {
|
6208
|
+
width: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6209
|
+
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6210
|
+
}
|
6211
|
+
|
6212
|
+
.sd-root-modern--mobile .sd-progress-buttons__list,
|
6213
|
+
.sd-progress-buttons--no-titles .sd-progress-buttons__list {
|
6214
|
+
justify-content: space-between;
|
5996
6215
|
width: 100%;
|
5997
|
-
|
5998
|
-
|
5999
|
-
|
6000
|
-
|
6216
|
+
}
|
6217
|
+
.sd-root-modern--mobile .sd-progress-buttons__list li,
|
6218
|
+
.sd-progress-buttons--no-titles .sd-progress-buttons__list li {
|
6219
|
+
flex-grow: 0;
|
6220
|
+
}
|
6221
|
+
|
6222
|
+
.sd-progress-buttons--bottom.sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
|
6223
|
+
top: calc(1.875 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6224
|
+
}
|
6225
|
+
|
6226
|
+
.sd-root-modern--mobile .sd-progress-buttons {
|
6227
|
+
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6001
6228
|
}
|
6002
6229
|
|
6003
6230
|
.sv_progress-toc {
|
@@ -6482,7 +6709,7 @@ sv-components-container,
|
|
6482
6709
|
margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
6483
6710
|
}
|
6484
6711
|
.sd-root-modern.sd-root-modern--mobile .sd-matrix__label {
|
6485
|
-
justify-content: start;
|
6712
|
+
justify-content: flex-start;
|
6486
6713
|
}
|
6487
6714
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell {
|
6488
6715
|
border-top: none;
|
@@ -6687,6 +6914,13 @@ body {
|
|
6687
6914
|
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6688
6915
|
}
|
6689
6916
|
|
6917
|
+
.sd-root-modern--animation-disabled * {
|
6918
|
+
-webkit-transition: none !important;
|
6919
|
+
-moz-transition: none !important;
|
6920
|
+
-o-transition: none !important;
|
6921
|
+
transition: none !important;
|
6922
|
+
}
|
6923
|
+
|
6690
6924
|
.sd-root-modern.sd-root-modern--full-container {
|
6691
6925
|
width: 100%;
|
6692
6926
|
height: 100%;
|