survey-creator-core 1.9.96 → 1.9.98
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 +2 -2
- package/survey-creator-core.css +46 -22
- package/survey-creator-core.fontless.css +45 -21
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +9 -9
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +614 -289
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +10 -10
- package/survey-creator-core.min.js +2 -2
- package/typings/components/page.d.ts +2 -0
- package/typings/components/string-editor.d.ts +1 -1
- package/typings/components/tabs/logic-theme.d.ts +3 -0
- package/typings/components/tabs/theme-custom-questions/element-settings.d.ts +7 -1
- package/typings/components/tabs/theme-custom-questions/font-settings.d.ts +7 -0
- package/typings/components/tabs/theme.d.ts +6 -1
- package/typings/components/tabs/translation-theme.d.ts +0 -1
- package/typings/creator-base.d.ts +15 -3
- package/typings/creator-settings.d.ts +1 -0
- package/typings/custom-questions/question-spin-editor.d.ts +1 -0
- package/typings/editorLocalization.d.ts +5 -0
- package/typings/localization/english.d.ts +5 -0
- package/typings/plugins/undo-redo/undo-redo-controller.d.ts +1 -0
- package/typings/plugins/undo-redo/undo-redo-manager.d.ts +7 -0
- package/typings/property-grid/index.d.ts +3 -0
- package/typings/property-grid/matrices.d.ts +1 -0
- package/typings/property-grid-theme/property-grid.d.ts +4 -1
- package/typings/textWorker.d.ts +33 -6
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.98",
|
|
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.
|
|
32
|
+
"survey-core": "1.9.98"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {}
|
|
35
35
|
}
|
package/survey-creator-core.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.98
|
|
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.98
|
|
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
|
|
@@ -1227,6 +1227,7 @@ svc-tab-designer {
|
|
|
1227
1227
|
flex-grow: 1;
|
|
1228
1228
|
height: 100%;
|
|
1229
1229
|
overflow-y: scroll;
|
|
1230
|
+
position: static;
|
|
1230
1231
|
}
|
|
1231
1232
|
|
|
1232
1233
|
.svc-tab-designer--with-place-holder .svc-tab-designer_content {
|
|
@@ -1919,11 +1920,9 @@ survey-creator .svc-page-navigator__selector:hover .svc-page-navigator__navigato
|
|
|
1919
1920
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
1920
1921
|
}
|
|
1921
1922
|
|
|
1922
|
-
.svc-page-navigator__selector--opened {
|
|
1923
|
-
opacity: 0.5;
|
|
1924
|
-
}
|
|
1925
1923
|
.svc-page-navigator__selector--opened .svc-page-navigator__navigator-icon {
|
|
1926
1924
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
|
1925
|
+
opacity: 0.5;
|
|
1927
1926
|
}
|
|
1928
1927
|
.svc-page-navigator__selector--opened .svc-page-navigator__navigator-icon use {
|
|
1929
1928
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
@@ -2178,9 +2177,9 @@ svc-page {
|
|
|
2178
2177
|
position: absolute;
|
|
2179
2178
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2180
2179
|
left: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2181
|
-
bottom: calc(11 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2180
|
+
bottom: calc(11.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2182
2181
|
width: calc(100% - 48px);
|
|
2183
|
-
height:
|
|
2182
|
+
height: 2px;
|
|
2184
2183
|
}
|
|
2185
2184
|
.svc-row {
|
|
2186
2185
|
width: 100%;
|
|
@@ -2248,7 +2247,7 @@ svc-page {
|
|
|
2248
2247
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2249
2248
|
top: 6px;
|
|
2250
2249
|
width: 100%;
|
|
2251
|
-
height:
|
|
2250
|
+
height: 2px;
|
|
2252
2251
|
}
|
|
2253
2252
|
|
|
2254
2253
|
.svc-row--drag-over-bottom:after {
|
|
@@ -2258,16 +2257,16 @@ svc-page {
|
|
|
2258
2257
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2259
2258
|
bottom: -10px;
|
|
2260
2259
|
width: 100%;
|
|
2261
|
-
height:
|
|
2260
|
+
height: 2px;
|
|
2262
2261
|
}
|
|
2263
2262
|
|
|
2264
2263
|
.svc-question__content--panel .svc-row--drag-over-top:before,
|
|
2265
2264
|
.sd-panel__content .svc-row--drag-over-top:before {
|
|
2266
|
-
top: -
|
|
2265
|
+
top: -4px;
|
|
2267
2266
|
}
|
|
2268
2267
|
.svc-question__content--panel .svc-row--drag-over-bottom:after,
|
|
2269
2268
|
.sd-panel__content .svc-row--drag-over-bottom:after {
|
|
2270
|
-
bottom: -
|
|
2269
|
+
bottom: -4px;
|
|
2271
2270
|
}
|
|
2272
2271
|
.svc-carry-forward-panel {
|
|
2273
2272
|
box-sizing: border-box;
|
|
@@ -2331,7 +2330,6 @@ svc-question {
|
|
|
2331
2330
|
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(8 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2332
2331
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
|
2333
2332
|
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
|
2334
|
-
border: 2px solid transparent;
|
|
2335
2333
|
outline: none;
|
|
2336
2334
|
}
|
|
2337
2335
|
|
|
@@ -2404,7 +2402,7 @@ svc-question {
|
|
|
2404
2402
|
|
|
2405
2403
|
.svc-creator .svc-page .svc-question__content--selected:not(.svc-question__content--dragged).svc-question__content--selected,
|
|
2406
2404
|
.svc-creator:not(.svc-creator--mobile) .svc-page .svc-hovered > .svc-question__content:not(.svc-question__content--dragged).svc-question__content--selected {
|
|
2407
|
-
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2405
|
+
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814)) inset;
|
|
2408
2406
|
}
|
|
2409
2407
|
.svc-creator .svc-page .svc-question__content--selected:not(.svc-question__content--dragged) > .svc-question__content-actions,
|
|
2410
2408
|
.svc-creator:not(.svc-creator--mobile) .svc-page .svc-hovered > .svc-question__content:not(.svc-question__content--dragged) > .svc-question__content-actions {
|
|
@@ -2484,21 +2482,21 @@ svc-question {
|
|
|
2484
2482
|
.svc-question__content--drag-over-left:before {
|
|
2485
2483
|
content: " ";
|
|
2486
2484
|
position: absolute;
|
|
2487
|
-
left: -
|
|
2485
|
+
left: -6px;
|
|
2488
2486
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2489
2487
|
top: 0;
|
|
2490
2488
|
height: 100%;
|
|
2491
|
-
width:
|
|
2489
|
+
width: 2px;
|
|
2492
2490
|
}
|
|
2493
2491
|
|
|
2494
2492
|
.svc-question__content--drag-over-right:after {
|
|
2495
2493
|
content: " ";
|
|
2496
2494
|
position: absolute;
|
|
2497
|
-
right: -
|
|
2495
|
+
right: -6px;
|
|
2498
2496
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2499
2497
|
top: 0;
|
|
2500
2498
|
height: 100%;
|
|
2501
|
-
width:
|
|
2499
|
+
width: 2px;
|
|
2502
2500
|
}
|
|
2503
2501
|
|
|
2504
2502
|
.svc-question__content--drag-over-top:before {
|
|
@@ -2506,9 +2504,9 @@ svc-question {
|
|
|
2506
2504
|
position: absolute;
|
|
2507
2505
|
left: 0;
|
|
2508
2506
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2509
|
-
top: -
|
|
2507
|
+
top: -9px;
|
|
2510
2508
|
width: 100%;
|
|
2511
|
-
height:
|
|
2509
|
+
height: 2px;
|
|
2512
2510
|
}
|
|
2513
2511
|
|
|
2514
2512
|
.svc-question__content--drag-over-bottom:before {
|
|
@@ -2516,9 +2514,9 @@ svc-question {
|
|
|
2516
2514
|
position: absolute;
|
|
2517
2515
|
left: 0;
|
|
2518
2516
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2519
|
-
bottom: -
|
|
2517
|
+
bottom: -9px;
|
|
2520
2518
|
width: 100%;
|
|
2521
|
-
height:
|
|
2519
|
+
height: 2px;
|
|
2522
2520
|
}
|
|
2523
2521
|
|
|
2524
2522
|
.svc-question__content--panel .sd-row > div:first-child .svc-question__content--drag-over-left,
|
|
@@ -2531,6 +2529,14 @@ svc-question {
|
|
|
2531
2529
|
margin-right: 8px;
|
|
2532
2530
|
width: calc(100% - 8px);
|
|
2533
2531
|
}
|
|
2532
|
+
.svc-question__content--panel .svc-question__content--drag-over-top:before,
|
|
2533
|
+
.sd-panel__content .svc-question__content--drag-over-top:before {
|
|
2534
|
+
top: -6px;
|
|
2535
|
+
}
|
|
2536
|
+
.svc-question__content--panel .svc-question__content--drag-over-bottom:before,
|
|
2537
|
+
.sd-panel__content .svc-question__content--drag-over-bottom:before {
|
|
2538
|
+
bottom: -6px;
|
|
2539
|
+
}
|
|
2534
2540
|
|
|
2535
2541
|
.svc-question__content-actions .sv-action-bar {
|
|
2536
2542
|
box-sizing: border-box;
|
|
@@ -2774,6 +2780,13 @@ svc-question .sv-action-bar,
|
|
|
2774
2780
|
.svc-question__content--ranking .svc-carry-forward-panel {
|
|
2775
2781
|
margin-top: 0;
|
|
2776
2782
|
}
|
|
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
|
+
}
|
|
2777
2790
|
.svc-question__dropdown-choices {
|
|
2778
2791
|
margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2779
2792
|
}
|
|
@@ -2807,7 +2820,7 @@ svc-question .sv-action-bar,
|
|
|
2807
2820
|
}
|
|
2808
2821
|
|
|
2809
2822
|
.svc-question__content--image:not(.svc-question__content--empty) {
|
|
2810
|
-
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)))
|
|
2823
|
+
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px))) 2px calc(8 * var(--sjs-base-unit, var(--base-unit, 8px))) 2px;
|
|
2811
2824
|
}
|
|
2812
2825
|
|
|
2813
2826
|
.svc-question__content--image.svc-question__content--empty .sd-file,
|
|
@@ -3789,6 +3802,7 @@ svc-toolbox {
|
|
|
3789
3802
|
width: 3px;
|
|
3790
3803
|
height: 100%;
|
|
3791
3804
|
position: absolute;
|
|
3805
|
+
z-index: 1;
|
|
3792
3806
|
top: 0;
|
|
3793
3807
|
background-color: transparent;
|
|
3794
3808
|
cursor: e-resize;
|
|
@@ -4293,6 +4307,10 @@ button.spg-action-button--large {
|
|
|
4293
4307
|
line-height: unset;
|
|
4294
4308
|
}
|
|
4295
4309
|
|
|
4310
|
+
.spg-dropdown_chevron-button {
|
|
4311
|
+
line-height: normal;
|
|
4312
|
+
}
|
|
4313
|
+
|
|
4296
4314
|
.spg-comment {
|
|
4297
4315
|
height: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4298
4316
|
max-width: 100%;
|
|
@@ -4593,12 +4611,17 @@ button.spg-action-button--large {
|
|
|
4593
4611
|
box-shadow: inset 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
4594
4612
|
}
|
|
4595
4613
|
|
|
4614
|
+
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown_chevron-button {
|
|
4615
|
+
display: none;
|
|
4616
|
+
}
|
|
4617
|
+
|
|
4596
4618
|
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown {
|
|
4597
4619
|
width: max-content;
|
|
4598
4620
|
padding-right: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4599
4621
|
background-size: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4600
4622
|
background-position: right calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) top 50%, 0 0;
|
|
4601
4623
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15L17 10H7L12 15Z' fill='%2390909080'/%3E%3C/svg%3E%0A");
|
|
4624
|
+
background-repeat: no-repeat;
|
|
4602
4625
|
}
|
|
4603
4626
|
|
|
4604
4627
|
.spg-table__cell:not(.spg-table__cell--detail-panel):first-of-type .spg-text {
|
|
@@ -4800,6 +4823,7 @@ button.spg-action-button--large {
|
|
|
4800
4823
|
}
|
|
4801
4824
|
|
|
4802
4825
|
.spg-root-modern {
|
|
4826
|
+
position: relative;
|
|
4803
4827
|
width: 100%;
|
|
4804
4828
|
border-right: 1px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
|
4805
4829
|
box-sizing: border-box;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
2
|
+
* SurveyJS Creator v1.9.98
|
|
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
|
|
@@ -1001,6 +1001,7 @@ svc-tab-designer {
|
|
|
1001
1001
|
flex-grow: 1;
|
|
1002
1002
|
height: 100%;
|
|
1003
1003
|
overflow-y: scroll;
|
|
1004
|
+
position: static;
|
|
1004
1005
|
}
|
|
1005
1006
|
|
|
1006
1007
|
.svc-tab-designer--with-place-holder .svc-tab-designer_content {
|
|
@@ -1693,11 +1694,9 @@ survey-creator .svc-page-navigator__selector:hover .svc-page-navigator__navigato
|
|
|
1693
1694
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
1694
1695
|
}
|
|
1695
1696
|
|
|
1696
|
-
.svc-page-navigator__selector--opened {
|
|
1697
|
-
opacity: 0.5;
|
|
1698
|
-
}
|
|
1699
1697
|
.svc-page-navigator__selector--opened .svc-page-navigator__navigator-icon {
|
|
1700
1698
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
|
1699
|
+
opacity: 0.5;
|
|
1701
1700
|
}
|
|
1702
1701
|
.svc-page-navigator__selector--opened .svc-page-navigator__navigator-icon use {
|
|
1703
1702
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
@@ -1952,9 +1951,9 @@ svc-page {
|
|
|
1952
1951
|
position: absolute;
|
|
1953
1952
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
1954
1953
|
left: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
1955
|
-
bottom: calc(11 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
1954
|
+
bottom: calc(11.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
1956
1955
|
width: calc(100% - 48px);
|
|
1957
|
-
height:
|
|
1956
|
+
height: 2px;
|
|
1958
1957
|
}
|
|
1959
1958
|
.svc-row {
|
|
1960
1959
|
width: 100%;
|
|
@@ -2022,7 +2021,7 @@ svc-page {
|
|
|
2022
2021
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2023
2022
|
top: 6px;
|
|
2024
2023
|
width: 100%;
|
|
2025
|
-
height:
|
|
2024
|
+
height: 2px;
|
|
2026
2025
|
}
|
|
2027
2026
|
|
|
2028
2027
|
.svc-row--drag-over-bottom:after {
|
|
@@ -2032,16 +2031,16 @@ svc-page {
|
|
|
2032
2031
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2033
2032
|
bottom: -10px;
|
|
2034
2033
|
width: 100%;
|
|
2035
|
-
height:
|
|
2034
|
+
height: 2px;
|
|
2036
2035
|
}
|
|
2037
2036
|
|
|
2038
2037
|
.svc-question__content--panel .svc-row--drag-over-top:before,
|
|
2039
2038
|
.sd-panel__content .svc-row--drag-over-top:before {
|
|
2040
|
-
top: -
|
|
2039
|
+
top: -4px;
|
|
2041
2040
|
}
|
|
2042
2041
|
.svc-question__content--panel .svc-row--drag-over-bottom:after,
|
|
2043
2042
|
.sd-panel__content .svc-row--drag-over-bottom:after {
|
|
2044
|
-
bottom: -
|
|
2043
|
+
bottom: -4px;
|
|
2045
2044
|
}
|
|
2046
2045
|
.svc-carry-forward-panel {
|
|
2047
2046
|
box-sizing: border-box;
|
|
@@ -2105,7 +2104,6 @@ svc-question {
|
|
|
2105
2104
|
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(8 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2106
2105
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
|
2107
2106
|
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
|
2108
|
-
border: 2px solid transparent;
|
|
2109
2107
|
outline: none;
|
|
2110
2108
|
}
|
|
2111
2109
|
|
|
@@ -2178,7 +2176,7 @@ svc-question {
|
|
|
2178
2176
|
|
|
2179
2177
|
.svc-creator .svc-page .svc-question__content--selected:not(.svc-question__content--dragged).svc-question__content--selected,
|
|
2180
2178
|
.svc-creator:not(.svc-creator--mobile) .svc-page .svc-hovered > .svc-question__content:not(.svc-question__content--dragged).svc-question__content--selected {
|
|
2181
|
-
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2179
|
+
box-shadow: 0 0 0 2px var(--sjs-secondary-backcolor, var(--secondary, #ff9814)) inset;
|
|
2182
2180
|
}
|
|
2183
2181
|
.svc-creator .svc-page .svc-question__content--selected:not(.svc-question__content--dragged) > .svc-question__content-actions,
|
|
2184
2182
|
.svc-creator:not(.svc-creator--mobile) .svc-page .svc-hovered > .svc-question__content:not(.svc-question__content--dragged) > .svc-question__content-actions {
|
|
@@ -2258,21 +2256,21 @@ svc-question {
|
|
|
2258
2256
|
.svc-question__content--drag-over-left:before {
|
|
2259
2257
|
content: " ";
|
|
2260
2258
|
position: absolute;
|
|
2261
|
-
left: -
|
|
2259
|
+
left: -6px;
|
|
2262
2260
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2263
2261
|
top: 0;
|
|
2264
2262
|
height: 100%;
|
|
2265
|
-
width:
|
|
2263
|
+
width: 2px;
|
|
2266
2264
|
}
|
|
2267
2265
|
|
|
2268
2266
|
.svc-question__content--drag-over-right:after {
|
|
2269
2267
|
content: " ";
|
|
2270
2268
|
position: absolute;
|
|
2271
|
-
right: -
|
|
2269
|
+
right: -6px;
|
|
2272
2270
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2273
2271
|
top: 0;
|
|
2274
2272
|
height: 100%;
|
|
2275
|
-
width:
|
|
2273
|
+
width: 2px;
|
|
2276
2274
|
}
|
|
2277
2275
|
|
|
2278
2276
|
.svc-question__content--drag-over-top:before {
|
|
@@ -2280,9 +2278,9 @@ svc-question {
|
|
|
2280
2278
|
position: absolute;
|
|
2281
2279
|
left: 0;
|
|
2282
2280
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2283
|
-
top: -
|
|
2281
|
+
top: -9px;
|
|
2284
2282
|
width: 100%;
|
|
2285
|
-
height:
|
|
2283
|
+
height: 2px;
|
|
2286
2284
|
}
|
|
2287
2285
|
|
|
2288
2286
|
.svc-question__content--drag-over-bottom:before {
|
|
@@ -2290,9 +2288,9 @@ svc-question {
|
|
|
2290
2288
|
position: absolute;
|
|
2291
2289
|
left: 0;
|
|
2292
2290
|
background: var(--sjs-secondary-backcolor, var(--secondary, #ff9814));
|
|
2293
|
-
bottom: -
|
|
2291
|
+
bottom: -9px;
|
|
2294
2292
|
width: 100%;
|
|
2295
|
-
height:
|
|
2293
|
+
height: 2px;
|
|
2296
2294
|
}
|
|
2297
2295
|
|
|
2298
2296
|
.svc-question__content--panel .sd-row > div:first-child .svc-question__content--drag-over-left,
|
|
@@ -2305,6 +2303,14 @@ svc-question {
|
|
|
2305
2303
|
margin-right: 8px;
|
|
2306
2304
|
width: calc(100% - 8px);
|
|
2307
2305
|
}
|
|
2306
|
+
.svc-question__content--panel .svc-question__content--drag-over-top:before,
|
|
2307
|
+
.sd-panel__content .svc-question__content--drag-over-top:before {
|
|
2308
|
+
top: -6px;
|
|
2309
|
+
}
|
|
2310
|
+
.svc-question__content--panel .svc-question__content--drag-over-bottom:before,
|
|
2311
|
+
.sd-panel__content .svc-question__content--drag-over-bottom:before {
|
|
2312
|
+
bottom: -6px;
|
|
2313
|
+
}
|
|
2308
2314
|
|
|
2309
2315
|
.svc-question__content-actions .sv-action-bar {
|
|
2310
2316
|
box-sizing: border-box;
|
|
@@ -2548,6 +2554,13 @@ svc-question .sv-action-bar,
|
|
|
2548
2554
|
.svc-question__content--ranking .svc-carry-forward-panel {
|
|
2549
2555
|
margin-top: 0;
|
|
2550
2556
|
}
|
|
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
|
+
}
|
|
2551
2564
|
.svc-question__dropdown-choices {
|
|
2552
2565
|
margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
2553
2566
|
}
|
|
@@ -2581,7 +2594,7 @@ svc-question .sv-action-bar,
|
|
|
2581
2594
|
}
|
|
2582
2595
|
|
|
2583
2596
|
.svc-question__content--image:not(.svc-question__content--empty) {
|
|
2584
|
-
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)))
|
|
2597
|
+
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px))) 2px calc(8 * var(--sjs-base-unit, var(--base-unit, 8px))) 2px;
|
|
2585
2598
|
}
|
|
2586
2599
|
|
|
2587
2600
|
.svc-question__content--image.svc-question__content--empty .sd-file,
|
|
@@ -3563,6 +3576,7 @@ svc-toolbox {
|
|
|
3563
3576
|
width: 3px;
|
|
3564
3577
|
height: 100%;
|
|
3565
3578
|
position: absolute;
|
|
3579
|
+
z-index: 1;
|
|
3566
3580
|
top: 0;
|
|
3567
3581
|
background-color: transparent;
|
|
3568
3582
|
cursor: e-resize;
|
|
@@ -4067,6 +4081,10 @@ button.spg-action-button--large {
|
|
|
4067
4081
|
line-height: unset;
|
|
4068
4082
|
}
|
|
4069
4083
|
|
|
4084
|
+
.spg-dropdown_chevron-button {
|
|
4085
|
+
line-height: normal;
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4070
4088
|
.spg-comment {
|
|
4071
4089
|
height: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4072
4090
|
max-width: 100%;
|
|
@@ -4367,12 +4385,17 @@ button.spg-action-button--large {
|
|
|
4367
4385
|
box-shadow: inset 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
|
4368
4386
|
}
|
|
4369
4387
|
|
|
4388
|
+
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown_chevron-button {
|
|
4389
|
+
display: none;
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4370
4392
|
.spg-table__cell:not(.spg-table__cell--detail-panel) .spg-dropdown {
|
|
4371
4393
|
width: max-content;
|
|
4372
4394
|
padding-right: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4373
4395
|
background-size: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
|
4374
4396
|
background-position: right calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) top 50%, 0 0;
|
|
4375
4397
|
background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 15L17 10H7L12 15Z' fill='%2390909080'/%3E%3C/svg%3E%0A");
|
|
4398
|
+
background-repeat: no-repeat;
|
|
4376
4399
|
}
|
|
4377
4400
|
|
|
4378
4401
|
.spg-table__cell:not(.spg-table__cell--detail-panel):first-of-type .spg-text {
|
|
@@ -4574,6 +4597,7 @@ button.spg-action-button--large {
|
|
|
4574
4597
|
}
|
|
4575
4598
|
|
|
4576
4599
|
.spg-root-modern {
|
|
4600
|
+
position: relative;
|
|
4577
4601
|
width: 100%;
|
|
4578
4602
|
border-right: 1px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
|
4579
4603
|
box-sizing: border-box;
|