survey-react 1.9.97 → 1.9.99

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.97
2
+ * surveyjs - Survey JavaScript library v1.9.99
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
  */
@@ -469,7 +469,7 @@ sv-popup {
469
469
  }
470
470
 
471
471
  .sv-popup__container {
472
- box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
472
+ box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
473
473
  position: absolute;
474
474
  padding: 0;
475
475
  }
@@ -527,7 +527,7 @@ sv-popup {
527
527
  max-width: 100vw;
528
528
  border-radius: calc(4 * var(--sjs-corner-radius, 4px)) calc(4 * var(--sjs-corner-radius, 4px)) 0px 0px;
529
529
  background: var(--sjs-general-backcolor, var(--background, #fff));
530
- box-shadow: 0px calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) rgba(0, 0, 0, 0.1);
530
+ box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
531
531
  padding: calc(3 * 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)));
532
532
  height: calc(100% - (1 * var(--sjs-base-unit, var(--base-unit, 8px))));
533
533
  }
@@ -870,9 +870,12 @@ sv-popup {
870
870
 
871
871
  .sv-button-group__item--disabled {
872
872
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
873
- opacity: 0.25;
874
873
  cursor: default;
875
874
  }
875
+ .sv-button-group__item--disabled .sv-button-group__item-decorator {
876
+ opacity: 0.25;
877
+ font-weight: normal;
878
+ }
876
879
  .sv-button-group__item--disabled .sv-button-group__item-icon use {
877
880
  fill: var(--sjs-general-forecolor, var(--foreground, #161616));
878
881
  }
@@ -984,6 +987,10 @@ sv-popup {
984
987
  color: black;
985
988
  }
986
989
 
990
+ .sv_window_button .sv-svg-icon {
991
+ margin: 4px;
992
+ }
993
+
987
994
  .sv-brand-info {
988
995
  width: 100%;
989
996
  font-family: var(--font-family, var(--font-family));
@@ -1156,7 +1163,7 @@ sv-popup {
1156
1163
  }
1157
1164
 
1158
1165
  .sv-ranking-item--drag .sv-ranking-item__content {
1159
- box-shadow: 0px calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) rgba(0, 0, 0, 0.1);
1166
+ box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
1160
1167
  border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
1161
1168
  }
1162
1169
 
@@ -1627,7 +1634,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
1627
1634
  }
1628
1635
  .sd-element__title span {
1629
1636
  font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
1630
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
1637
+ line-height: calc(1.5 * var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
1631
1638
  }
1632
1639
  .sd-element__title .sv-title-actions__title {
1633
1640
  font-size: 0;
@@ -1828,7 +1835,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
1828
1835
  }
1829
1836
 
1830
1837
  .sd-element--with-frame.sd-element--compact {
1831
- border: 1px solid var(--sjs-border-inside, var(--border-inside, rgba(0, 0, 0, 0.16)));
1838
+ border: 1px solid var(--sjs-border-default, var(--border, #d6d6d6));
1832
1839
  border-radius: var(--sjs-questionpanel-cornerRadius, var(--sjs-corner-radius, 4px));
1833
1840
  box-shadow: none;
1834
1841
  background-color: transparent;
@@ -2011,13 +2018,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2011
2018
  appearance: none;
2012
2019
  position: static;
2013
2020
  width: 100%;
2014
- height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
2015
2021
  box-sizing: border-box;
2016
2022
  padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2017
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
2023
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2018
2024
  font-family: var(--sjs-font-editorfont-family, var(--font-family));
2019
2025
  font-weight: var(--sjs-font-editorfont-weight, 400);
2020
- color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
2026
+ color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
2021
2027
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2022
2028
  background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
2023
2029
  box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
@@ -2088,6 +2094,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2088
2094
  display: flex;
2089
2095
  }
2090
2096
 
2097
+ .sd-input[type=color],
2098
+ .sd-input[type=range] {
2099
+ box-sizing: content-box;
2100
+ width: calc(100% - 4 * var(--sjs-base-unit, var(--base-unit, 8px)));
2101
+ height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2102
+ }
2103
+
2091
2104
  .sd-input[type=range]::-webkit-slider-runnable-track {
2092
2105
  background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
2093
2106
  border-radius: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -2140,6 +2153,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2140
2153
  position: relative;
2141
2154
  }
2142
2155
 
2156
+ .sd-panel.sd-panel--as-page {
2157
+ margin-top: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
2158
+ }
2143
2159
  .sd-panel.sd-panel--as-page > .sd-panel__content {
2144
2160
  padding-top: 0;
2145
2161
  }
@@ -2156,7 +2172,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2156
2172
  font-size: var(--sjs-font-pagetitle-size, calc(1.5 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2157
2173
  color: var(--sjs-font-pagetitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
2158
2174
  position: static;
2159
- line-height: calc(2 * var(--sjs-font-size, 16px));
2175
+ line-height: calc(1.33 * var(--sjs-font-pagetitle-size, calc(1.5 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2160
2176
  margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
2161
2177
  }
2162
2178
  .sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__title span {
@@ -2172,10 +2188,14 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2172
2188
  font-size: var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2173
2189
  color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
2174
2190
  position: static;
2175
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
2191
+ line-height: calc(1.5 * var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2176
2192
  margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
2177
2193
  }
2178
2194
 
2195
+ .sd-row ~ .sd-row .sd-panel--as-page {
2196
+ padding-top: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
2197
+ }
2198
+
2179
2199
  .sd-panel__required-text {
2180
2200
  color: var(--sjs-special-red, var(--red, #e60a3e));
2181
2201
  }
@@ -2331,9 +2351,17 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2331
2351
  .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
2332
2352
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
2333
2353
  }
2334
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item__decorator,
2335
- .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item__decorator {
2336
- --sd-item-default-background: var(--primary-foreground, #fff);
2354
+ .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error) .sd-item__decorator,
2355
+ .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error) .sd-item__decorator {
2356
+ background-color: var(--sjs-general-backcolor, var(--background, #fff));
2357
+ }
2358
+ .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator,
2359
+ .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 {
2360
+ background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
2361
+ }
2362
+ .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,
2363
+ .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 {
2364
+ background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
2337
2365
  }
2338
2366
 
2339
2367
  .sd-table__cell {
@@ -2566,7 +2594,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2566
2594
  font-size: var(--sjs-font-pagetitle-size, calc(1.5 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2567
2595
  color: var(--sjs-font-pagetitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
2568
2596
  position: static;
2569
- line-height: calc(2 * var(--sjs-font-size, 16px));
2597
+ line-height: calc(1.33 * var(--sjs-font-pagetitle-size, calc(1.5 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2570
2598
  margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
2571
2599
  }
2572
2600
 
@@ -2576,7 +2604,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2576
2604
  font-size: var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2577
2605
  color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
2578
2606
  position: static;
2579
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
2607
+ line-height: calc(1.5 * var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2580
2608
  margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
2581
2609
  }
2582
2610
 
@@ -2655,7 +2683,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2655
2683
  font-family: var(--font-family, var(--font-family));
2656
2684
  gap: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
2657
2685
  box-shadow: 0px 2px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
2658
- margin-bottom: 2px;
2659
2686
  }
2660
2687
  .sd-title.sd-container-modern__title .sd-logo__image {
2661
2688
  margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -2672,6 +2699,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2672
2699
  font-family: var(--sjs-font-surveytitle-family, var(--font-family));
2673
2700
  font-size: var(--sjs-font-surveytitle-size, calc(2 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2674
2701
  font-weight: var(--sjs-font-surveytitle-weight, 700);
2702
+ line-height: calc(1.25 * var(--sjs-font-surveytitle-size, calc(2 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2675
2703
  }
2676
2704
  .sd-header__text h3 {
2677
2705
  line-height: calc(2.5 * var(--sjs-font-size, 16px));
@@ -2730,7 +2758,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2730
2758
  font-weight: var(--sjs-font-questiondescription-weight, 400);
2731
2759
  color: var(--sjs-font-questiondescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
2732
2760
  font-size: var(--sjs-font-questiondescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2733
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
2761
+ line-height: calc(1.5 * var(--sjs-font-questiondescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2734
2762
  white-space: normal;
2735
2763
  word-break: break-word;
2736
2764
  }
@@ -2751,10 +2779,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2751
2779
  width: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2752
2780
  height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
2753
2781
  box-sizing: border-box;
2754
- background: var(--sd-item-default-background, var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9)))));
2782
+ background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
2755
2783
  box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
2756
2784
  border: none;
2757
2785
  flex-shrink: 0;
2786
+ margin-top: calc(((1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))))) - (3 * var(--sjs-base-unit, var(--base-unit, 8px)))) / 2);
2758
2787
  }
2759
2788
 
2760
2789
  .sd-item--checked .sd-item__decorator {
@@ -2780,9 +2809,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
2780
2809
  font-family: var(--sjs-font-editorfont-family, var(--font-family));
2781
2810
  font-style: normal;
2782
2811
  font-weight: normal;
2783
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
2812
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
2784
2813
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
2785
- color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
2814
+ color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
2786
2815
  white-space: normal;
2787
2816
  word-break: break-word;
2788
2817
  width: 100%;
@@ -3224,9 +3253,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3224
3253
  .sd-rating__item-text.sd-rating__item-text {
3225
3254
  font-family: var(--sjs-font-editorfont-family, var(--font-family));
3226
3255
  font-weight: var(--sjs-font-editorfont-weight, 400);
3227
- color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
3256
+ color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
3228
3257
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
3229
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
3258
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3230
3259
  display: inline-block;
3231
3260
  }
3232
3261
  .sd-rating__item-text.sd-rating__item-text.sd-rating__min-text, .sd-rating__item-text.sd-rating__item-text.sd-rating__max-text {
@@ -3316,28 +3345,34 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3316
3345
 
3317
3346
  .sd-dropdown__value {
3318
3347
  width: 100%;
3319
- min-height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3348
+ min-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3320
3349
  overflow: hidden;
3321
3350
  text-overflow: ellipsis;
3322
3351
  white-space: nowrap;
3323
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
3352
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3324
3353
  font-family: var(--sjs-font-editorfont-family, var(--font-family));
3325
3354
  font-weight: var(--sjs-font-editorfont-weight, 400);
3326
- color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
3355
+ color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
3327
3356
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
3328
3357
  position: relative;
3329
3358
  }
3330
3359
 
3331
3360
  .sd-dropdown_clean-button {
3361
+ display: flex;
3332
3362
  padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
3333
3363
  margin: auto 0;
3334
3364
  }
3335
3365
 
3336
3366
  .sd-dropdown_chevron-button {
3337
3367
  position: absolute;
3338
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3339
- inset-inline-end: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3340
- inset-block-start: calc(50% - (1.5 * var(--sjs-base-unit, var(--base-unit, 8px))));
3368
+ width: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3369
+ top: 0;
3370
+ bottom: 0;
3371
+ inset-inline-end: 0;
3372
+ display: flex;
3373
+ justify-content: center;
3374
+ align-items: center;
3375
+ padding-inline-end: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3341
3376
  }
3342
3377
 
3343
3378
  .sd-dropdown_clean-button-svg {
@@ -3364,9 +3399,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3364
3399
  padding: 0;
3365
3400
  font-family: var(--sjs-font-editorfont-family, var(--font-family));
3366
3401
  font-weight: var(--sjs-font-editorfont-weight, 400);
3367
- color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
3402
+ color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
3368
3403
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
3369
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
3404
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3370
3405
  background-color: transparent;
3371
3406
  overflow: hidden;
3372
3407
  text-overflow: ellipsis;
@@ -3422,12 +3457,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3422
3457
  padding-inline-start: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3423
3458
  }
3424
3459
 
3425
- .sd-tagbox.sd-tagbox--empty {
3426
- padding-block: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3427
- padding-inline-end: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
3428
- padding-inline-start: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
3429
- }
3430
-
3431
3460
  .sd-tagbox_clean-button {
3432
3461
  height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3433
3462
  padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -3441,7 +3470,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3441
3470
  .sv-tagbox__item {
3442
3471
  position: relative;
3443
3472
  display: flex;
3444
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3445
3473
  padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3446
3474
  background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
3447
3475
  border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
@@ -3457,20 +3485,21 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3457
3485
  .sv-tagbox__item:hover .sd-tagbox-item_clean-button,
3458
3486
  .sv-tagbox__item:focus .sd-tagbox-item_clean-button,
3459
3487
  .sv-tagbox__item:focus-within .sd-tagbox-item_clean-button {
3460
- display: block;
3488
+ display: flex;
3489
+ align-self: center;
3461
3490
  }
3462
3491
 
3463
3492
  .sd-tagbox-item_clean-button {
3464
3493
  display: none;
3465
3494
  position: absolute;
3466
3495
  inset-inline-end: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3467
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3468
3496
  padding: 0;
3469
3497
  padding-inline-start: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
3470
3498
  background: linear-gradient(270deg, var(--sjs-primary-backcolor, var(--primary, #19b394)) 53.12%, rgba(25, 179, 148, 0) 100%);
3471
3499
  }
3472
3500
 
3473
3501
  .sd-tagbox-item_clean-button-svg {
3502
+ display: flex;
3474
3503
  padding: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3475
3504
  width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
3476
3505
  height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -3500,7 +3529,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3500
3529
  width: 100%;
3501
3530
  display: flex;
3502
3531
  flex-grow: 1;
3503
- height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3504
3532
  }
3505
3533
 
3506
3534
  .sd-tagbox__placeholder {
@@ -3539,13 +3567,17 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3539
3567
  }
3540
3568
 
3541
3569
  .sd-dropdown__hint-suffix.sd-tagbox__hint-suffix {
3542
- height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3543
- line-height: calc(2.5 * var(--sjs-font-size, 16px));
3570
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3571
+ height: 100%;
3572
+ display: flex;
3573
+ align-items: center;
3544
3574
  }
3545
3575
 
3546
3576
  .sd-dropdown__hint-prefix.sd-tagbox__hint-prefix {
3547
- height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3548
- line-height: calc(2.5 * var(--sjs-font-size, 16px));
3577
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3578
+ height: 100%;
3579
+ display: flex;
3580
+ align-items: center;
3549
3581
  }
3550
3582
 
3551
3583
  .sd-imagepicker {
@@ -3746,6 +3778,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3746
3778
  display: flex;
3747
3779
  width: max-content;
3748
3780
  position: relative;
3781
+ gap: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3749
3782
  padding: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3750
3783
  background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
3751
3784
  box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
@@ -3759,7 +3792,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3759
3792
  font-weight: var(--sjs-font-editorfont-weight, 400);
3760
3793
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
3761
3794
  color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
3762
- line-height: calc(1.5 * var(--sjs-font-size, 16px));
3795
+ line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
3763
3796
  padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3764
3797
  }
3765
3798
 
@@ -3789,7 +3822,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3789
3822
  }
3790
3823
 
3791
3824
  .sd-boolean__thumb {
3792
- background-color: var(--sjs-general-backcolor, var(--background, #fff));
3825
+ background-color: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
3793
3826
  box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
3794
3827
  border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3795
3828
  transition-duration: 0.2s;
@@ -4331,7 +4364,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4331
4364
  -webkit-appearance: none;
4332
4365
  -moz-appearance: none;
4333
4366
  padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
4334
- background: var(--sjs-general-backcolor, var(--background, #fff));
4367
+ background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
4335
4368
  box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
4336
4369
  border-radius: calc(1 * var(--sjs-corner-radius, 4px));
4337
4370
  cursor: pointer;
@@ -4463,7 +4496,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4463
4496
  }
4464
4497
 
4465
4498
  .sd-multipletext__item-container.sd-input:focus-within {
4466
- box-shadow: inset 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
4499
+ box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
4467
4500
  }
4468
4501
 
4469
4502
  .sd-multipletext__item-container {
@@ -4479,7 +4512,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4479
4512
  padding-bottom: 0;
4480
4513
  border: none;
4481
4514
  box-shadow: none;
4482
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4483
4515
  }
4484
4516
 
4485
4517
  .sd-multipletext__item-container .sd-input,
@@ -4759,12 +4791,12 @@ svg.sd-action--icon {
4759
4791
 
4760
4792
  .sv_progress-toc--mobile {
4761
4793
  position: fixed;
4762
- top: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4794
+ top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4763
4795
  right: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4764
4796
  width: auto;
4765
4797
  min-width: auto;
4766
4798
  height: auto;
4767
- background-color: transparent;
4799
+ background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
4768
4800
  z-index: 15;
4769
4801
  border-radius: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4770
4802
  }
@@ -5097,7 +5129,6 @@ body {
5097
5129
  .sd-root-modern {
5098
5130
  -webkit-font-smoothing: antialiased;
5099
5131
  --sd-mobile-width: 600px;
5100
- --sd-imagepicker-gap: 16px;
5101
5132
  --sd-timer-size: calc(18 * var(--sjs-base-unit, var(--base-unit, 8px)));
5102
5133
  width: 100%;
5103
5134
  font-family: var(--font-family, var(--font-family));
@@ -5163,7 +5194,7 @@ body {
5163
5194
  }
5164
5195
 
5165
5196
  .sv-popup.sv-popup--dropdown .sv-popup__shadow {
5166
- box-shadow: 0px calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) rgba(0, 0, 0, 0.1);
5197
+ box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
5167
5198
  }
5168
5199
  .sv-popup.sv-popup--dropdown .sv-popup__body-content {
5169
5200
  background-color: var(--sjs-general-backcolor, var(--background, #fff));