survey-react 1.9.102 → 1.9.104

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,8 +1,9 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.9.102
2
+ * surveyjs - Survey JavaScript library v1.9.104
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
  */
6
+ @charset "UTF-8";
6
7
  /* cyrillic-ext */
7
8
  @font-face {
8
9
  font-family: "Open Sans";
@@ -1652,6 +1653,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
1652
1653
  .sd-element__title .sv-string-viewer {
1653
1654
  white-space: normal;
1654
1655
  }
1656
+ .sd-element__title .sv-string-viewer::before {
1657
+ content: "​";
1658
+ }
1655
1659
 
1656
1660
  .sd-element__num {
1657
1661
  float: left;
@@ -2050,7 +2054,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2050
2054
  }
2051
2055
 
2052
2056
  .sd-input::placeholder {
2053
- color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
2057
+ color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
2054
2058
  -webkit-user-select: none;
2055
2059
  -moz-user-select: none;
2056
2060
  -ms-user-select: none;
@@ -2158,12 +2162,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2158
2162
  position: relative;
2159
2163
  }
2160
2164
 
2161
- .sd-panel.sd-panel--as-page {
2162
- margin-top: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2163
- }
2164
- .sd-panel.sd-panel--as-page > .sd-panel__content {
2165
- padding-top: 0;
2166
- }
2167
2165
  .sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header {
2168
2166
  padding-top: 0;
2169
2167
  padding-bottom: 0;
@@ -2194,7 +2192,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2194
2192
  color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
2195
2193
  position: static;
2196
2194
  line-height: calc(1.5 * var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2197
- margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
2195
+ margin: 0 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
2196
+ }
2197
+ .sd-panel.sd-panel--as-page .sd-panel__header + .sd-panel__content {
2198
+ margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2199
+ }
2200
+ .sd-panel.sd-panel--as-page > .sd-panel__content {
2201
+ padding-top: 0;
2198
2202
  }
2199
2203
 
2200
2204
  .sd-row ~ .sd-row .sd-panel--as-page {
@@ -2282,7 +2286,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2282
2286
  }
2283
2287
 
2284
2288
  .sd-matrixdynamic__footer {
2285
- padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2289
+ padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2286
2290
  }
2287
2291
 
2288
2292
  .sd-action.sd-matrixdynamic__remove-btn {
@@ -2332,19 +2336,43 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2332
2336
  .sd-table {
2333
2337
  width: 100%;
2334
2338
  background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
2335
- border-collapse: collapse;
2339
+ border-collapse: separate;
2340
+ border-spacing: 0;
2336
2341
  white-space: normal;
2337
2342
  }
2343
+ .sd-table > thead > tr > th {
2344
+ border-top: 0;
2345
+ border-bottom: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
2346
+ }
2347
+
2348
+ .sd-table__cell {
2349
+ border-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
2350
+ border-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
2351
+ background-clip: padding-box;
2352
+ }
2353
+
2354
+ .sd-table__row:first-of-type > .sd-table__cell {
2355
+ border-top: 0;
2356
+ }
2357
+
2358
+ .sd-table__row:last-of-type > .sd-table__cell {
2359
+ border-bottom: 0;
2360
+ }
2338
2361
 
2339
2362
  .sd-table--align-top .sd-table__cell {
2340
2363
  vertical-align: top;
2341
2364
  }
2342
2365
 
2366
+ .sd-table--no-header {
2367
+ padding-top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2368
+ }
2369
+
2343
2370
  .sd-table--alternate-rows {
2344
- margin: 0 8px;
2371
+ margin-left: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2372
+ margin-right: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2345
2373
  width: calc(100% - 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2346
2374
  }
2347
- .sd-table--alternate-rows .sd-table__cell:first-of-type {
2375
+ .sd-table--alternate-rows .sd-table__cell:not(.sd-table__cell--header):first-of-type {
2348
2376
  padding-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2349
2377
  }
2350
2378
  .sd-table--alternate-rows .sd-table__cell:last-of-type {
@@ -2354,6 +2382,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2354
2382
  .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
2355
2383
  background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
2356
2384
  }
2385
+ .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-matrix__text--checked,
2386
+ .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type.sd-matrix__text--checked {
2387
+ background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
2388
+ }
2357
2389
  .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-input,
2358
2390
  .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
2359
2391
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
@@ -2375,12 +2407,16 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2375
2407
  font-weight: normal;
2376
2408
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2377
2409
  line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2378
- padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2410
+ padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2379
2411
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
2380
2412
  text-align: center;
2381
2413
  }
2414
+ .sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
2415
+ min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2416
+ }
2382
2417
 
2383
2418
  .sd-table__cell--error {
2419
+ border: none;
2384
2420
  padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2385
2421
  }
2386
2422
  .sd-table__cell--error .sd-question__erbox--outside-question {
@@ -2419,14 +2455,14 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2419
2455
  }
2420
2456
 
2421
2457
  .sd-table__cell--header span {
2422
- font-size: calc(1 * var(--sjs-font-size, 16px));
2423
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
2458
+ font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2459
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2424
2460
  }
2425
2461
 
2426
2462
  .sd-table__cell--header {
2427
2463
  font-weight: 600;
2428
2464
  vertical-align: top;
2429
- padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
2465
+ padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2430
2466
  }
2431
2467
  .sd-table__cell--header:not(.sd-table__cell--empty) {
2432
2468
  min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -2437,6 +2473,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2437
2473
  width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2438
2474
  }
2439
2475
 
2476
+ .sd-matrixdropdown .sd-table__cell--header.sd-table__cell--action {
2477
+ min-width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2478
+ width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2479
+ }
2480
+
2440
2481
  .sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty) {
2441
2482
  min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
2442
2483
  width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -2451,7 +2492,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2451
2492
  }
2452
2493
 
2453
2494
  .sd-table__cell--detail-panel {
2454
- padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2495
+ border-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
2496
+ padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
2497
+ border-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
2455
2498
  }
2456
2499
 
2457
2500
  .sd-table__cell--actions .sv-action-bar,
@@ -2460,7 +2503,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2460
2503
  }
2461
2504
 
2462
2505
  .sd-table__cell--actions:not(.sd-table__cell--vertical) {
2463
- width: 0;
2506
+ width: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2507
+ }
2508
+ .sd-table__cell--actions:not(.sd-table__cell--vertical):not(.sd-table__cell--drag):first-of-type {
2509
+ padding-left: 0;
2464
2510
  }
2465
2511
 
2466
2512
  .sd-table__cell--detail-button {
@@ -2477,7 +2523,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2477
2523
  fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
2478
2524
  }
2479
2525
  .sd-table__cell--detail-button:hover {
2480
- background: var(--sjs-special-green-light, var(--green-light, rgba(25, 179, 148, 0.1)));
2526
+ background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
2481
2527
  }
2482
2528
  .sd-table__cell--detail-button:hover svg {
2483
2529
  fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
@@ -2494,7 +2540,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2494
2540
  font-weight: 600;
2495
2541
  text-align: left;
2496
2542
  min-width: calc(12 * var(--sjs-base-unit, var(--base-unit, 8px)));
2497
- padding: calc(2.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2543
+ padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
2498
2544
  }
2499
2545
 
2500
2546
  .sd-matrixdynamic__content .sd-table__question-wrapper {
@@ -2514,7 +2560,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2514
2560
  .sd-matrix__cell:first-of-type,
2515
2561
  .sd-matrix tr > td:first-of-type {
2516
2562
  position: sticky;
2517
- background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
2563
+ background-color: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
2518
2564
  z-index: 12;
2519
2565
  }
2520
2566
  .sd-table__cell--actions:not(.sd-table__cell--vertical):first-of-type,
@@ -2575,7 +2621,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2575
2621
  left: 0;
2576
2622
  }
2577
2623
  .sd-question--table > .sd-question__content {
2578
- padding-top: calc(2.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
2624
+ padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2579
2625
  min-width: min-content;
2580
2626
  }
2581
2627
  .sd-question--table:not(.sd-element--with-frame) {
@@ -2602,15 +2648,8 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2602
2648
  margin: auto;
2603
2649
  }
2604
2650
 
2605
- .sd-body--responsive .sd-page {
2606
- padding: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px))) var(--sd-page-vertical-padding) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2607
- }
2608
- .sd-body--responsive .sd-page.sd-page__empty-header {
2609
- padding-top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2610
- }
2611
-
2612
- .sd-root-modern--mobile .sd-page {
2613
- padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2651
+ .sd-table.sd-matrixdynamic {
2652
+ table-layout: auto;
2614
2653
  }
2615
2654
 
2616
2655
  .sd-page {
@@ -2618,11 +2657,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2618
2657
  display: flex;
2619
2658
  flex-direction: column;
2620
2659
  align-items: flex-start;
2621
- padding: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2660
+ padding: 0 calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
2622
2661
  width: 100%;
2623
2662
  box-sizing: border-box;
2624
2663
  }
2625
2664
 
2665
+ .sd-root-modern--mobile .sd-page {
2666
+ padding: 0;
2667
+ }
2668
+
2626
2669
  .sd-page .sd-page__title {
2627
2670
  font-family: var(--sjs-font-pagetitle-family, var(--font-family));
2628
2671
  font-weight: var(--sjs-font-pagetitle-weight, 700);
@@ -2631,6 +2674,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2631
2674
  position: static;
2632
2675
  line-height: calc(1.33 * var(--sjs-font-pagetitle-size, calc(1.5 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2633
2676
  margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
2677
+ margin-top: 0;
2634
2678
  }
2635
2679
 
2636
2680
  .sd-page .sd-page__description {
@@ -2640,7 +2684,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2640
2684
  color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
2641
2685
  position: static;
2642
2686
  line-height: calc(1.5 * var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2643
- margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
2687
+ margin: 0 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
2644
2688
  }
2645
2689
 
2646
2690
  .sd-row {
@@ -2651,14 +2695,22 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2651
2695
  margin-top: var(--sd-base-vertical-padding);
2652
2696
  }
2653
2697
 
2698
+ .sd-row.sd-page__row {
2699
+ margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2700
+ }
2701
+
2702
+ .sd-page__row.sd-row--compact {
2703
+ margin-top: var(--sd-base-vertical-padding);
2704
+ }
2705
+
2654
2706
  .sd-row:first-of-type {
2655
2707
  margin-top: 0;
2656
2708
  }
2657
2709
 
2658
- .sd-row.sd-page__row {
2710
+ .sd-page__title ~ .sd-row.sd-page__row {
2659
2711
  margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2660
2712
  }
2661
- .sd-row.sd-page__row.sd-row--compact {
2713
+ .sd-page__title ~ .sd-row.sd-page__row.sd-row--compact {
2662
2714
  margin-top: var(--sd-base-vertical-padding);
2663
2715
  }
2664
2716
 
@@ -2832,7 +2884,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2832
2884
 
2833
2885
  .sd-item__control:focus + .sd-item__decorator {
2834
2886
  box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
2835
- background: var(--sjs-general-backcolor, var(--background, #fff));
2887
+ background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
2836
2888
  outline: none;
2837
2889
  }
2838
2890
 
@@ -3040,7 +3092,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
3040
3092
 
3041
3093
  .sd-rating__item {
3042
3094
  position: relative;
3043
- background: var(--sjs-general-backcolor, var(--background, #fff));
3095
+ background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
3044
3096
  box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
3045
3097
  border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3046
3098
  white-space: nowrap;
@@ -3398,6 +3450,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3398
3450
 
3399
3451
  .sd-dropdown_clean-button {
3400
3452
  display: flex;
3453
+ justify-content: center;
3454
+ align-items: center;
3401
3455
  padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
3402
3456
  margin: auto 0;
3403
3457
  }
@@ -3414,9 +3468,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3414
3468
  padding-inline-end: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3415
3469
  }
3416
3470
 
3471
+ .sd-dropdown_chevron-button-svg,
3417
3472
  .sd-dropdown_clean-button-svg {
3418
- width: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3419
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3473
+ width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3474
+ height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3420
3475
  }
3421
3476
 
3422
3477
  .sd-input.sd-dropdown:focus-within {
@@ -3451,12 +3506,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3451
3506
  }
3452
3507
 
3453
3508
  .sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__filter-string-input::placeholder {
3454
- color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
3509
+ color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
3455
3510
  }
3456
3511
 
3457
3512
  .sd-dropdown__filter-string-input::placeholder {
3458
- font-family: var(--font-family, var(--font-family));
3459
- font-size: calc(1 * var(--sjs-font-size, 16px));
3460
3513
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
3461
3514
  width: 100%;
3462
3515
  max-width: 100%;
@@ -3464,12 +3517,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3464
3517
  text-overflow: ellipsis;
3465
3518
  white-space: nowrap;
3466
3519
  display: inline-block;
3467
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
3468
3520
  appearance: none;
3469
3521
  }
3470
3522
 
3471
3523
  .sd-dropdown__hint-prefix {
3472
- color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
3524
+ color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
3473
3525
  }
3474
3526
  .sd-dropdown__hint-prefix span {
3475
3527
  white-space: pre;
@@ -3477,7 +3529,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3477
3529
 
3478
3530
  .sd-dropdown__hint-suffix {
3479
3531
  display: flex;
3480
- color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
3532
+ color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
3481
3533
  }
3482
3534
  .sd-dropdown__hint-suffix span {
3483
3535
  white-space: pre;
@@ -4474,9 +4526,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4474
4526
  box-sizing: border-box;
4475
4527
  }
4476
4528
  .sd-body.sd-body--static {
4477
- max-width: calc(84 * var(--sjs-base-unit, var(--base-unit, 8px)));
4529
+ max-width: calc(90 * var(--sjs-base-unit, var(--base-unit, 8px)));
4478
4530
  margin-left: auto;
4479
4531
  margin-right: auto;
4532
+ padding-top: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
4533
+ padding-bottom: calc(10 * var(--sjs-base-unit, var(--base-unit, 8px)));
4480
4534
  }
4481
4535
  .sd-body.sd-body--static .sd-body__timer,
4482
4536
  .sd-body.sd-body--static .sd-body__navigation,
@@ -4484,15 +4538,33 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4484
4538
  margin-left: 0;
4485
4539
  margin-right: 0;
4486
4540
  }
4541
+ .sd-body.sd-body--static .sd-body__navigation {
4542
+ padding-top: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4543
+ }
4544
+ .sd-body.sd-body--static .sd-body__navigation.sd-action-bar {
4545
+ padding-left: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
4546
+ padding-right: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
4547
+ }
4487
4548
  .sd-body.sd-body--responsive {
4488
4549
  max-width: initial;
4550
+ padding: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4551
+ box-sizing: border-box;
4552
+ }
4553
+ .sd-body.sd-body--responsive .sd-page {
4554
+ padding: 0;
4555
+ }
4556
+ .sd-body.sd-body--responsive .sd-page.sd-page__empty-header {
4557
+ padding-top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4489
4558
  }
4490
4559
  .sd-body.sd-body--responsive .sd-body__timer,
4491
4560
  .sd-body.sd-body--responsive .sd-body__navigation {
4492
- padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) var(--sd-page-vertical-padding);
4561
+ padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
4562
+ }
4563
+ .sd-body.sd-body--responsive .sd-body__navigation {
4564
+ padding-top: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4493
4565
  }
4494
4566
  .sd-body.sd-body--responsive.sd-body--with-timer {
4495
- max-width: calc(100% + var(--sd-timer-size) * ( -1 - 64 / 144 ) + 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
4567
+ max-width: calc(100% + var(--sd-timer-size) * (-1 - 64 / 144) + 6 * var(--sjs-base-unit, var(--base-unit, 8px)));
4496
4568
  margin-left: auto;
4497
4569
  margin-right: auto;
4498
4570
  }
@@ -4502,6 +4574,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4502
4574
  margin-left: 0;
4503
4575
  margin-right: 0;
4504
4576
  }
4577
+ .sd-root-modern--mobile .sd-body.sd-body--responsive, .sd-root-modern--mobile .sd-body.sd-body--static {
4578
+ padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4579
+ }
4580
+ .sd-root-modern--mobile .sd-body.sd-body--responsive .sd-body__navigation, .sd-root-modern--mobile .sd-body.sd-body--static .sd-body__navigation {
4581
+ padding-left: 0;
4582
+ padding-right: 0;
4583
+ padding-bottom: 0;
4584
+ }
4505
4585
 
4506
4586
  .sd-body__navigation.sd-action-bar {
4507
4587
  box-sizing: border-box;
@@ -5241,10 +5321,6 @@ body {
5241
5321
  background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
5242
5322
  }
5243
5323
 
5244
- .sd-container-modern {
5245
- margin-bottom: calc(10 * var(--sjs-base-unit, var(--base-unit, 8px)));
5246
- }
5247
-
5248
5324
  .sd-root-modern--mobile {
5249
5325
  --sd-timer-size: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
5250
5326
  }
@@ -5272,12 +5348,13 @@ body {
5272
5348
  background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
5273
5349
  }
5274
5350
 
5275
- .sv-popup.sv-popup--dropdown .sv-popup__shadow {
5351
+ .sv-popup.sv-popup--dropdown.sv-popup--dropdown .sv-popup__shadow {
5276
5352
  box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
5277
5353
  }
5278
- .sv-popup.sv-popup--dropdown .sv-popup__body-content {
5354
+ .sv-popup.sv-popup--dropdown.sv-popup--dropdown .sv-popup__body-content {
5279
5355
  background-color: var(--sjs-general-backcolor, var(--background, #fff));
5280
5356
  padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
5357
+ height: 100%;
5281
5358
  }
5282
5359
 
5283
5360
  .sv-popup.sv-popup--modal .sv-popup__body-content {