survey-creator-core 1.9.98 → 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/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/package.json +7 -2
- package/survey-creator-core.css +47 -40
- package/survey-creator-core.fontless.css +46 -39
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +5 -5
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +228 -92
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +6 -6
- package/survey-creator-core.min.js +2 -2
- package/typings/components/tabs/theme.d.ts +2 -1
- package/typings/creator-base.d.ts +32 -2
- package/typings/creator-settings.d.ts +3 -0
- package/typings/custom-questions/question-color.d.ts +1 -0
- package/typings/custom-questions/question-file.d.ts +1 -0
- package/typings/property-grid/condition-survey.d.ts +1 -0
- package/typings/property-grid-theme/property-grid.d.ts +2 -0
- package/typings/utils/utils.d.ts +1 -1
package/fonts.fontless.css
CHANGED
package/fonts.fontless.min.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "survey-creator-core",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.99",
|
|
4
4
|
"description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Survey",
|
|
@@ -28,8 +28,13 @@
|
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"ace-builds": "^1.4.12"
|
|
30
30
|
},
|
|
31
|
+
"peerDependenciesMeta": {
|
|
32
|
+
"ace-builds": {
|
|
33
|
+
"optional": true
|
|
34
|
+
}
|
|
35
|
+
},
|
|
31
36
|
"dependencies": {
|
|
32
|
-
"survey-core": "1.9.
|
|
37
|
+
"survey-core": "1.9.99"
|
|
33
38
|
},
|
|
34
39
|
"devDependencies": {}
|
|
35
40
|
}
|
package/survey-creator-core.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.99
|
|
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,7 +225,7 @@
|
|
|
225
225
|
}
|
|
226
226
|
|
|
227
227
|
/*# sourceMappingURL=fonts.fontless.css.map*//*!
|
|
228
|
-
* SurveyJS Creator v1.9.
|
|
228
|
+
* SurveyJS Creator v1.9.99
|
|
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
|
|
@@ -2090,6 +2090,7 @@ svc-page {
|
|
|
2090
2090
|
|
|
2091
2091
|
.svc-page__content {
|
|
2092
2092
|
position: relative;
|
|
2093
|
+
border-radius: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2093
2094
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(0 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2094
2095
|
box-sizing: border-box;
|
|
2095
2096
|
width: 100%;
|
|
@@ -2114,15 +2115,10 @@ svc-page {
|
|
|
2114
2115
|
background: var(--sjs-secondary-backcolor-semi-light, rgba(255, 152, 20, 0.1));
|
|
2115
2116
|
}
|
|
2116
2117
|
|
|
2117
|
-
.svc-creator .svc-page .svc-page__content--selected,
|
|
2118
|
-
.svc-creator .svc-page .svc-page__content--selected:focus,
|
|
2119
|
-
.svc-hovered {
|
|
2120
|
-
border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2121
|
-
}
|
|
2122
2118
|
.svc-creator .svc-page .svc-page__content--selected.svc-page__content--selected,
|
|
2123
2119
|
.svc-creator .svc-page .svc-page__content--selected:focus.svc-page__content--selected,
|
|
2124
2120
|
.svc-hovered.svc-page__content--selected {
|
|
2125
|
-
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814))
|
|
2121
|
+
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2126
2122
|
background: var(--sjs-secondary-backcolor-semi-light, rgba(255, 152, 20, 0.1));
|
|
2127
2123
|
}
|
|
2128
2124
|
.svc-creator .svc-page .svc-page__content--selected.svc-page__content--selected .svc-page__content-actions,
|
|
@@ -2396,15 +2392,15 @@ svc-question {
|
|
|
2396
2392
|
}
|
|
2397
2393
|
|
|
2398
2394
|
.svc-question__content:focus,
|
|
2399
|
-
.svc-
|
|
2395
|
+
.svc-hovered > .svc-question__content {
|
|
2400
2396
|
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25)));
|
|
2401
2397
|
}
|
|
2402
2398
|
|
|
2403
|
-
.svc-
|
|
2404
|
-
|
|
2405
|
-
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814)) inset;
|
|
2399
|
+
.svc-question__content--selected:not(.svc-question__content--dragged) {
|
|
2400
|
+
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2406
2401
|
}
|
|
2407
|
-
|
|
2402
|
+
|
|
2403
|
+
.svc-question__content--selected:not(.svc-question__content--dragged) > .svc-question__content-actions,
|
|
2408
2404
|
.svc-creator:not(.svc-creator--mobile) .svc-page .svc-hovered > .svc-question__content:not(.svc-question__content--dragged) > .svc-question__content-actions {
|
|
2409
2405
|
display: block;
|
|
2410
2406
|
}
|
|
@@ -2471,7 +2467,8 @@ svc-question {
|
|
|
2471
2467
|
|
|
2472
2468
|
.svc-question__content--drag-over-inside .svc-panel__placeholder_frame,
|
|
2473
2469
|
.svc-hovered > .svc-question__content--drag-over-inside .svc-panel__placeholder_frame {
|
|
2474
|
-
box-shadow: 0 0 0
|
|
2470
|
+
box-shadow: 0 0 0 1px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
2471
|
+
border: 1px solid var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
2475
2472
|
background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
|
2476
2473
|
}
|
|
2477
2474
|
.svc-question__content--drag-over-inside .svc-panel__placeholder_frame > .svc-question__content-actions,
|
|
@@ -2622,28 +2619,34 @@ svc-question .sv-action-bar,
|
|
|
2622
2619
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
|
2623
2620
|
}
|
|
2624
2621
|
|
|
2625
|
-
.sd-panel
|
|
2626
|
-
.sd-row--multiple
|
|
2627
|
-
|
|
2628
|
-
|
|
2622
|
+
.sd-panel .svc-question__content--image:not(.svc-question__content--empty),
|
|
2623
|
+
.sd-row--multiple .svc-question__content--image:not(.svc-question__content--empty) {
|
|
2624
|
+
padding-left: 1px;
|
|
2625
|
+
padding-right: 1px;
|
|
2626
|
+
}
|
|
2627
|
+
.sd-panel .svc-question__content .sd-table-wrapper::before,
|
|
2628
|
+
.sd-row--multiple .svc-question__content .sd-table-wrapper::before {
|
|
2629
|
+
left: calc(-1 * var(--sd-base-padding) + 1px);
|
|
2630
|
+
}
|
|
2631
|
+
.sd-panel .svc-question__content .sd-table-wrapper::after,
|
|
2632
|
+
.sd-row--multiple .svc-question__content .sd-table-wrapper::after {
|
|
2633
|
+
right: calc(-1 * var(--sd-base-padding) + 1px);
|
|
2629
2634
|
}
|
|
2630
2635
|
.sd-panel .svc-question__content,
|
|
2631
2636
|
.sd-row--multiple .svc-question__content {
|
|
2632
2637
|
border-radius: 0;
|
|
2633
|
-
|
|
2634
|
-
.sd-panel .svc-question__content.svc-question__content--selected,
|
|
2635
|
-
.sd-row--multiple .svc-question__content.svc-question__content--selected {
|
|
2636
|
-
border: 1px solid transparent;
|
|
2637
|
-
box-shadow: none;
|
|
2638
|
-
}
|
|
2639
|
-
.sd-panel .svc-question__content:hover,
|
|
2640
|
-
.sd-row--multiple .svc-question__content:hover {
|
|
2641
|
-
border: 1px solid transparent;
|
|
2638
|
+
border: 1px dashed var(--sjs-border-default, var(--border, #d6d6d6));
|
|
2642
2639
|
box-shadow: none;
|
|
2643
2640
|
}
|
|
2644
|
-
.sd-
|
|
2641
|
+
.sd-panel .svc-hovered .svc-question__content:not(.svc-question__content--dragged),
|
|
2642
|
+
.sd-row--multiple .svc-hovered .svc-question__content:not(.svc-question__content--dragged) {
|
|
2645
2643
|
border: 1px solid var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25)));
|
|
2646
|
-
box-shadow: 0 0 0 1px var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25)));
|
|
2644
|
+
box-shadow: 0 0 0 1px var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25))) inset;
|
|
2645
|
+
}
|
|
2646
|
+
.sd-panel .svc-question__content.svc-question__content--selected:not(.svc-question__content--dragged),
|
|
2647
|
+
.sd-row--multiple .svc-question__content.svc-question__content--selected:not(.svc-question__content--dragged) {
|
|
2648
|
+
border: 1px solid var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2649
|
+
box-shadow: 0 0 0 1px var(--sjs-secondary-backcolor, var(--secondary, #ff9814)) inset;
|
|
2647
2650
|
}
|
|
2648
2651
|
|
|
2649
2652
|
.sd-panel .svc-row--ghost.svc-row--ghost .svc-question__content.svc-question__content {
|
|
@@ -2780,13 +2783,6 @@ svc-question .sv-action-bar,
|
|
|
2780
2783
|
.svc-question__content--ranking .svc-carry-forward-panel {
|
|
2781
2784
|
margin-top: 0;
|
|
2782
2785
|
}
|
|
2783
|
-
|
|
2784
|
-
.svc-question__content .sd-table-wrapper::before {
|
|
2785
|
-
left: calc(-1 * var(--sd-base-padding) + 2px);
|
|
2786
|
-
}
|
|
2787
|
-
.svc-question__content .sd-table-wrapper::after {
|
|
2788
|
-
right: calc(-1 * var(--sd-base-padding) + 2px);
|
|
2789
|
-
}
|
|
2790
2786
|
.svc-question__dropdown-choices {
|
|
2791
2787
|
margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2792
2788
|
}
|
|
@@ -2820,7 +2816,10 @@ svc-question .sv-action-bar,
|
|
|
2820
2816
|
}
|
|
2821
2817
|
|
|
2822
2818
|
.svc-question__content--image:not(.svc-question__content--empty) {
|
|
2823
|
-
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)))
|
|
2819
|
+
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px))) 0 calc(8 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|
|
2820
|
+
}
|
|
2821
|
+
.svc-question__content--image:not(.svc-question__content--empty) .sd-image__image {
|
|
2822
|
+
border-radius: 0;
|
|
2824
2823
|
}
|
|
2825
2824
|
|
|
2826
2825
|
.svc-question__content--image.svc-question__content--empty .sd-file,
|
|
@@ -4253,7 +4252,7 @@ button.spg-action-button--large {
|
|
|
4253
4252
|
.spg-input__edit-button:active {
|
|
4254
4253
|
opacity: 0.5;
|
|
4255
4254
|
}
|
|
4256
|
-
.spg-input__edit-button:disabled {
|
|
4255
|
+
.spg-input__edit-button.spg-input__edit-button--disabled, .spg-input__edit-button:disabled {
|
|
4257
4256
|
opacity: 0.25;
|
|
4258
4257
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
|
4259
4258
|
}
|
|
@@ -4290,6 +4289,10 @@ button.spg-action-button--large {
|
|
|
4290
4289
|
background-color: transparent;
|
|
4291
4290
|
}
|
|
4292
4291
|
|
|
4292
|
+
.spg-input-container__input:disabled {
|
|
4293
|
+
opacity: 0.25;
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4293
4296
|
.spg-input-container__buttons-container {
|
|
4294
4297
|
display: flex;
|
|
4295
4298
|
gap: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
@@ -4707,6 +4710,10 @@ button.spg-action-button--large {
|
|
|
4707
4710
|
fill: var(--sjs-general-backcolor, var(--background, #fff));
|
|
4708
4711
|
}
|
|
4709
4712
|
|
|
4713
|
+
.spg-color-editor__color-swatch--disabled .sv-svg-icon {
|
|
4714
|
+
opacity: 0.25;
|
|
4715
|
+
}
|
|
4716
|
+
|
|
4710
4717
|
.spg-color-editor .spg-input__edit-button + * {
|
|
4711
4718
|
margin-inline-end: calc(-0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4712
4719
|
}
|
|
@@ -4737,8 +4744,8 @@ button.spg-action-button--large {
|
|
|
4737
4744
|
min-width: auto;
|
|
4738
4745
|
}
|
|
4739
4746
|
.spg-theme-builder-root .spg-row--multiple > div {
|
|
4740
|
-
flex: 1 1 0;
|
|
4741
|
-
min-width:
|
|
4747
|
+
flex: 1 1 calc(50% - var(--sjs-base-unit, var(--base-unit, 8px)) * 0.5);
|
|
4748
|
+
min-width: auto;
|
|
4742
4749
|
}
|
|
4743
4750
|
.spg-theme-builder-root .spg-row--multiple > div input {
|
|
4744
4751
|
min-width: 0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.99
|
|
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
|
|
@@ -1864,6 +1864,7 @@ svc-page {
|
|
|
1864
1864
|
|
|
1865
1865
|
.svc-page__content {
|
|
1866
1866
|
position: relative;
|
|
1867
|
+
border-radius: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
1867
1868
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(0 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
1868
1869
|
box-sizing: border-box;
|
|
1869
1870
|
width: 100%;
|
|
@@ -1888,15 +1889,10 @@ svc-page {
|
|
|
1888
1889
|
background: var(--sjs-secondary-backcolor-semi-light, rgba(255, 152, 20, 0.1));
|
|
1889
1890
|
}
|
|
1890
1891
|
|
|
1891
|
-
.svc-creator .svc-page .svc-page__content--selected,
|
|
1892
|
-
.svc-creator .svc-page .svc-page__content--selected:focus,
|
|
1893
|
-
.svc-hovered {
|
|
1894
|
-
border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
1895
|
-
}
|
|
1896
1892
|
.svc-creator .svc-page .svc-page__content--selected.svc-page__content--selected,
|
|
1897
1893
|
.svc-creator .svc-page .svc-page__content--selected:focus.svc-page__content--selected,
|
|
1898
1894
|
.svc-hovered.svc-page__content--selected {
|
|
1899
|
-
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814))
|
|
1895
|
+
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
1900
1896
|
background: var(--sjs-secondary-backcolor-semi-light, rgba(255, 152, 20, 0.1));
|
|
1901
1897
|
}
|
|
1902
1898
|
.svc-creator .svc-page .svc-page__content--selected.svc-page__content--selected .svc-page__content-actions,
|
|
@@ -2170,15 +2166,15 @@ svc-question {
|
|
|
2170
2166
|
}
|
|
2171
2167
|
|
|
2172
2168
|
.svc-question__content:focus,
|
|
2173
|
-
.svc-
|
|
2169
|
+
.svc-hovered > .svc-question__content {
|
|
2174
2170
|
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25)));
|
|
2175
2171
|
}
|
|
2176
2172
|
|
|
2177
|
-
.svc-
|
|
2178
|
-
|
|
2179
|
-
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814)) inset;
|
|
2173
|
+
.svc-question__content--selected:not(.svc-question__content--dragged) {
|
|
2174
|
+
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2180
2175
|
}
|
|
2181
|
-
|
|
2176
|
+
|
|
2177
|
+
.svc-question__content--selected:not(.svc-question__content--dragged) > .svc-question__content-actions,
|
|
2182
2178
|
.svc-creator:not(.svc-creator--mobile) .svc-page .svc-hovered > .svc-question__content:not(.svc-question__content--dragged) > .svc-question__content-actions {
|
|
2183
2179
|
display: block;
|
|
2184
2180
|
}
|
|
@@ -2245,7 +2241,8 @@ svc-question {
|
|
|
2245
2241
|
|
|
2246
2242
|
.svc-question__content--drag-over-inside .svc-panel__placeholder_frame,
|
|
2247
2243
|
.svc-hovered > .svc-question__content--drag-over-inside .svc-panel__placeholder_frame {
|
|
2248
|
-
box-shadow: 0 0 0
|
|
2244
|
+
box-shadow: 0 0 0 1px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
2245
|
+
border: 1px solid var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
2249
2246
|
background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
|
2250
2247
|
}
|
|
2251
2248
|
.svc-question__content--drag-over-inside .svc-panel__placeholder_frame > .svc-question__content-actions,
|
|
@@ -2396,28 +2393,34 @@ svc-question .sv-action-bar,
|
|
|
2396
2393
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
|
2397
2394
|
}
|
|
2398
2395
|
|
|
2399
|
-
.sd-panel
|
|
2400
|
-
.sd-row--multiple
|
|
2401
|
-
|
|
2402
|
-
|
|
2396
|
+
.sd-panel .svc-question__content--image:not(.svc-question__content--empty),
|
|
2397
|
+
.sd-row--multiple .svc-question__content--image:not(.svc-question__content--empty) {
|
|
2398
|
+
padding-left: 1px;
|
|
2399
|
+
padding-right: 1px;
|
|
2400
|
+
}
|
|
2401
|
+
.sd-panel .svc-question__content .sd-table-wrapper::before,
|
|
2402
|
+
.sd-row--multiple .svc-question__content .sd-table-wrapper::before {
|
|
2403
|
+
left: calc(-1 * var(--sd-base-padding) + 1px);
|
|
2404
|
+
}
|
|
2405
|
+
.sd-panel .svc-question__content .sd-table-wrapper::after,
|
|
2406
|
+
.sd-row--multiple .svc-question__content .sd-table-wrapper::after {
|
|
2407
|
+
right: calc(-1 * var(--sd-base-padding) + 1px);
|
|
2403
2408
|
}
|
|
2404
2409
|
.sd-panel .svc-question__content,
|
|
2405
2410
|
.sd-row--multiple .svc-question__content {
|
|
2406
2411
|
border-radius: 0;
|
|
2407
|
-
|
|
2408
|
-
.sd-panel .svc-question__content.svc-question__content--selected,
|
|
2409
|
-
.sd-row--multiple .svc-question__content.svc-question__content--selected {
|
|
2410
|
-
border: 1px solid transparent;
|
|
2411
|
-
box-shadow: none;
|
|
2412
|
-
}
|
|
2413
|
-
.sd-panel .svc-question__content:hover,
|
|
2414
|
-
.sd-row--multiple .svc-question__content:hover {
|
|
2415
|
-
border: 1px solid transparent;
|
|
2412
|
+
border: 1px dashed var(--sjs-border-default, var(--border, #d6d6d6));
|
|
2416
2413
|
box-shadow: none;
|
|
2417
2414
|
}
|
|
2418
|
-
.sd-
|
|
2415
|
+
.sd-panel .svc-hovered .svc-question__content:not(.svc-question__content--dragged),
|
|
2416
|
+
.sd-row--multiple .svc-hovered .svc-question__content:not(.svc-question__content--dragged) {
|
|
2419
2417
|
border: 1px solid var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25)));
|
|
2420
|
-
box-shadow: 0 0 0 1px var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25)));
|
|
2418
|
+
box-shadow: 0 0 0 1px var(--sjs-secondary-backcolor-light, var(--secondary-light, rgba(255, 152, 20, 0.25))) inset;
|
|
2419
|
+
}
|
|
2420
|
+
.sd-panel .svc-question__content.svc-question__content--selected:not(.svc-question__content--dragged),
|
|
2421
|
+
.sd-row--multiple .svc-question__content.svc-question__content--selected:not(.svc-question__content--dragged) {
|
|
2422
|
+
border: 1px solid var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2423
|
+
box-shadow: 0 0 0 1px var(--sjs-secondary-backcolor, var(--secondary, #ff9814)) inset;
|
|
2421
2424
|
}
|
|
2422
2425
|
|
|
2423
2426
|
.sd-panel .svc-row--ghost.svc-row--ghost .svc-question__content.svc-question__content {
|
|
@@ -2554,13 +2557,6 @@ svc-question .sv-action-bar,
|
|
|
2554
2557
|
.svc-question__content--ranking .svc-carry-forward-panel {
|
|
2555
2558
|
margin-top: 0;
|
|
2556
2559
|
}
|
|
2557
|
-
|
|
2558
|
-
.svc-question__content .sd-table-wrapper::before {
|
|
2559
|
-
left: calc(-1 * var(--sd-base-padding) + 2px);
|
|
2560
|
-
}
|
|
2561
|
-
.svc-question__content .sd-table-wrapper::after {
|
|
2562
|
-
right: calc(-1 * var(--sd-base-padding) + 2px);
|
|
2563
|
-
}
|
|
2564
2560
|
.svc-question__dropdown-choices {
|
|
2565
2561
|
margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2566
2562
|
}
|
|
@@ -2594,7 +2590,10 @@ svc-question .sv-action-bar,
|
|
|
2594
2590
|
}
|
|
2595
2591
|
|
|
2596
2592
|
.svc-question__content--image:not(.svc-question__content--empty) {
|
|
2597
|
-
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)))
|
|
2593
|
+
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px))) 0 calc(8 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|
|
2594
|
+
}
|
|
2595
|
+
.svc-question__content--image:not(.svc-question__content--empty) .sd-image__image {
|
|
2596
|
+
border-radius: 0;
|
|
2598
2597
|
}
|
|
2599
2598
|
|
|
2600
2599
|
.svc-question__content--image.svc-question__content--empty .sd-file,
|
|
@@ -4027,7 +4026,7 @@ button.spg-action-button--large {
|
|
|
4027
4026
|
.spg-input__edit-button:active {
|
|
4028
4027
|
opacity: 0.5;
|
|
4029
4028
|
}
|
|
4030
|
-
.spg-input__edit-button:disabled {
|
|
4029
|
+
.spg-input__edit-button.spg-input__edit-button--disabled, .spg-input__edit-button:disabled {
|
|
4031
4030
|
opacity: 0.25;
|
|
4032
4031
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
|
4033
4032
|
}
|
|
@@ -4064,6 +4063,10 @@ button.spg-action-button--large {
|
|
|
4064
4063
|
background-color: transparent;
|
|
4065
4064
|
}
|
|
4066
4065
|
|
|
4066
|
+
.spg-input-container__input:disabled {
|
|
4067
|
+
opacity: 0.25;
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4067
4070
|
.spg-input-container__buttons-container {
|
|
4068
4071
|
display: flex;
|
|
4069
4072
|
gap: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
@@ -4481,6 +4484,10 @@ button.spg-action-button--large {
|
|
|
4481
4484
|
fill: var(--sjs-general-backcolor, var(--background, #fff));
|
|
4482
4485
|
}
|
|
4483
4486
|
|
|
4487
|
+
.spg-color-editor__color-swatch--disabled .sv-svg-icon {
|
|
4488
|
+
opacity: 0.25;
|
|
4489
|
+
}
|
|
4490
|
+
|
|
4484
4491
|
.spg-color-editor .spg-input__edit-button + * {
|
|
4485
4492
|
margin-inline-end: calc(-0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4486
4493
|
}
|
|
@@ -4511,8 +4518,8 @@ button.spg-action-button--large {
|
|
|
4511
4518
|
min-width: auto;
|
|
4512
4519
|
}
|
|
4513
4520
|
.spg-theme-builder-root .spg-row--multiple > div {
|
|
4514
|
-
flex: 1 1 0;
|
|
4515
|
-
min-width:
|
|
4521
|
+
flex: 1 1 calc(50% - var(--sjs-base-unit, var(--base-unit, 8px)) * 0.5);
|
|
4522
|
+
min-width: auto;
|
|
4516
4523
|
}
|
|
4517
4524
|
.spg-theme-builder-root .spg-row--multiple > div input {
|
|
4518
4525
|
min-width: 0;
|