survey-creator-core 1.9.88 → 1.9.90

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.
Files changed (36) hide show
  1. package/fonts.fontless.css +1 -1
  2. package/fonts.fontless.min.css +1 -1
  3. package/package.json +2 -2
  4. package/survey-creator-core.css +285 -74
  5. package/survey-creator-core.fontless.css +284 -73
  6. package/survey-creator-core.fontless.css.map +1 -1
  7. package/survey-creator-core.fontless.min.css +19 -15
  8. package/survey-creator-core.i18n.js +1 -1
  9. package/survey-creator-core.i18n.min.js +1 -1
  10. package/survey-creator-core.js +2693 -261
  11. package/survey-creator-core.js.map +1 -1
  12. package/survey-creator-core.min.css +20 -16
  13. package/survey-creator-core.min.js +3 -3
  14. package/typings/components/header/logo-image.d.ts +1 -0
  15. package/typings/components/image-item-value.d.ts +1 -0
  16. package/typings/components/item-value.d.ts +1 -0
  17. package/typings/components/matrix-cell.d.ts +1 -1
  18. package/typings/components/page.d.ts +5 -2
  19. package/typings/components/question-image.d.ts +1 -0
  20. package/typings/components/question-rating.d.ts +1 -0
  21. package/typings/components/question.d.ts +1 -1
  22. package/typings/components/simulator.d.ts +1 -0
  23. package/typings/components/tabs/theme-custom-questions/boxshadow-settings.d.ts +2 -0
  24. package/typings/components/tabs/theme-custom-questions/color-settings.d.ts +5 -0
  25. package/typings/components/tabs/theme-plugin.d.ts +25 -0
  26. package/typings/components/tabs/theme.d.ts +92 -0
  27. package/typings/creator-base.d.ts +26 -1
  28. package/typings/creator-options.d.ts +1 -0
  29. package/typings/creator-settings.d.ts +4 -1
  30. package/typings/editorLocalization.d.ts +73 -0
  31. package/typings/entries/index.d.ts +4 -0
  32. package/typings/localization/english.d.ts +73 -0
  33. package/typings/property-grid/index.d.ts +7 -0
  34. package/typings/property-grid/matrices.d.ts +2 -0
  35. package/typings/survey-elements.d.ts +44 -0
  36. package/typings/utils/utils.d.ts +23 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.88
2
+ * SurveyJS Creator v1.9.90
3
3
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.88
2
+ * SurveyJS Creator v1.9.90
3
3
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-creator-core",
3
- "version": "1.9.88",
3
+ "version": "1.9.90",
4
4
  "description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
5
5
  "keywords": [
6
6
  "Survey",
@@ -29,7 +29,7 @@
29
29
  "ace-builds": "^1.4.12"
30
30
  },
31
31
  "dependencies": {
32
- "survey-core": "1.9.88"
32
+ "survey-core": "1.9.90"
33
33
  },
34
34
  "devDependencies": {}
35
35
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * SurveyJS Creator v1.9.88
2
+ * SurveyJS Creator v1.9.90
3
3
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * Github: https://github.com/surveyjs/survey-creator
5
5
  * License: https://surveyjs.io/Licenses#SurveyCreator
@@ -225,11 +225,35 @@
225
225
 
226
226
 
227
227
  /*# sourceMappingURL=fonts.fontless.css.map*//*!
228
- * SurveyJS Creator v1.9.88
228
+ * SurveyJS Creator v1.9.90
229
229
  * (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
230
230
  * Github: https://github.com/surveyjs/survey-creator
231
231
  * License: https://surveyjs.io/Licenses#SurveyCreator
232
232
  */
233
+ .svc-context-container {
234
+ display: flex;
235
+ gap: calc(1 * var(--base-unit, 8px));
236
+ width: max-content; }
237
+
238
+ .svc-context-button {
239
+ display: block;
240
+ box-sizing: border-box;
241
+ background-color: var(--background, #fff);
242
+ border-radius: 50%;
243
+ width: calc(6 * var(--base-unit, 8px));
244
+ height: calc(6 * var(--base-unit, 8px));
245
+ cursor: pointer;
246
+ padding: calc(1.5 * var(--base-unit, 8px));
247
+ outline: none; }
248
+ .svc-context-button use {
249
+ fill: var(--foreground-light, #909090); }
250
+
251
+ .svc-context-button:hover use, .svc-context-button:focus use {
252
+ fill: var(--primary, #19b394); }
253
+
254
+ .svc-context-button--danger:hover use, .svc-context-button--danger:focus use {
255
+ fill: var(--red, #e60a3e); }
256
+
233
257
  .svc-embed-tab__content {
234
258
  padding: calc(2 * var(--base-unit, 8px));
235
259
  font-family: var(--font-family); }
@@ -318,7 +342,8 @@ svc-tab-json-editor-textarea {
318
342
  transform-origin: 0 0;
319
343
  top: 50%;
320
344
  left: 50%;
321
- transform: scale(1.26) translate(-50%, -50%); }
345
+ transform: scale(1.26) translate(-50%, -50%);
346
+ overflow: overlay; }
322
347
 
323
348
  .svd-simulator-wrapper {
324
349
  margin: 0 auto;
@@ -393,10 +418,7 @@ svc-tab-json-editor-textarea {
393
418
  .svd-simulator-content {
394
419
  display: flex;
395
420
  justify-content: center;
396
- width: 100%;
397
- height: 100%;
398
- overflow: auto;
399
- overflow-y: overlay; }
421
+ width: 100%; }
400
422
 
401
423
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
402
424
  ::i-block-chrome,
@@ -409,7 +431,7 @@ svc-tab-test {
409
431
  background: var(--background-dim, #f3f3f3); }
410
432
 
411
433
  .svc-test-tab__content .svc-plugin-tab__content {
412
- overflow-y: auto; }
434
+ overflow-y: overlay; }
413
435
  .svc-test-tab__content .svc-plugin-tab__content .sv-root-modern .sv-completedpage,
414
436
  .svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_completed_page {
415
437
  margin: 0;
@@ -462,9 +484,6 @@ svc-tab-test {
462
484
  color: var(--foreground, #161616);
463
485
  display: inline-block; }
464
486
 
465
- .svc-test-tab__content.svc-creator-tab__content--with-toolbar .sd-body__navigation {
466
- padding-bottom: calc(8 * var(--base-unit, 8px)); }
467
-
468
487
  .svc-test-tab__content .sd-body--empty {
469
488
  font-family: var(--font-family);
470
489
  font-style: normal;
@@ -1052,8 +1071,6 @@ svc-tab-designer {
1052
1071
  box-sizing: border-box;
1053
1072
  margin-left: auto;
1054
1073
  margin-right: auto; }
1055
- .svc-tab-designer .sd-container-modern .sd-container-modern__title {
1056
- gap: 0; }
1057
1074
  .svc-tab-designer .sd-container-modern.sd-container-modern--static {
1058
1075
  max-width: calc(84 * var(--base-unit, 8px)); }
1059
1076
  .svc-tab-designer .sd-container-modern.sd-container-modern--responsive {
@@ -1083,7 +1100,7 @@ svc-tab-designer {
1083
1100
  .svc-designer-placeholder-page {
1084
1101
  margin-top: calc(2 * var(--base-unit, 8px)); }
1085
1102
 
1086
- .svc-designer-placeholder-page .svc-page__add-new-question {
1103
+ .svc-designer-placeholder-page .svc-page__footer {
1087
1104
  width: calc(33 * var(--base-unit, 8px));
1088
1105
  margin: auto; }
1089
1106
 
@@ -1107,7 +1124,7 @@ svc-tab-designer {
1107
1124
  border: 0; }
1108
1125
  .svc-creator--mobile .svc-page__content .sd-page {
1109
1126
  padding: calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)); }
1110
- .svc-creator--mobile .svc-page__content .svc-page__add-new-question {
1127
+ .svc-creator--mobile .svc-page__content .svc-page__footer {
1111
1128
  margin-left: calc(2 * var(--base-unit, 8px));
1112
1129
  margin-right: calc(2 * var(--base-unit, 8px)); }
1113
1130
 
@@ -1152,6 +1169,78 @@ svc-tab-designer {
1152
1169
  .svc-creator--mobile .svc-page__content-actions .sv-action-bar .sv-action .sv-action__content .sv-action-bar-item__title--with-icon {
1153
1170
  display: none; }
1154
1171
 
1172
+ svc-tab-test {
1173
+ width: 100%;
1174
+ height: 100%;
1175
+ background: var(--background-dim, #f3f3f3); }
1176
+
1177
+ .svc-test-tab__content .svc-plugin-tab__content {
1178
+ overflow-y: overlay; }
1179
+ .svc-test-tab__content .svc-plugin-tab__content .sv-root-modern .sv-completedpage,
1180
+ .svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_completed_page {
1181
+ margin: 0;
1182
+ border: 0;
1183
+ background-color: var(--background-dim, #f3f3f3); }
1184
+ .svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_body {
1185
+ border: 0; }
1186
+ .svc-test-tab__content .svc-plugin-tab__content .svc-preview__test-again {
1187
+ width: calc(33 * var(--base-unit, 8px));
1188
+ margin-left: auto;
1189
+ margin-right: auto;
1190
+ margin-bottom: 72px;
1191
+ margin-top: 8px; }
1192
+
1193
+ .svc-creator-tab__content--with-toolbar.svc-test-tab__content .svc-plugin-tab__content {
1194
+ height: calc(100% - calc(6 * var(--base-unit, 8px))); }
1195
+
1196
+ .svc-test-tab__content-actions {
1197
+ position: relative; }
1198
+ .svc-test-tab__content-actions .sv-action-bar {
1199
+ padding: 0;
1200
+ height: calc(6 * var(--base-unit, 8px));
1201
+ background: var(--background, #fff);
1202
+ border-top: 1px solid var(--border, #d6d6d6);
1203
+ width: 100%;
1204
+ position: absolute; }
1205
+ .svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages {
1206
+ left: 0;
1207
+ right: 0;
1208
+ justify-content: center;
1209
+ gap: calc(1 * var(--base-unit, 8px)); }
1210
+ .svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages .sv-action__content {
1211
+ padding: 0; }
1212
+ .svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages .sv-action-bar-item {
1213
+ margin: 0; }
1214
+ .svc-test-tab__content-actions .sv-action-bar-item {
1215
+ font-family: var(--font-family);
1216
+ font-style: normal;
1217
+ font-weight: 600;
1218
+ font-size: calc(1.5 * var(--base-unit, 8px));
1219
+ line-height: calc(2 * var(--base-unit, 8px));
1220
+ width: 100%;
1221
+ height: calc(4 * var(--base-unit, 8px)); }
1222
+ .svc-test-tab__content-actions .svc-page-selector {
1223
+ max-width: 50%; }
1224
+ .svc-test-tab__content-actions .svc-page-selector .sv-action-bar-item__title {
1225
+ overflow: hidden;
1226
+ white-space: nowrap;
1227
+ text-overflow: ellipsis;
1228
+ color: var(--foreground, #161616);
1229
+ display: inline-block; }
1230
+
1231
+ .svc-test-tab__content .sd-body--empty {
1232
+ font-family: var(--font-family);
1233
+ font-style: normal;
1234
+ font-weight: 400;
1235
+ font-size: calc(2 * var(--base-unit, 8px));
1236
+ color: var(--foreground, #161616);
1237
+ width: 100%;
1238
+ position: absolute;
1239
+ top: 50%;
1240
+ transform: translateY(-50%);
1241
+ text-align: center;
1242
+ overflow: hidden; }
1243
+
1155
1244
  .svc-notifier.svc-notifier--shown {
1156
1245
  visibility: visible;
1157
1246
  opacity: 0.75; }
@@ -1318,7 +1407,7 @@ survey-creator,
1318
1407
 
1319
1408
  .svc-string-editor {
1320
1409
  position: static; }
1321
- .svc-string-editor [contenteditable] {
1410
+ .svc-string-editor [contenteditable="true"] {
1322
1411
  user-select: text;
1323
1412
  -webkit-user-select: text; }
1324
1413
  .svc-string-editor .sv-string-editor {
@@ -1714,11 +1803,19 @@ svc-page {
1714
1803
  .svc-hovered.svc-page__content--selected .svc-page__content-actions {
1715
1804
  display: block; }
1716
1805
 
1717
- .svc-page__add-new-question {
1806
+ .svc-page__footer {
1807
+ overflow: visible;
1718
1808
  margin-left: calc(3 * var(--base-unit, 8px));
1719
- margin-right: calc(3 * var(--base-unit, 8px)); }
1720
- .svc-page__add-new-question .svc-text {
1721
- margin-left: calc(6 * var(--base-unit, 8px)); }
1809
+ margin-right: calc(3 * var(--base-unit, 8px));
1810
+ gap: calc(2 * var(--base-unit, 8px)); }
1811
+ .svc-page__footer .sv-action {
1812
+ flex: 1 1 0; }
1813
+ .svc-page__footer .svc-btn {
1814
+ flex-grow: 1;
1815
+ border: none; }
1816
+
1817
+ .svc-page__add-new-question .svc-text {
1818
+ margin-left: calc(6 * var(--base-unit, 8px)); }
1722
1819
 
1723
1820
  .svc-page__question-type-selector {
1724
1821
  appearance: none;
@@ -1739,8 +1836,18 @@ svc-page {
1739
1836
  .svc-page__question-type-selector:focus {
1740
1837
  background-color: var(--sjs-primary-backcolor-light, rgba(25, 179, 148, 0.1)); }
1741
1838
 
1839
+ .svc-page--drag-over-empty:after {
1840
+ content: " ";
1841
+ position: absolute;
1842
+ background: var(--secondary, #ff9814);
1843
+ left: calc(3 * var(--base-unit, 8px));
1844
+ bottom: calc(11 * var(--base-unit, 8px));
1845
+ width: calc(100% - 48px);
1846
+ height: 4px; }
1847
+
1742
1848
  .svc-row {
1743
- width: 100%; }
1849
+ width: 100%;
1850
+ position: relative; }
1744
1851
 
1745
1852
  .svc-row .sd-row--multiple {
1746
1853
  padding: calc(1 * var(--base-unit, 8px));
@@ -1776,6 +1883,32 @@ svc-page {
1776
1883
  margin-top: calc(2 * var(--base-unit, 8px));
1777
1884
  margin-bottom: calc(2 * var(--base-unit, 8px)); }
1778
1885
 
1886
+ .svc-row--drag-over-top:before {
1887
+ content: " ";
1888
+ position: absolute;
1889
+ left: 0;
1890
+ background: var(--secondary, #ff9814);
1891
+ top: 6px;
1892
+ width: 100%;
1893
+ height: 4px; }
1894
+
1895
+ .svc-row--drag-over-bottom:after {
1896
+ content: " ";
1897
+ position: absolute;
1898
+ left: 0;
1899
+ background: var(--secondary, #ff9814);
1900
+ bottom: -10px;
1901
+ width: 100%;
1902
+ height: 4px; }
1903
+
1904
+ .svc-question__content--panel .svc-row--drag-over-top:before,
1905
+ .sd-panel__content .svc-row--drag-over-top:before {
1906
+ top: -6px; }
1907
+
1908
+ .svc-question__content--panel .svc-row--drag-over-bottom:after,
1909
+ .sd-panel__content .svc-row--drag-over-bottom:after {
1910
+ bottom: -6px; }
1911
+
1779
1912
  svc-question {
1780
1913
  display: block;
1781
1914
  position: absolute;
@@ -1951,6 +2084,34 @@ svc-question {
1951
2084
  height: 100%;
1952
2085
  width: 4px; }
1953
2086
 
2087
+ .svc-question__content--drag-over-top:before {
2088
+ content: " ";
2089
+ position: absolute;
2090
+ left: 0;
2091
+ background: var(--secondary, #ff9814);
2092
+ top: -12px;
2093
+ width: 100%;
2094
+ height: 4px; }
2095
+
2096
+ .svc-question__content--drag-over-bottom:before {
2097
+ content: " ";
2098
+ position: absolute;
2099
+ left: 0;
2100
+ background: var(--secondary, #ff9814);
2101
+ bottom: -12px;
2102
+ width: 100%;
2103
+ height: 4px; }
2104
+
2105
+ .svc-question__content--panel .sd-row > div:first-child .svc-question__content--drag-over-left,
2106
+ .sd-panel__content .sd-row > div:first-child .svc-question__content--drag-over-left {
2107
+ margin-left: 8px;
2108
+ width: calc(100% - 8px); }
2109
+
2110
+ .svc-question__content--panel .sd-row > div:last-child .svc-question__content--drag-over-right,
2111
+ .sd-panel__content .sd-row > div:last-child .svc-question__content--drag-over-right {
2112
+ margin-right: 8px;
2113
+ width: calc(100% - 8px); }
2114
+
1954
2115
  .svc-question__content-actions .sv-action-bar {
1955
2116
  box-sizing: border-box;
1956
2117
  padding: 0;
@@ -2152,24 +2313,7 @@ svc-question .sv-action-bar,
2152
2313
  display: none; }
2153
2314
 
2154
2315
  .svc-question__content--selected .svc-image-question-controls {
2155
- display: block; }
2156
-
2157
- .svc-image-question-controls__button {
2158
- display: inline-block;
2159
- background-color: var(--background, #fff);
2160
- border-radius: 50%;
2161
- width: calc(6 * var(--base-unit, 8px));
2162
- height: calc(6 * var(--base-unit, 8px));
2163
- cursor: pointer; }
2164
- .svc-image-question-controls__button:not(:last-child) {
2165
- margin-right: calc(0.5 * var(--base-unit, 8px)); }
2166
- .svc-image-question-controls__button .sv-svg-icon {
2167
- margin-top: calc(50% - 1.5 * var(--base-unit, 8px));
2168
- margin-left: calc(50% - 1.5 * var(--base-unit, 8px)); }
2169
- .svc-image-question-controls__button use {
2170
- fill: var(--foreground-light, #909090); }
2171
- .svc-image-question-controls__button:hover use {
2172
- fill: var(--primary, #19b394); }
2316
+ display: flex; }
2173
2317
 
2174
2318
  .svc-question__content--image:not(.svc-question__content--empty) {
2175
2319
  padding: calc(4 * var(--base-unit, 8px)) 0 calc(8 * var(--base-unit, 8px)) 0; }
@@ -2184,7 +2328,7 @@ svc-question .sv-action-bar,
2184
2328
  .svc-rating-question-controls {
2185
2329
  position: absolute; }
2186
2330
 
2187
- .svc-question__content--selected-no-border .svc-rating-question-controls.svc-item-value-controls {
2331
+ .svc-question__content--in-popup .svc-rating-question-controls.svc-item-value-controls {
2188
2332
  display: flex; }
2189
2333
 
2190
2334
  .svc-question__content--selected .svc-rating-question-controls.svc-item-value-controls {
@@ -2194,6 +2338,11 @@ svc-question .sv-action-bar,
2194
2338
  margin-inline-start: calc(9 * var(--base-unit, 8px));
2195
2339
  width: calc(100% - 9 * var(--base-unit, 8px)); }
2196
2340
 
2341
+ .svc-question__content .sd-question--table .sd-rating {
2342
+ margin-inline-start: 0;
2343
+ width: fit-content;
2344
+ margin: auto; }
2345
+
2197
2346
  .svc-question__content .svc-rating-question-controls {
2198
2347
  display: flex;
2199
2348
  width: calc(8 * var(--base-unit, 8px));
@@ -2393,34 +2542,9 @@ svc-question .sv-action-bar,
2393
2542
  top: calc(50% - 3 * var(--base-unit, 8px));
2394
2543
  left: calc(50% - 3 * var(--base-unit, 8px)); }
2395
2544
 
2396
- .svc-image-item-value-controls {
2397
- display: flex; }
2398
-
2399
- .svc-image-item-value-controls__button {
2400
- display: block;
2401
- background-color: var(--background, #fff);
2402
- border-radius: 50%;
2403
- width: calc(6 * var(--base-unit, 8px));
2404
- height: calc(6 * var(--base-unit, 8px));
2405
- cursor: pointer;
2406
- outline: none; }
2407
- .svc-image-item-value-controls__button:not(:last-child) {
2408
- margin-right: calc(1 * var(--base-unit, 8px)); }
2409
- .svc-image-item-value-controls__button .sv-svg-icon {
2410
- margin-top: calc(50% - 1.5 * var(--base-unit, 8px));
2411
- margin-left: calc(50% - 1.5 * var(--base-unit, 8px)); }
2412
- .svc-image-item-value-controls__button use {
2413
- fill: var(--foreground-light, #909090); }
2414
-
2415
2545
  .svc-image-item-value--new .svc-image-item-value-controls__button {
2416
2546
  background-color: transparent; }
2417
2547
 
2418
- .svc-image-item-value-controls__choose-file:hover use, .svc-image-item-value-controls__choose-file:focus use {
2419
- fill: var(--primary, #19b394); }
2420
-
2421
- .svc-image-item-value-controls__remove:hover use, .svc-image-item-value-controls__remove:focus use {
2422
- fill: var(--red, #e60a3e); }
2423
-
2424
2548
  .svc-image-item-value-controls__add use {
2425
2549
  fill: var(--primary, #19b394); }
2426
2550
 
@@ -2437,15 +2561,15 @@ svc-question .sv-action-bar,
2437
2561
  .svc-image-item-value__item .sd-imagepicker__item.sd-imagepicker__item {
2438
2562
  width: 100%; }
2439
2563
 
2440
- .svc-question__content--selected .svc-image-item-value-wrapper:hover .svc-image-item-value-controls__drag-area-indicator {
2441
- display: block; }
2442
-
2443
2564
  .svc-image-item-value-controls__drag-area-indicator {
2565
+ display: none;
2444
2566
  cursor: move;
2445
2567
  position: absolute;
2446
2568
  top: calc(1 * var(--base-unit, 8px));
2447
- left: calc(1 * var(--base-unit, 8px));
2448
- display: none; }
2569
+ left: calc(1 * var(--base-unit, 8px)); }
2570
+
2571
+ .svc-question__content--selected .svc-image-item-value-wrapper:hover .svc-image-item-value-controls__drag-area-indicator {
2572
+ display: block; }
2449
2573
 
2450
2574
  .svc-image-item-value-wrapper--ghost .svc-image-item-value-wrapper__ghost {
2451
2575
  display: block; }
@@ -2507,12 +2631,10 @@ svc-question .sv-action-bar,
2507
2631
  .svc-matrix-cell:hover .svc-matrix-cell__question-controls {
2508
2632
  display: block; }
2509
2633
 
2510
- .svc-question__content--selected-no-border {
2511
- padding: 0;
2634
+ .svc-question__content--in-popup {
2512
2635
  width: calc(100% - 25 * var(--base-unit, 8px));
2513
2636
  min-width: calc(70 * var(--base-unit, 8px));
2514
- box-shadow: none;
2515
- background-color: inherit; }
2637
+ padding: calc(5 * var(--base-unit, 8px)); }
2516
2638
 
2517
2639
  .svc-matrix-cell__popup .sv-popup__scrolling-content {
2518
2640
  margin-top: calc(1 * var(--base-unit, 8px));
@@ -2593,6 +2715,10 @@ svc-question .sv-action-bar,
2593
2715
  .svd-test-results .svd-test-results__table table tr .svd-test-results__node-value {
2594
2716
  color: var(--foreground-light, #909090); }
2595
2717
 
2718
+ .svc-designer-header .sd-container-modern__title {
2719
+ gap: 0;
2720
+ column-gap: calc(6 * var(--base-unit, 8px)); }
2721
+
2596
2722
  .svc-logo-image {
2597
2723
  position: relative;
2598
2724
  justify-content: flex-end;
@@ -2631,6 +2757,29 @@ svc-question .sv-action-bar,
2631
2757
  .svc-logo-image-placeholder use {
2632
2758
  fill: var(--foreground-light, #909090); }
2633
2759
 
2760
+ .svc-logo-image-container {
2761
+ position: relative; }
2762
+ .svc-logo-image-container .sd-logo {
2763
+ margin: 0; }
2764
+
2765
+ .svc-logo-image-controls {
2766
+ opacity: 0;
2767
+ width: max-content;
2768
+ position: absolute;
2769
+ top: 50%;
2770
+ left: 50%;
2771
+ transform: translate(-50%, -50%); }
2772
+
2773
+ .svc-logo-image-container {
2774
+ cursor: default; }
2775
+
2776
+ .svc-logo-image-container:not(.svc-logo-image-container--editable) .svc-logo-image-controls {
2777
+ display: none; }
2778
+
2779
+ .svc-logo-image-container--editable:focus-within .svc-logo-image-controls,
2780
+ .svc-logo-image-container--editable:hover .svc-logo-image-controls {
2781
+ opacity: 1; }
2782
+
2634
2783
  .svc-question-link__set-button {
2635
2784
  font-weight: 600;
2636
2785
  cursor: pointer; }
@@ -3718,6 +3867,68 @@ button.spg-action-button--large {
3718
3867
  .spg-link {
3719
3868
  display: flex; }
3720
3869
 
3870
+ .spg-theme-builder-root .spg-row--multiple .spg-spin-editor .spg-input-container__buttons-container {
3871
+ display: none; }
3872
+
3873
+ .spg-theme-builder-root .spg-row--multiple .spg-question__header--location--left {
3874
+ min-width: auto; }
3875
+
3876
+ .spg-theme-builder-root .spg-row--multiple > div {
3877
+ flex: 1 1 0;
3878
+ min-width: calc(12.5 * var(--base-unit, 8px)); }
3879
+ .spg-theme-builder-root .spg-row--multiple > div input {
3880
+ min-width: 0; }
3881
+ .spg-theme-builder-root .spg-row--multiple > div .spg-question--location--left {
3882
+ height: calc(6 * var(--base-unit, 8px));
3883
+ box-sizing: border-box; }
3884
+ .spg-theme-builder-root .spg-row--multiple > div .spg-question--location--left .spg-input {
3885
+ height: auto; }
3886
+
3887
+ .spg-theme-builder-root .sv-button-group {
3888
+ overflow: hidden; }
3889
+
3890
+ .spg-theme-builder-root .spg-question__header--location--left {
3891
+ width: max-content;
3892
+ flex: 0 0; }
3893
+ .spg-theme-builder-root .spg-question__header--location--left .spg-question__title {
3894
+ white-space: nowrap;
3895
+ overflow: hidden;
3896
+ text-overflow: ellipsis; }
3897
+
3898
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content {
3899
+ padding: 0;
3900
+ padding-bottom: calc(5 * var(--base-unit, 8px));
3901
+ box-shadow: none; }
3902
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__title {
3903
+ background-color: transparent;
3904
+ box-shadow: none;
3905
+ padding: calc(1 * var(--base-unit, 8px)) 0; }
3906
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content::after {
3907
+ content: " ";
3908
+ display: block;
3909
+ position: relative;
3910
+ left: calc(-4 * var(--base-unit, 8px));
3911
+ top: calc(5 * var(--base-unit, 8px));
3912
+ width: calc(8 * var(--base-unit, 8px) + 100%);
3913
+ height: 1px;
3914
+ background-color: var(--border, #d6d6d6); }
3915
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content > .spg-row:first-of-type {
3916
+ margin-top: 0; }
3917
+
3918
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content {
3919
+ padding-bottom: 0; }
3920
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content::after {
3921
+ content: none; }
3922
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content .spg-row {
3923
+ margin-top: calc(1 * var(--base-unit, 8px)); }
3924
+ .spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content .spg-row:first-of-type {
3925
+ margin-top: 0; }
3926
+
3927
+ .spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content {
3928
+ padding-bottom: 0; }
3929
+ .spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content::after {
3930
+ content: none; }
3931
+
3721
3932
  .spg-root-modern {
3722
3933
  width: 100%;
3723
3934
  border-right: 1px solid var(--border, #d6d6d6);