survey-react 1.9.98 → 1.9.100

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.98
2
+ * surveyjs - Survey JavaScript library v1.9.100
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,19 +3345,20 @@ 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
  }
@@ -3369,9 +3399,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3369
3399
  padding: 0;
3370
3400
  font-family: var(--sjs-font-editorfont-family, var(--font-family));
3371
3401
  font-weight: var(--sjs-font-editorfont-weight, 400);
3372
- 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)));
3373
3403
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
3374
- 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)))));
3375
3405
  background-color: transparent;
3376
3406
  overflow: hidden;
3377
3407
  text-overflow: ellipsis;
@@ -3427,12 +3457,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3427
3457
  padding-inline-start: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3428
3458
  }
3429
3459
 
3430
- .sd-tagbox.sd-tagbox--empty {
3431
- padding-block: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3432
- padding-inline-end: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
3433
- padding-inline-start: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
3434
- }
3435
-
3436
3460
  .sd-tagbox_clean-button {
3437
3461
  height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3438
3462
  padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -3446,7 +3470,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3446
3470
  .sv-tagbox__item {
3447
3471
  position: relative;
3448
3472
  display: flex;
3449
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3450
3473
  padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3451
3474
  background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
3452
3475
  border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
@@ -3462,20 +3485,21 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3462
3485
  .sv-tagbox__item:hover .sd-tagbox-item_clean-button,
3463
3486
  .sv-tagbox__item:focus .sd-tagbox-item_clean-button,
3464
3487
  .sv-tagbox__item:focus-within .sd-tagbox-item_clean-button {
3465
- display: block;
3488
+ display: flex;
3489
+ align-self: center;
3466
3490
  }
3467
3491
 
3468
3492
  .sd-tagbox-item_clean-button {
3469
3493
  display: none;
3470
3494
  position: absolute;
3471
3495
  inset-inline-end: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3472
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3473
3496
  padding: 0;
3474
3497
  padding-inline-start: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
3475
3498
  background: linear-gradient(270deg, var(--sjs-primary-backcolor, var(--primary, #19b394)) 53.12%, rgba(25, 179, 148, 0) 100%);
3476
3499
  }
3477
3500
 
3478
3501
  .sd-tagbox-item_clean-button-svg {
3502
+ display: flex;
3479
3503
  padding: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3480
3504
  width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
3481
3505
  height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
@@ -3505,7 +3529,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3505
3529
  width: 100%;
3506
3530
  display: flex;
3507
3531
  flex-grow: 1;
3508
- height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3509
3532
  }
3510
3533
 
3511
3534
  .sd-tagbox__placeholder {
@@ -3544,13 +3567,17 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3544
3567
  }
3545
3568
 
3546
3569
  .sd-dropdown__hint-suffix.sd-tagbox__hint-suffix {
3547
- height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3548
- 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;
3549
3574
  }
3550
3575
 
3551
3576
  .sd-dropdown__hint-prefix.sd-tagbox__hint-prefix {
3552
- height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3553
- 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;
3554
3581
  }
3555
3582
 
3556
3583
  .sd-imagepicker {
@@ -3751,6 +3778,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3751
3778
  display: flex;
3752
3779
  width: max-content;
3753
3780
  position: relative;
3781
+ gap: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3754
3782
  padding: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3755
3783
  background-color: var(--sjs-editorpanel-backcolor, var(--sjs-editor-background, var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9))));
3756
3784
  box-shadow: var(--sjs-shadow-inner, inset 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
@@ -3764,7 +3792,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3764
3792
  font-weight: var(--sjs-font-editorfont-weight, 400);
3765
3793
  font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
3766
3794
  color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
3767
- 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)))));
3768
3796
  padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
3769
3797
  }
3770
3798
 
@@ -3794,7 +3822,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
3794
3822
  }
3795
3823
 
3796
3824
  .sd-boolean__thumb {
3797
- 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))));
3798
3826
  box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
3799
3827
  border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
3800
3828
  transition-duration: 0.2s;
@@ -4336,7 +4364,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4336
4364
  -webkit-appearance: none;
4337
4365
  -moz-appearance: none;
4338
4366
  padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
4339
- 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))));
4340
4368
  box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
4341
4369
  border-radius: calc(1 * var(--sjs-corner-radius, 4px));
4342
4370
  cursor: pointer;
@@ -4468,7 +4496,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4468
4496
  }
4469
4497
 
4470
4498
  .sd-multipletext__item-container.sd-input:focus-within {
4471
- 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));
4472
4500
  }
4473
4501
 
4474
4502
  .sd-multipletext__item-container {
@@ -4484,7 +4512,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4484
4512
  padding-bottom: 0;
4485
4513
  border: none;
4486
4514
  box-shadow: none;
4487
- height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4488
4515
  }
4489
4516
 
4490
4517
  .sd-multipletext__item-container .sd-input,
@@ -4764,12 +4791,12 @@ svg.sd-action--icon {
4764
4791
 
4765
4792
  .sv_progress-toc--mobile {
4766
4793
  position: fixed;
4767
- top: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4794
+ top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4768
4795
  right: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
4769
4796
  width: auto;
4770
4797
  min-width: auto;
4771
4798
  height: auto;
4772
- background-color: transparent;
4799
+ background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
4773
4800
  z-index: 15;
4774
4801
  border-radius: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
4775
4802
  }
@@ -5102,7 +5129,6 @@ body {
5102
5129
  .sd-root-modern {
5103
5130
  -webkit-font-smoothing: antialiased;
5104
5131
  --sd-mobile-width: 600px;
5105
- --sd-imagepicker-gap: 16px;
5106
5132
  --sd-timer-size: calc(18 * var(--sjs-base-unit, var(--base-unit, 8px)));
5107
5133
  width: 100%;
5108
5134
  font-family: var(--font-family, var(--font-family));
@@ -5168,7 +5194,7 @@ body {
5168
5194
  }
5169
5195
 
5170
5196
  .sv-popup.sv-popup--dropdown .sv-popup__shadow {
5171
- 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));
5172
5198
  }
5173
5199
  .sv-popup.sv-popup--dropdown .sv-popup__body-content {
5174
5200
  background-color: var(--sjs-general-backcolor, var(--background, #fff));