survey-react 1.9.105 → 1.9.107

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.105
2
+ * surveyjs - Survey JavaScript library v1.9.107
3
3
  * Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -1086,6 +1086,13 @@ sv-popup {
1086
1086
  height: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
1087
1087
  }
1088
1088
 
1089
+ .sv-ranking-item--disabled.sv-ranking-item--disabled {
1090
+ cursor: initial;
1091
+ }
1092
+ .sv-ranking-item--disabled.sv-ranking-item--disabled .sv-ranking-item__icon-container.sv-ranking-item__icon-container .sv-ranking-item__icon.sv-ranking-item__icon {
1093
+ visibility: hidden;
1094
+ }
1095
+
1089
1096
  .sv-ranking-item__icon.sv-ranking-item__icon {
1090
1097
  visibility: hidden;
1091
1098
  fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
@@ -2043,6 +2050,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2043
2050
  outline: none;
2044
2051
  }
2045
2052
 
2053
+ input.sd-input:disabled:not(.sd-input--disabled),
2054
+ textarea.sd-input:disabled:not(.sd-input--disabled) {
2055
+ opacity: 1;
2056
+ }
2057
+
2046
2058
  .sd-input--disabled {
2047
2059
  background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
2048
2060
  -webkit-user-select: none;
@@ -2059,8 +2071,8 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2059
2071
  user-select: none;
2060
2072
  }
2061
2073
 
2062
- .sd-input--disabled,
2063
- .sd-input--disabled::placeholder {
2074
+ .sd-input.sd-input--disabled,
2075
+ .sd-input.sd-input--disabled::placeholder {
2064
2076
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
2065
2077
  opacity: 0.25;
2066
2078
  }
@@ -2362,6 +2374,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2362
2374
  background-clip: padding-box;
2363
2375
  }
2364
2376
 
2377
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table__cell:not(.sd-table__cell--actions):not(.sd-table__cell--action):not(.sd-table__cell--empty.sd-table__cell--error) {
2378
+ width: 10000px;
2379
+ }
2380
+
2365
2381
  .sd-table__row:first-of-type > .sd-table__cell {
2366
2382
  border-top: 0;
2367
2383
  }
@@ -2378,39 +2394,64 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2378
2394
  padding-top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2379
2395
  }
2380
2396
 
2381
- .sd-table--alternate-rows {
2397
+ .sd-panel__content .sd-table--no-header {
2398
+ padding-top: 0;
2399
+ }
2400
+ .sd-panel__content .sd-question--table .sd-question__content {
2401
+ padding-top: calc(0 * var(--sjs-base-unit, var(--base-unit, 8px)));
2402
+ }
2403
+ .sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content {
2404
+ padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2405
+ }
2406
+ .sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content .sd-table--no-header {
2407
+ padding-top: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
2408
+ }
2409
+ .sd-panel__content .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
2410
+ margin-top: calc(-3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2411
+ }
2412
+ .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
2413
+ margin-top: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2414
+ }
2415
+ .sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
2416
+ margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2417
+ }
2418
+ .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__header + .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
2419
+ margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2420
+ }
2421
+
2422
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows {
2382
2423
  margin-left: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2383
2424
  margin-right: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2384
2425
  width: calc(100% - 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2385
2426
  }
2386
- .sd-table--alternate-rows .sd-table__cell:not(.sd-table__cell--header):first-of-type {
2427
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__cell:not(.sd-table__cell--header):first-of-type {
2387
2428
  padding-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2388
2429
  }
2389
- .sd-table--alternate-rows .sd-table__cell:last-of-type {
2430
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__cell:last-of-type {
2390
2431
  padding-right: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2391
2432
  }
2392
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td,
2393
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
2433
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td,
2434
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
2394
2435
  background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
2395
2436
  }
2396
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-matrix__text--checked,
2397
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type.sd-matrix__text--checked {
2437
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-matrix__text--checked,
2438
+ .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 {
2398
2439
  background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
2399
2440
  }
2400
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-input,
2401
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
2441
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-input,
2442
+ .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 {
2402
2443
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
2403
2444
  }
2404
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error) .sd-item__decorator,
2405
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error) .sd-item__decorator {
2445
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error) .sd-item__decorator,
2446
+ .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 {
2406
2447
  background-color: var(--sjs-general-backcolor, var(--background, #fff));
2407
2448
  }
2408
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator,
2409
- .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 {
2449
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator,
2450
+ .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 {
2410
2451
  background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
2411
2452
  }
2412
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error).sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after,
2413
- .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 {
2453
+ .sd-root-modern:not(.sd-root-modern--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error).sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after,
2454
+ .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 {
2414
2455
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
2415
2456
  }
2416
2457
 
@@ -2423,7 +2464,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2423
2464
  text-align: center;
2424
2465
  }
2425
2466
  .sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
2426
- min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2467
+ min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
2427
2468
  }
2428
2469
 
2429
2470
  .sd-table__cell--error {
@@ -2477,30 +2518,26 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2477
2518
  padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2478
2519
  }
2479
2520
  .sd-table__cell--header:not(.sd-table__cell--empty) {
2480
- min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2521
+ min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
2481
2522
  }
2482
2523
 
2483
2524
  .sd-matrixdropdown .sd-table__cell--header.sd-table__cell--empty {
2484
- min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2485
- width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2525
+ min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
2486
2526
  }
2487
2527
 
2488
2528
  .sd-matrixdropdown .sd-table__cell--header.sd-table__cell--action {
2489
- min-width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2490
- width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2529
+ min-width: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2530
+ width: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2491
2531
  }
2492
2532
 
2493
2533
  .sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty) {
2494
- min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2495
- width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2534
+ min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
2496
2535
  }
2497
2536
  .sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--dropdown, .sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--rating {
2498
2537
  min-width: calc(22 * var(--sjs-base-unit, var(--base-unit, 8px)));
2499
- width: calc(22 * var(--sjs-base-unit, var(--base-unit, 8px)));
2500
2538
  }
2501
2539
  .sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--boolean {
2502
2540
  min-width: calc(18 * var(--sjs-base-unit, var(--base-unit, 8px)));
2503
- width: calc(18 * var(--sjs-base-unit, var(--base-unit, 8px)));
2504
2541
  }
2505
2542
 
2506
2543
  .sd-table__cell--detail-panel {
@@ -2519,6 +2556,8 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2519
2556
  }
2520
2557
  .sd-table__cell--actions:not(.sd-table__cell--vertical):not(.sd-table__cell--drag):first-of-type {
2521
2558
  padding-left: 0;
2559
+ width: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
2560
+ min-width: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
2522
2561
  }
2523
2562
 
2524
2563
  .sd-table__cell--detail-button {
@@ -2640,9 +2679,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2640
2679
  padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2641
2680
  min-width: min-content;
2642
2681
  }
2643
- .sd-question--table.sd-element--nested > .sd-question__header--location-top {
2644
- margin-top: calc(-0.25 * var(--sd-base-vertical-padding));
2645
- }
2646
2682
  .sd-question--table.sd-element--nested > .sd-question__erbox--above-question {
2647
2683
  margin-bottom: var(--sd-base-vertical-padding);
2648
2684
  }
@@ -2650,6 +2686,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2650
2686
  min-width: auto;
2651
2687
  overflow-x: auto;
2652
2688
  }
2689
+ .sd-question--table.sd-element--nested > .sd-question__content {
2690
+ padding-bottom: calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px)));
2691
+ margin-bottom: calc(-0.25 * var(--sjs-base-unit, var(--base-unit, 8px)));
2692
+ padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2693
+ margin-top: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2694
+ }
2653
2695
  .sd-question--table.sd-element--nested > .sd-question__content, .sd-question--table:not(.sd-element--with-frame):not(.sd-element--nested) {
2654
2696
  padding-right: var(--sd-base-padding);
2655
2697
  margin-right: calc(-1 * var(--sd-base-padding));
@@ -2662,10 +2704,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2662
2704
  overflow-x: scroll;
2663
2705
  }
2664
2706
 
2665
- .sd-matrixdropdown.sd-table {
2666
- table-layout: fixed;
2667
- }
2668
-
2669
2707
  .sd-table__cell--detail-panel .sd-panel__content {
2670
2708
  padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2671
2709
  }
@@ -2741,30 +2779,37 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2741
2779
  }
2742
2780
 
2743
2781
  .sd-row--multiple {
2744
- row-gap: var(--sd-base-vertical-padding);
2782
+ row-gap: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2745
2783
  margin-left: calc(-1 * var(--sd-base-padding));
2746
2784
  width: calc(100% + var(--sd-base-padding));
2747
2785
  flex-wrap: wrap;
2748
2786
  }
2749
2787
  .sd-row--multiple > div {
2750
2788
  box-sizing: border-box;
2789
+ padding-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2790
+ display: flex;
2791
+ align-items: stretch;
2792
+ }
2793
+
2794
+ .sd-panel .sd-row--multiple {
2795
+ row-gap: var(--sd-base-vertical-padding);
2796
+ }
2797
+ .sd-panel .sd-row--multiple > div {
2751
2798
  padding-left: var(--sd-base-padding);
2752
2799
  }
2753
2800
 
2754
- .sd-page__row.sd-row--multiple {
2755
- padding: var(--sd-base-padding) var(--sd-base-padding) var(--sd-base-padding) 0;
2756
- margin-left: 0;
2757
- width: 100%;
2801
+ .sd-row--multiple.sd-row--compact > div {
2802
+ padding-left: var(--sd-base-padding);
2758
2803
  }
2759
- .sd-page__row.sd-row--multiple:not(.sd-row--compact) {
2760
- background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
2761
- box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
2762
- border-radius: calc(1 * var(--sjs-corner-radius, 4px));
2804
+
2805
+ .sd-page__row.sd-row--multiple {
2806
+ margin-left: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2807
+ width: calc(100% + 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2763
2808
  }
2764
2809
  .sd-page__row.sd-row--multiple.sd-row--compact {
2765
2810
  padding: 0;
2766
- width: calc(100% + var(--sd-base-padding));
2767
2811
  margin-left: calc(-1 * var(--sd-base-padding));
2812
+ width: calc(100% + var(--sd-base-padding));
2768
2813
  }
2769
2814
 
2770
2815
  .sd-row__panel {
@@ -3883,7 +3928,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3883
3928
  }
3884
3929
 
3885
3930
  .sd-html h1 {
3886
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
3931
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
3887
3932
  font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
3888
3933
  text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
3889
3934
  font-family: var(--font-family);
@@ -3896,7 +3941,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3896
3941
  text-transform: var(--sjs-article-font-xx-large-textCase, "none");
3897
3942
  }
3898
3943
  .sd-html h2 {
3899
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
3944
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
3900
3945
  font-size: var(--sjs-article-font-x-large-fontSize, 48px);
3901
3946
  text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
3902
3947
  font-family: var(--font-family);
@@ -3909,7 +3954,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3909
3954
  text-transform: var(--sjs-article-font-x-large-textCase, "none");
3910
3955
  }
3911
3956
  .sd-html h3 {
3912
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
3957
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
3913
3958
  font-size: var(--sjs-article-font-large-fontSize, 32px);
3914
3959
  text-decoration: var(--sjs-article-font-large-textDecoration, "none");
3915
3960
  font-family: var(--font-family);
@@ -3921,8 +3966,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3921
3966
  text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
3922
3967
  text-transform: var(--sjs-article-font-large-textCase, "none");
3923
3968
  }
3924
- .sd-html h4 {
3925
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
3969
+ .sd-html h4,
3970
+ .sd-html h5,
3971
+ .sd-html h6 {
3972
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
3926
3973
  font-size: var(--sjs-article-font-medium-fontSize, 24px);
3927
3974
  text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
3928
3975
  font-family: var(--font-family);
@@ -3934,14 +3981,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3934
3981
  text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
3935
3982
  text-transform: var(--sjs-article-font-medium-textCase, "none");
3936
3983
  }
3937
- .sd-html h5,
3938
- .sd-html h6 {
3939
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
3940
- }
3984
+ .sd-html td,
3941
3985
  .sd-html span,
3942
3986
  .sd-html div,
3943
3987
  .sd-html p {
3944
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
3988
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
3945
3989
  font-size: var(--sjs-article-font-default-fontSize, 16px);
3946
3990
  text-decoration: var(--sjs-article-font-default-textDecoration, "none");
3947
3991
  font-family: var(--font-family);
@@ -4027,6 +4071,17 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4027
4071
  }
4028
4072
  }
4029
4073
 
4074
+ .sd-body__progress--top {
4075
+ margin-bottom: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4076
+ position: sticky;
4077
+ top: 0;
4078
+ z-index: 50;
4079
+ }
4080
+
4081
+ .sd-body__progress--bottom .sd-progress__text {
4082
+ margin-top: calc(-3.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
4083
+ }
4084
+
4030
4085
  .sd-boolean {
4031
4086
  display: flex;
4032
4087
  width: max-content;
@@ -4422,6 +4477,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4422
4477
  line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
4423
4478
  }
4424
4479
 
4480
+ .sd-root-modern--mobile .sd-file__drag-area-placeholder {
4481
+ padding: 0 calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4482
+ }
4483
+
4425
4484
  .sd-file__choose-btn--text {
4426
4485
  display: block;
4427
4486
  margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -4430,6 +4489,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4430
4489
  cursor: pointer;
4431
4490
  }
4432
4491
 
4492
+ .sd-file__wrapper {
4493
+ width: max-content;
4494
+ }
4495
+
4433
4496
  .sd-question--answered .sd-file__drag-area-placeholder {
4434
4497
  display: none;
4435
4498
  }
@@ -4681,7 +4744,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4681
4744
  width: 100%;
4682
4745
  }
4683
4746
  .sd-body .sd-body__page {
4684
- min-width: calc(300px + 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
4747
+ min-width: 300px;
4685
4748
  }
4686
4749
  .sd-body .sd-body__timer {
4687
4750
  padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
@@ -4752,16 +4815,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4752
4815
  gap: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
4753
4816
  }
4754
4817
 
4755
- .sd-body__progress {
4756
- margin-bottom: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4757
- }
4758
-
4759
- .sd-body__progress--top {
4760
- position: sticky;
4761
- top: 0;
4762
- z-index: 50;
4763
- }
4764
-
4765
4818
  .sd-body--empty {
4766
4819
  min-height: 400px;
4767
4820
  text-align: center;
@@ -4769,6 +4822,127 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4769
4822
  box-sizing: border-box;
4770
4823
  }
4771
4824
 
4825
+ .sd-body--empty h1,
4826
+ .sd-body--loading h1 {
4827
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
4828
+ font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
4829
+ text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
4830
+ font-family: var(--font-family);
4831
+ font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
4832
+ font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
4833
+ font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
4834
+ letter-spacing: var(--sjs-article-font-xx-large-letterSpacing, 0);
4835
+ line-height: var(--sjs-article-font-xx-large-lineHeight, 64px);
4836
+ text-indent: var(--sjs-article-font-xx-large-paragraphIndent, 0px);
4837
+ text-transform: var(--sjs-article-font-xx-large-textCase, "none");
4838
+ }
4839
+ .sd-body--empty h2,
4840
+ .sd-body--loading h2 {
4841
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
4842
+ font-size: var(--sjs-article-font-x-large-fontSize, 48px);
4843
+ text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
4844
+ font-family: var(--font-family);
4845
+ font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
4846
+ font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
4847
+ font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
4848
+ letter-spacing: var(--sjs-article-font-x-large-letterSpacing, 0);
4849
+ line-height: var(--sjs-article-font-x-large-lineHeight, 56px);
4850
+ text-indent: var(--sjs-article-font-x-large-paragraphIndent, 0px);
4851
+ text-transform: var(--sjs-article-font-x-large-textCase, "none");
4852
+ }
4853
+ .sd-body--empty h3,
4854
+ .sd-body--loading h3 {
4855
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
4856
+ font-size: var(--sjs-article-font-large-fontSize, 32px);
4857
+ text-decoration: var(--sjs-article-font-large-textDecoration, "none");
4858
+ font-family: var(--font-family);
4859
+ font-weight: var(--sjs-article-font-large-fontWeight, 700);
4860
+ font-style: var(--sjs-article-font-large-fontStyle, "normal");
4861
+ font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
4862
+ letter-spacing: var(--sjs-article-font-large-letterSpacing, 0);
4863
+ line-height: var(--sjs-article-font-large-lineHeight, 40px);
4864
+ text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
4865
+ text-transform: var(--sjs-article-font-large-textCase, "none");
4866
+ }
4867
+ .sd-body--empty h4,
4868
+ .sd-body--empty h5,
4869
+ .sd-body--empty h6,
4870
+ .sd-body--loading h4,
4871
+ .sd-body--loading h5,
4872
+ .sd-body--loading h6 {
4873
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
4874
+ font-size: var(--sjs-article-font-medium-fontSize, 24px);
4875
+ text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
4876
+ font-family: var(--font-family);
4877
+ font-weight: var(--sjs-article-font-medium-fontWeight, 700);
4878
+ font-style: var(--sjs-article-font-medium-fontStyle, "normal");
4879
+ font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
4880
+ letter-spacing: var(--sjs-article-font-medium-letterSpacing, 0);
4881
+ line-height: var(--sjs-article-font-medium-lineHeight, 32px);
4882
+ text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
4883
+ text-transform: var(--sjs-article-font-medium-textCase, "none");
4884
+ }
4885
+ .sd-body--empty td,
4886
+ .sd-body--empty span,
4887
+ .sd-body--empty div,
4888
+ .sd-body--empty p,
4889
+ .sd-body--loading td,
4890
+ .sd-body--loading span,
4891
+ .sd-body--loading div,
4892
+ .sd-body--loading p {
4893
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
4894
+ font-size: var(--sjs-article-font-default-fontSize, 16px);
4895
+ text-decoration: var(--sjs-article-font-default-textDecoration, "none");
4896
+ font-family: var(--font-family);
4897
+ font-weight: var(--sjs-article-font-default-fontWeight, 400);
4898
+ font-style: var(--sjs-article-font-default-fontStyle, "normal");
4899
+ font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
4900
+ letter-spacing: var(--sjs-article-font-default-letterSpacing, 0);
4901
+ line-height: var(--sjs-article-font-default-lineHeight, 28px);
4902
+ text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
4903
+ text-transform: var(--sjs-article-font-default-textCase, "none");
4904
+ }
4905
+ .sd-body--empty a,
4906
+ .sd-body--loading a {
4907
+ color: var(--sjs-primary-backcolor, var(--primary, #19b394));
4908
+ }
4909
+ .sd-body--empty button,
4910
+ .sd-body--loading button {
4911
+ display: flex;
4912
+ align-items: center;
4913
+ padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4914
+ vertical-align: baseline;
4915
+ text-align: center;
4916
+ background-color: var(--sjs-general-backcolor, var(--background, #fff));
4917
+ box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
4918
+ border: none;
4919
+ border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
4920
+ cursor: pointer;
4921
+ user-select: none;
4922
+ outline: solid calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) transparent;
4923
+ }
4924
+ .sd-body--empty button:hover,
4925
+ .sd-body--loading button:hover {
4926
+ background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
4927
+ }
4928
+ .sd-body--empty button:focus,
4929
+ .sd-body--loading button:focus {
4930
+ box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
4931
+ }
4932
+ .sd-body--empty button span,
4933
+ .sd-body--loading button span {
4934
+ display: flex;
4935
+ align-items: center;
4936
+ flex-grow: 1;
4937
+ justify-content: center;
4938
+ color: var(--sjs-primary-backcolor, var(--primary, #19b394));
4939
+ font-weight: 600;
4940
+ font-style: normal;
4941
+ font-family: var(--font-family, var(--font-family));
4942
+ font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
4943
+ line-height: calc(1.5 * var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
4944
+ }
4945
+
4772
4946
  .sd-root_background-image {
4773
4947
  background-position-x: center;
4774
4948
  position: absolute;
@@ -4789,8 +4963,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4789
4963
  height: 100%;
4790
4964
  }
4791
4965
 
4792
- .sd-multipletext__cell:not(:last-child) {
4793
- padding-right: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
4966
+ .sd-multipletext__cell:not(:first-of-type) {
4967
+ padding-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
4794
4968
  }
4795
4969
 
4796
4970
  .sd-multipletext__item-container.sd-input:focus-within {
@@ -4818,6 +4992,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4818
4992
  margin-bottom: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
4819
4993
  }
4820
4994
 
4995
+ .sd-multipletext__item-title {
4996
+ font-size: 0;
4997
+ line-height: 0;
4998
+ }
4999
+ .sd-multipletext__item-title span {
5000
+ font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
5001
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
5002
+ }
5003
+
4821
5004
  .sd-multipletext__item-title {
4822
5005
  height: calc(100% - var(--sjs-base-unit, var(--base-unit, 8px)) * 3);
4823
5006
  max-width: 30%;
@@ -4847,8 +5030,25 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4847
5030
  display: inline-block;
4848
5031
  }
4849
5032
 
4850
- .sd-multipletext tr:not(:last-child) .sd-multipletext__cell {
4851
- padding-bottom: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
5033
+ .sd-multipletext__cell {
5034
+ padding-left: 0;
5035
+ padding-right: 0;
5036
+ padding-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
5037
+ padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
5038
+ }
5039
+
5040
+ .sd-multipletext__cell--error-bottom,
5041
+ .sd-multipletext__row:first-of-type .sd-multipletext__cell {
5042
+ padding-top: 0;
5043
+ }
5044
+
5045
+ .sd-multipletext__cell--error-top,
5046
+ .sd-multipletext__row:last-of-type .sd-multipletext__cell {
5047
+ padding-bottom: 0;
5048
+ }
5049
+
5050
+ .sd-multipletext__cell--error .sd-question__erbox--outside-question {
5051
+ margin: 0;
4852
5052
  }
4853
5053
 
4854
5054
  .sd-multipletext .sd-input .sd-input {
@@ -4974,8 +5174,10 @@ svg.sd-action--icon {
4974
5174
  text-align: center;
4975
5175
  height: auto;
4976
5176
  }
4977
- .sd-completedpage h1 {
4978
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
5177
+
5178
+ .sd-completedpage h1,
5179
+ .sd-completed-before-page h1 {
5180
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
4979
5181
  font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
4980
5182
  text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
4981
5183
  font-family: var(--font-family);
@@ -4987,8 +5189,9 @@ svg.sd-action--icon {
4987
5189
  text-indent: var(--sjs-article-font-xx-large-paragraphIndent, 0px);
4988
5190
  text-transform: var(--sjs-article-font-xx-large-textCase, "none");
4989
5191
  }
4990
- .sd-completedpage h2 {
4991
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
5192
+ .sd-completedpage h2,
5193
+ .sd-completed-before-page h2 {
5194
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
4992
5195
  font-size: var(--sjs-article-font-x-large-fontSize, 48px);
4993
5196
  text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
4994
5197
  font-family: var(--font-family);
@@ -5000,8 +5203,9 @@ svg.sd-action--icon {
5000
5203
  text-indent: var(--sjs-article-font-x-large-paragraphIndent, 0px);
5001
5204
  text-transform: var(--sjs-article-font-x-large-textCase, "none");
5002
5205
  }
5003
- .sd-completedpage h3 {
5004
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
5206
+ .sd-completedpage h3,
5207
+ .sd-completed-before-page h3 {
5208
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
5005
5209
  font-size: var(--sjs-article-font-large-fontSize, 32px);
5006
5210
  text-decoration: var(--sjs-article-font-large-textDecoration, "none");
5007
5211
  font-family: var(--font-family);
@@ -5013,8 +5217,13 @@ svg.sd-action--icon {
5013
5217
  text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
5014
5218
  text-transform: var(--sjs-article-font-large-textCase, "none");
5015
5219
  }
5016
- .sd-completedpage h4 {
5017
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
5220
+ .sd-completedpage h4,
5221
+ .sd-completedpage h5,
5222
+ .sd-completedpage h6,
5223
+ .sd-completed-before-page h4,
5224
+ .sd-completed-before-page h5,
5225
+ .sd-completed-before-page h6 {
5226
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
5018
5227
  font-size: var(--sjs-article-font-medium-fontSize, 24px);
5019
5228
  text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
5020
5229
  font-family: var(--font-family);
@@ -5026,14 +5235,15 @@ svg.sd-action--icon {
5026
5235
  text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
5027
5236
  text-transform: var(--sjs-article-font-medium-textCase, "none");
5028
5237
  }
5029
- .sd-completedpage h5,
5030
- .sd-completedpage h6 {
5031
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
5032
- }
5238
+ .sd-completedpage td,
5033
5239
  .sd-completedpage span,
5034
5240
  .sd-completedpage div,
5035
- .sd-completedpage p {
5036
- color: var(--sjs-general-forecolor, var(--foreground, #161616));
5241
+ .sd-completedpage p,
5242
+ .sd-completed-before-page td,
5243
+ .sd-completed-before-page span,
5244
+ .sd-completed-before-page div,
5245
+ .sd-completed-before-page p {
5246
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
5037
5247
  font-size: var(--sjs-article-font-default-fontSize, 16px);
5038
5248
  text-decoration: var(--sjs-article-font-default-textDecoration, "none");
5039
5249
  font-family: var(--font-family);
@@ -5045,10 +5255,12 @@ svg.sd-action--icon {
5045
5255
  text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
5046
5256
  text-transform: var(--sjs-article-font-default-textCase, "none");
5047
5257
  }
5048
- .sd-completedpage a {
5258
+ .sd-completedpage a,
5259
+ .sd-completed-before-page a {
5049
5260
  color: var(--sjs-primary-backcolor, var(--primary, #19b394));
5050
5261
  }
5051
- .sd-completedpage button {
5262
+ .sd-completedpage button,
5263
+ .sd-completed-before-page button {
5052
5264
  display: flex;
5053
5265
  align-items: center;
5054
5266
  padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -5062,13 +5274,16 @@ svg.sd-action--icon {
5062
5274
  user-select: none;
5063
5275
  outline: solid calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) transparent;
5064
5276
  }
5065
- .sd-completedpage button:hover {
5277
+ .sd-completedpage button:hover,
5278
+ .sd-completed-before-page button:hover {
5066
5279
  background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
5067
5280
  }
5068
- .sd-completedpage button:focus {
5281
+ .sd-completedpage button:focus,
5282
+ .sd-completed-before-page button:focus {
5069
5283
  box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
5070
5284
  }
5071
- .sd-completedpage button span {
5285
+ .sd-completedpage button span,
5286
+ .sd-completed-before-page button span {
5072
5287
  display: flex;
5073
5288
  align-items: center;
5074
5289
  flex-grow: 1;
@@ -5302,6 +5517,26 @@ svg.sd-action--icon {
5302
5517
  font-size: calc(0.75 * var(--sjs-font-size, 16px));
5303
5518
  }
5304
5519
 
5520
+ @keyframes rotationAnimation {
5521
+ from {
5522
+ rotate: 0deg;
5523
+ }
5524
+ to {
5525
+ rotate: 360deg;
5526
+ }
5527
+ }
5528
+ .sd-loading-indicator {
5529
+ height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
5530
+ }
5531
+ .sd-loading-indicator .sv-svg-icon {
5532
+ height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
5533
+ width: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
5534
+ animation-name: rotationAnimation;
5535
+ animation-timing-function: linear;
5536
+ animation-iteration-count: infinite;
5537
+ animation-duration: 1s;
5538
+ }
5539
+
5305
5540
  sv-components-container,
5306
5541
  .sd-components-container {
5307
5542
  display: flex;
@@ -5395,16 +5630,17 @@ sv-components-container,
5395
5630
  .sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell {
5396
5631
  display: block;
5397
5632
  }
5398
- .sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell:not(:last-child) {
5399
- padding-right: 0;
5400
- padding-bottom: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
5633
+ .sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell:not(:first-of-type) {
5634
+ padding-left: 0;
5635
+ padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
5636
+ }
5637
+ .sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell :not(:last-of-type) {
5638
+ padding-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
5401
5639
  }
5402
5640
  .sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-container {
5403
5641
  flex-direction: column;
5404
5642
  }
5405
5643
  .sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-title {
5406
- font-size: calc(0.75 * var(--sjs-font-size, 16px));
5407
- line-height: calc(1 * var(--sjs-font-size, 16px));
5408
5644
  height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
5409
5645
  padding-right: 0;
5410
5646
  border-right: none;
@@ -5413,6 +5649,10 @@ sv-components-container,
5413
5649
  width: 100%;
5414
5650
  max-width: none;
5415
5651
  }
5652
+ .sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-title span {
5653
+ font-size: calc(0.75 * var(--sjs-font-size, 16px));
5654
+ line-height: calc(1 * var(--sjs-font-size, 16px));
5655
+ }
5416
5656
  .sd-root-modern.sd-root-modern--mobile .sd-multipletext__item {
5417
5657
  width: 100%;
5418
5658
  }
@@ -5594,6 +5834,35 @@ body {
5594
5834
  background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
5595
5835
  }
5596
5836
 
5837
+ .sd-root-modern.sd-root-modern--full-container {
5838
+ width: 100%;
5839
+ height: 100%;
5840
+ overflow: auto;
5841
+ position: static;
5842
+ }
5843
+ .sd-root-modern.sd-root-modern--full-container * {
5844
+ scrollbar-width: thin;
5845
+ scrollbar-color: var(--sjs-border-default, var(--border, #d6d6d6)) transparent;
5846
+ }
5847
+ .sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar {
5848
+ width: 12px;
5849
+ height: 12px;
5850
+ background-color: transparent;
5851
+ }
5852
+ .sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-thumb {
5853
+ border: 4px solid rgba(0, 0, 0, 0);
5854
+ background-clip: padding-box;
5855
+ border-radius: 32px;
5856
+ background-color: var(--sjs-border-default, var(--border, #d6d6d6));
5857
+ }
5858
+ .sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-track {
5859
+ background: transparent;
5860
+ }
5861
+ .sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-thumb:hover {
5862
+ border: 2px solid rgba(0, 0, 0, 0);
5863
+ background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
5864
+ }
5865
+
5597
5866
  .sd-root-modern--mobile {
5598
5867
  --sd-timer-size: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
5599
5868
  }