survey-react 1.9.127 → 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 CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.9.127
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, .sv_window_button:hover svg path, .sv_window_button:active svg use, .sv_window_button:active svg path {
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, .sv_window_button svg path {
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%;
@@ -2176,6 +2222,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2176
2222
  border-radius: var(--sjs-editorpanel-cornerRadius, var(--sjs-corner-radius, 4px));
2177
2223
  text-align: start;
2178
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);
2179
2226
  }
2180
2227
 
2181
2228
  .sd-input:focus {
@@ -2456,6 +2503,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
2456
2503
  }
2457
2504
  .sd-checkbox__svg use {
2458
2505
  fill: transparent;
2506
+ transition: fill var(--sjs-transition-duration, 150ms);
2459
2507
  }
2460
2508
 
2461
2509
  .sd-checkbox--checked .sd-checkbox__svg use {
@@ -2624,29 +2672,29 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
2624
2672
  .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:last-of-type > .sd-table__cell {
2625
2673
  border-bottom: var(--sjs-base-unit, var(--base-unit, 8px)) solid transparent;
2626
2674
  }
2627
- .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),
2628
2676
  .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
2629
2677
  border-top-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
2630
2678
  border-bottom-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
2631
2679
  background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
2632
2680
  }
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,
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,
2634
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 {
2635
2683
  background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
2636
2684
  }
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,
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,
2638
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 {
2639
2687
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
2640
2688
  }
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,
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,
2642
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 {
2643
2691
  background-color: var(--sjs-general-backcolor, var(--background, #fff));
2644
2692
  }
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,
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,
2646
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 {
2647
2695
  background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
2648
2696
  }
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,
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,
2650
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 {
2651
2699
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
2652
2700
  }
@@ -2663,6 +2711,9 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
2663
2711
  .sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
2664
2712
  min-width: calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px))));
2665
2713
  }
2714
+ .sd-table__cell .sd-item {
2715
+ text-align: initial;
2716
+ }
2666
2717
 
2667
2718
  .sd-table__cell--error {
2668
2719
  border: none;
@@ -2773,6 +2824,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
2773
2824
  background: transparent;
2774
2825
  border-radius: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
2775
2826
  padding: var(--sjs-base-unit, var(--base-unit, 8px));
2827
+ transition: background var(--sjs-transition-duration, 150ms);
2776
2828
  }
2777
2829
  .sd-table__cell--detail-button svg {
2778
2830
  --sjs-internal-font-editorfont-size: var(--sjs-mobile-font-editorfont-size, var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px)));
@@ -2780,6 +2832,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
2780
2832
  width: var(--sjs-internal-font-editorfont-size);
2781
2833
  height: var(--sjs-internal-font-editorfont-size);
2782
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);
2783
2836
  }
2784
2837
  .sd-table__cell--detail-button:hover, .sd-table__cell--detail-button:focus {
2785
2838
  background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
@@ -3185,6 +3238,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3185
3238
  flex-shrink: 0;
3186
3239
  margin-top: calc((1.5 * (var(--sjs-internal-font-editorfont-size)) - 3 * (var(--sjs-base-unit, var(--base-unit, 8px)))) / 2);
3187
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);
3188
3242
  }
3189
3243
 
3190
3244
  .sd-item--checked .sd-item__decorator {
@@ -3290,6 +3344,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3290
3344
  }
3291
3345
  .sd-checkbox__svg use {
3292
3346
  fill: transparent;
3347
+ transition: fill var(--sjs-transition-duration, 150ms);
3293
3348
  }
3294
3349
 
3295
3350
  .sd-checkbox--checked .sd-checkbox__svg use {
@@ -3314,6 +3369,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3314
3369
  height: var(--sjs-base-unit, var(--base-unit, 8px));
3315
3370
  border-radius: 50%;
3316
3371
  background-color: transparent;
3372
+ transition: background-color var(--sjs-transition-duration, 150ms);
3317
3373
  }
3318
3374
 
3319
3375
  .sd-radio--checked .sd-radio__decorator:after {
@@ -3466,7 +3522,6 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3466
3522
  .sd-rating__item {
3467
3523
  position: relative;
3468
3524
  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
3525
  border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3471
3526
  white-space: nowrap;
3472
3527
  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 +3532,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
3477
3532
  box-sizing: border-box;
3478
3533
  min-width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3479
3534
  text-align: center;
3480
- border: none;
3535
+ border: 0px solid transparent;
3481
3536
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
3482
3537
  fill: var(--sjs-general-forecolor, var(--foreground, #161616));
3483
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);
3484
3541
  }
3485
3542
 
3486
3543
  .sd-rating__item--fixed-size {
@@ -3533,7 +3590,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
3533
3590
  }
3534
3591
 
3535
3592
  .sd-rating__item--selected:focus-within {
3536
- 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));
3537
3594
  }
3538
3595
 
3539
3596
  .sd-rating__item-smiley {
@@ -3547,6 +3604,8 @@ legend + sv-ng-rating-item + .sd-rating__item {
3547
3604
  border: 2px solid var(--sjs-border-default, var(--border, #d6d6d6));
3548
3605
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
3549
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);
3550
3609
  }
3551
3610
  .sd-rating__item-smiley svg {
3552
3611
  display: block;
@@ -3573,6 +3632,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3573
3632
  margin-inline-start: 2px;
3574
3633
  }
3575
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
+
3576
3639
  .sd-rating__item-smiley--error {
3577
3640
  background-color: var(--sjs-special-red-light, var(--red-light, rgba(230, 10, 62, 0.1)));
3578
3641
  border-color: transparent;
@@ -3608,7 +3671,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3608
3671
  }
3609
3672
 
3610
3673
  .sd-rating__item-smiley--selected:focus-within {
3611
- 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));
3612
3675
  }
3613
3676
 
3614
3677
  .sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected) {
@@ -3641,13 +3704,18 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3641
3704
  }
3642
3705
  .sd-rating__item-star svg {
3643
3706
  stroke: var(--sjs-border-default, var(--border, #d6d6d6));
3644
- fill: none;
3707
+ fill: transparent;
3645
3708
  width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3646
3709
  height: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
3647
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;
3648
3716
  }
3649
3717
  .sd-rating__item-star .sv-star-2 {
3650
- display: none;
3718
+ opacity: 0;
3651
3719
  }
3652
3720
 
3653
3721
  .sd-rating__item-star--small {
@@ -3660,7 +3728,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3660
3728
  }
3661
3729
 
3662
3730
  .sd-rating__item-star--selected svg {
3663
- stroke: none;
3731
+ stroke: transparent;
3664
3732
  fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
3665
3733
  }
3666
3734
 
@@ -3684,11 +3752,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3684
3752
 
3685
3753
  .sd-rating__item-star:focus-within svg {
3686
3754
  stroke: var(--sjs-primary-backcolor, var(--primary, #19b394));
3687
- fill: none;
3755
+ fill: transparent;
3688
3756
  }
3689
3757
 
3690
3758
  .sd-rating__item-star--unhighlighted svg {
3691
- stroke: none;
3759
+ stroke: transparent;
3692
3760
  fill: var(--sjs-border-default, var(--border, #d6d6d6));
3693
3761
  }
3694
3762
 
@@ -3707,10 +3775,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3707
3775
  fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
3708
3776
  }
3709
3777
  .sd-rating__item-star--selected:focus-within .sv-star {
3710
- display: none;
3778
+ opacity: 0;
3711
3779
  }
3712
3780
  .sd-rating__item-star--selected:focus-within .sv-star-2 {
3713
- display: block;
3781
+ opacity: 1;
3714
3782
  }
3715
3783
 
3716
3784
  .sd-rating__item-text.sd-rating__item-text {
@@ -3723,6 +3791,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3723
3791
  display: inline-block;
3724
3792
  border: 2px solid transparent;
3725
3793
  box-sizing: border-box;
3794
+ transition: color var(--sjs-transition-duration, 150ms);
3726
3795
  }
3727
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 {
3728
3797
  margin-top: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
@@ -3960,7 +4029,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3960
4029
  }
3961
4030
 
3962
4031
  .sd-input.sd-dropdown:focus-within {
3963
- 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));
3964
4033
  }
3965
4034
 
3966
4035
  .sd-input.sd-dropdown:focus-within .sd-dropdown__filter-string-input {
@@ -4061,7 +4130,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4061
4130
  }
4062
4131
 
4063
4132
  .sd-input.sd-tagbox:focus-within {
4064
- 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));
4065
4134
  }
4066
4135
 
4067
4136
  .sv-tagbox__item {
@@ -4083,17 +4152,19 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4083
4152
  .sv-tagbox__item:hover .sd-tagbox-item_clean-button,
4084
4153
  .sv-tagbox__item:focus .sd-tagbox-item_clean-button,
4085
4154
  .sv-tagbox__item:focus-within .sd-tagbox-item_clean-button {
4086
- display: flex;
4087
4155
  align-self: center;
4156
+ opacity: 1;
4088
4157
  }
4089
4158
 
4090
4159
  .sd-tagbox-item_clean-button {
4091
- display: none;
4160
+ display: flex;
4092
4161
  position: absolute;
4093
4162
  inset-inline-end: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4094
4163
  padding: 0;
4095
4164
  padding-inline-start: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4096
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);
4097
4168
  }
4098
4169
 
4099
4170
  .sd-tagbox-item_clean-button-svg {
@@ -4227,7 +4298,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4227
4298
  }
4228
4299
 
4229
4300
  .sd-imagepicker__check-decorator {
4230
- display: none;
4301
+ display: block;
4302
+ opacity: 0;
4231
4303
  position: absolute;
4232
4304
  top: var(--sjs-base-unit, var(--base-unit, 8px));
4233
4305
  right: var(--sjs-base-unit, var(--base-unit, 8px));
@@ -4236,6 +4308,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4236
4308
  border-radius: 100%;
4237
4309
  background-color: var(--sjs-general-backcolor, var(--background, #fff));
4238
4310
  z-index: 1;
4311
+ transition: opacity var(--sjs-transition-duration, 150ms);
4239
4312
  }
4240
4313
 
4241
4314
  .sd-imagepicker__check-icon {
@@ -4247,7 +4320,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4247
4320
  }
4248
4321
 
4249
4322
  .sd-imagepicker__item--checked .sd-imagepicker__check-decorator {
4250
- display: block;
4323
+ opacity: 1;
4251
4324
  }
4252
4325
 
4253
4326
  .sd-imagepicker__item--error .sd-imagepicker__image-container::before {
@@ -4272,6 +4345,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4272
4345
  display: block;
4273
4346
  box-sizing: border-box;
4274
4347
  max-width: 100%;
4348
+ transition: opacity var(--sjs-transition-duration, 150ms);
4275
4349
  }
4276
4350
 
4277
4351
  .sd-imagepicker__text {
@@ -4337,6 +4411,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4337
4411
  fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
4338
4412
  }
4339
4413
 
4414
+ :root {
4415
+ --sjs-transition-duration: 150ms;
4416
+ }
4417
+
4340
4418
  .sd-html {
4341
4419
  white-space: initial;
4342
4420
  }
@@ -4434,7 +4512,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4434
4512
  vertical-align: baseline;
4435
4513
  text-align: center;
4436
4514
  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
4515
  border: none;
4439
4516
  border-radius: var(--sjs-corner-radius, 4px);
4440
4517
  cursor: pointer;
@@ -4446,12 +4523,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4446
4523
  font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
4447
4524
  font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
4448
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);
4449
4528
  }
4450
4529
  .sd-html button:hover {
4451
4530
  background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
4452
4531
  }
4453
4532
  .sd-html button:focus {
4454
- 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));
4455
4534
  }
4456
4535
  .sd-html button span {
4457
4536
  display: flex;
@@ -4522,10 +4601,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4522
4601
  padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4523
4602
  background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
4524
4603
  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));
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);
4526
4606
  }
4527
4607
  .sd-boolean.sd-boolean--allowhover:focus-within {
4528
- 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));
4529
4609
  }
4530
4610
 
4531
4611
  .sd-boolean__thumb,
@@ -4600,11 +4680,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4600
4680
 
4601
4681
  .sd-boolean__thumb-ghost {
4602
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);
4603
4686
  }
4604
4687
 
4605
4688
  .sd-boolean.sd-boolean--allowhover .sd-boolean__thumb-ghost:hover {
4606
4689
  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
4690
  }
4609
4691
 
4610
4692
  .sd-boolean--error {
@@ -4734,6 +4816,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4734
4816
  padding-bottom: var(--sd-base-padding);
4735
4817
  }
4736
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
+
4737
4823
  .sd-paneldynamic__buttons-container .sd-action-bar {
4738
4824
  width: 100%;
4739
4825
  margin: 0 calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
@@ -4793,6 +4879,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4793
4879
  color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
4794
4880
  overflow-x: hidden;
4795
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);
4796
4884
  }
4797
4885
  .sd-tab-item:hover, .sd-tab-item:focus-visible {
4798
4886
  outline: none;
@@ -4859,6 +4947,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4859
4947
  padding-bottom: 0;
4860
4948
  }
4861
4949
 
4950
+ :root {
4951
+ --sjs-transition-duration: 150ms;
4952
+ }
4953
+
4862
4954
  .sd-file {
4863
4955
  position: relative;
4864
4956
  font-size: var(--sjs-font-size, 16px);
@@ -5038,11 +5130,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5038
5130
  .sd-file__preview img:hover + .sd-file__remove-file-button,
5039
5131
  .sd-file__preview svg:hover + .sd-file__remove-file-button,
5040
5132
  .sd-file__preview .sd-file__remove-file-button:hover {
5041
- display: block;
5042
- position: absolute;
5043
- left: 50%;
5044
- top: 50%;
5045
- transform: translate(-50%, -50%);
5133
+ opacity: 1;
5046
5134
  }
5047
5135
 
5048
5136
  .sd-file__sign {
@@ -5070,7 +5158,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5070
5158
  }
5071
5159
 
5072
5160
  .sd-file__remove-file-button {
5073
- display: none;
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);
5074
5168
  }
5075
5169
 
5076
5170
  .sd-file__decorator--error {
@@ -5248,13 +5342,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5248
5342
  display: none;
5249
5343
  }
5250
5344
 
5345
+ :root {
5346
+ --sjs-transition-duration: 150ms;
5347
+ }
5348
+
5251
5349
  .sd-btn {
5252
5350
  appearance: none;
5253
5351
  -webkit-appearance: none;
5254
5352
  -moz-appearance: none;
5255
5353
  padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
5256
5354
  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
5355
  border-radius: var(--sjs-corner-radius, 4px);
5259
5356
  cursor: pointer;
5260
5357
  font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
@@ -5266,6 +5363,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5266
5363
  color: var(--sjs-primary-backcolor, var(--primary, #19b394));
5267
5364
  border: none;
5268
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);
5269
5368
  }
5270
5369
 
5271
5370
  .sd-btn--small {
@@ -5278,7 +5377,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5278
5377
  }
5279
5378
 
5280
5379
  .sd-btn:focus-visible {
5281
- 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));
5282
5381
  }
5283
5382
 
5284
5383
  .sd-btn:disabled {
@@ -5317,6 +5416,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5317
5416
  pointer-events: none;
5318
5417
  }
5319
5418
 
5419
+ :root {
5420
+ --sjs-transition-duration: 150ms;
5421
+ }
5422
+
5320
5423
  .sd-body {
5321
5424
  width: 100%;
5322
5425
  box-sizing: border-box;
@@ -5507,7 +5610,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5507
5610
  vertical-align: baseline;
5508
5611
  text-align: center;
5509
5612
  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
5613
  border: none;
5512
5614
  border-radius: var(--sjs-corner-radius, 4px);
5513
5615
  cursor: pointer;
@@ -5519,6 +5621,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5519
5621
  font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
5520
5622
  font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
5521
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);
5522
5626
  }
5523
5627
  .sd-body--empty button:hover,
5524
5628
  .sd-body--loading button:hover {
@@ -5526,7 +5630,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5526
5630
  }
5527
5631
  .sd-body--empty button:focus,
5528
5632
  .sd-body--loading button:focus {
5529
- 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));
5530
5634
  }
5531
5635
  .sd-body--empty button span,
5532
5636
  .sd-body--loading button span {
@@ -5545,6 +5649,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5545
5649
  right: 0;
5546
5650
  }
5547
5651
 
5652
+ :root {
5653
+ --sjs-transition-duration: 150ms;
5654
+ }
5655
+
5548
5656
  .sd-multipletext {
5549
5657
  width: 100%;
5550
5658
  table-layout: fixed;
@@ -5561,7 +5669,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5561
5669
  }
5562
5670
 
5563
5671
  .sd-multipletext__item-container.sd-input:focus-within {
5564
- 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));
5565
5673
  }
5566
5674
 
5567
5675
  .sd-multipletext__item-container {
@@ -5670,6 +5778,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5670
5778
  font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
5671
5779
  line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
5672
5780
  outline: none;
5781
+ transition: background-color var(--sjs-transition-duration, 150ms);
5673
5782
  }
5674
5783
 
5675
5784
  .sd-action--negative {
@@ -5692,6 +5801,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
5692
5801
  }
5693
5802
  .sd-action--icon use {
5694
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);
5695
5805
  }
5696
5806
 
5697
5807
  svg.sd-action--icon {
@@ -5772,6 +5882,7 @@ svg.sd-action--icon {
5772
5882
  }
5773
5883
  .sd-context-btn use {
5774
5884
  fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
5885
+ transition: fill var(--sjs-transition-duration, 150ms);
5775
5886
  }
5776
5887
 
5777
5888
  .sd-context-btn:hover use,
@@ -5787,6 +5898,10 @@ svg.sd-action--icon {
5787
5898
  opacity: 0.25;
5788
5899
  }
5789
5900
 
5901
+ :root {
5902
+ --sjs-transition-duration: 150ms;
5903
+ }
5904
+
5790
5905
  .sd-completedpage,
5791
5906
  .sd-completed-before-page {
5792
5907
  align-items: center;
@@ -5899,7 +6014,6 @@ svg.sd-action--icon {
5899
6014
  vertical-align: baseline;
5900
6015
  text-align: center;
5901
6016
  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
6017
  border: none;
5904
6018
  border-radius: var(--sjs-corner-radius, 4px);
5905
6019
  cursor: pointer;
@@ -5911,6 +6025,8 @@ svg.sd-action--icon {
5911
6025
  font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
5912
6026
  font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
5913
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);
5914
6030
  }
5915
6031
  .sd-completedpage button:hover,
5916
6032
  .sd-completed-before-page button:hover {
@@ -5918,7 +6034,7 @@ svg.sd-action--icon {
5918
6034
  }
5919
6035
  .sd-completedpage button:focus,
5920
6036
  .sd-completed-before-page button:focus {
5921
- 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));
5922
6038
  }
5923
6039
  .sd-completedpage button span,
5924
6040
  .sd-completed-before-page button span {
@@ -5956,53 +6072,159 @@ svg.sd-action--icon {
5956
6072
  visibility: hidden;
5957
6073
  }
5958
6074
 
5959
- .sd-progress-buttons__list {
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))));
5960
6081
  display: flex;
5961
- list-style-type: none;
5962
- margin: 0;
5963
- padding: 0;
6082
+ flex-direction: column;
6083
+ }
6084
+
6085
+ .sd-progress-buttons__list-container {
6086
+ display: flex;
6087
+ overflow: hidden;
5964
6088
  }
5965
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
+ }
5966
6101
  .sd-progress-buttons__list li {
5967
- text-align: center;
6102
+ display: flex;
5968
6103
  flex-grow: 1;
5969
- text-decoration: none;
5970
- border-top: 2px solid var(--sjs-border-light, var(--border-light, #eaeaea));
5971
- padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
5972
- padding-bottom: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
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%;
5973
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));
5974
6138
  }
5975
- .sd-progress-buttons__list li:hover .sd-progress-buttons__page-title {
5976
- text-decoration-line: underline;
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));
5977
6141
  }
5978
-
5979
- .sd-progress-buttons__list .sd-progress-buttons__list-element--current,
5980
- .sd-progress-buttons__list .sd-progress-buttons__list-element--passed {
5981
- 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));
5982
6144
  }
5983
-
5984
- .sd-progress-buttons__list-element--nonclickable .sd-progress-buttons__page-title {
5985
- 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));
5986
6147
  }
5987
-
5988
- .sd-progress-buttons__list-element--current .sd-progress-buttons__page-title,
5989
- .sd-progress-buttons__list-element--current .sd-progress-buttons__page-description {
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));
5990
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;
5991
6154
  }
5992
6155
 
5993
6156
  .sd-progress-buttons__page-title {
5994
- width: 100%;
5995
- font-size: var(--sjs-font-size, 16px);
6157
+ display: flex;
6158
+ justify-content: center;
6159
+ align-items: center;
6160
+ font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
5996
6161
  font-weight: 600;
5997
- line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
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))));
5998
6167
  }
5999
6168
 
6000
- .sd-progress-buttons__page-description {
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;
6001
6215
  width: 100%;
6002
- font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
6003
- line-height: var(--sjs-font-size, 16px);
6004
- font-weight: 600;
6005
- color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
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))));
6006
6228
  }
6007
6229
 
6008
6230
  .sv_progress-toc {
@@ -6487,7 +6709,7 @@ sv-components-container,
6487
6709
  margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
6488
6710
  }
6489
6711
  .sd-root-modern.sd-root-modern--mobile .sd-matrix__label {
6490
- justify-content: start;
6712
+ justify-content: flex-start;
6491
6713
  }
6492
6714
  .sd-root-modern.sd-root-modern--mobile .sd-table__cell {
6493
6715
  border-top: none;
@@ -6692,6 +6914,13 @@ body {
6692
6914
  background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
6693
6915
  }
6694
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
+
6695
6924
  .sd-root-modern.sd-root-modern--full-container {
6696
6925
  width: 100%;
6697
6926
  height: 100%;