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.
- package/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/package.json +2 -2
- package/survey-creator-core.css +285 -74
- package/survey-creator-core.fontless.css +284 -73
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +19 -15
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +2693 -261
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +20 -16
- package/survey-creator-core.min.js +3 -3
- package/typings/components/header/logo-image.d.ts +1 -0
- package/typings/components/image-item-value.d.ts +1 -0
- package/typings/components/item-value.d.ts +1 -0
- package/typings/components/matrix-cell.d.ts +1 -1
- package/typings/components/page.d.ts +5 -2
- package/typings/components/question-image.d.ts +1 -0
- package/typings/components/question-rating.d.ts +1 -0
- package/typings/components/question.d.ts +1 -1
- package/typings/components/simulator.d.ts +1 -0
- package/typings/components/tabs/theme-custom-questions/boxshadow-settings.d.ts +2 -0
- package/typings/components/tabs/theme-custom-questions/color-settings.d.ts +5 -0
- package/typings/components/tabs/theme-plugin.d.ts +25 -0
- package/typings/components/tabs/theme.d.ts +92 -0
- package/typings/creator-base.d.ts +26 -1
- package/typings/creator-options.d.ts +1 -0
- package/typings/creator-settings.d.ts +4 -1
- package/typings/editorLocalization.d.ts +73 -0
- package/typings/entries/index.d.ts +4 -0
- package/typings/localization/english.d.ts +73 -0
- package/typings/property-grid/index.d.ts +7 -0
- package/typings/property-grid/matrices.d.ts +2 -0
- package/typings/survey-elements.d.ts +44 -0
- package/typings/utils/utils.d.ts +23 -1
|
@@ -1,9 +1,33 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* SurveyJS Creator v1.9.
|
|
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
|
|
6
6
|
*/
|
|
7
|
+
.svc-context-container {
|
|
8
|
+
display: flex;
|
|
9
|
+
gap: calc(1 * var(--base-unit, 8px));
|
|
10
|
+
width: max-content; }
|
|
11
|
+
|
|
12
|
+
.svc-context-button {
|
|
13
|
+
display: block;
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
background-color: var(--background, #fff);
|
|
16
|
+
border-radius: 50%;
|
|
17
|
+
width: calc(6 * var(--base-unit, 8px));
|
|
18
|
+
height: calc(6 * var(--base-unit, 8px));
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
padding: calc(1.5 * var(--base-unit, 8px));
|
|
21
|
+
outline: none; }
|
|
22
|
+
.svc-context-button use {
|
|
23
|
+
fill: var(--foreground-light, #909090); }
|
|
24
|
+
|
|
25
|
+
.svc-context-button:hover use, .svc-context-button:focus use {
|
|
26
|
+
fill: var(--primary, #19b394); }
|
|
27
|
+
|
|
28
|
+
.svc-context-button--danger:hover use, .svc-context-button--danger:focus use {
|
|
29
|
+
fill: var(--red, #e60a3e); }
|
|
30
|
+
|
|
7
31
|
.svc-embed-tab__content {
|
|
8
32
|
padding: calc(2 * var(--base-unit, 8px));
|
|
9
33
|
font-family: var(--font-family); }
|
|
@@ -92,7 +116,8 @@ svc-tab-json-editor-textarea {
|
|
|
92
116
|
transform-origin: 0 0;
|
|
93
117
|
top: 50%;
|
|
94
118
|
left: 50%;
|
|
95
|
-
transform: scale(1.26) translate(-50%, -50%);
|
|
119
|
+
transform: scale(1.26) translate(-50%, -50%);
|
|
120
|
+
overflow: overlay; }
|
|
96
121
|
|
|
97
122
|
.svd-simulator-wrapper {
|
|
98
123
|
margin: 0 auto;
|
|
@@ -167,10 +192,7 @@ svc-tab-json-editor-textarea {
|
|
|
167
192
|
.svd-simulator-content {
|
|
168
193
|
display: flex;
|
|
169
194
|
justify-content: center;
|
|
170
|
-
width: 100%;
|
|
171
|
-
height: 100%;
|
|
172
|
-
overflow: auto;
|
|
173
|
-
overflow-y: overlay; }
|
|
195
|
+
width: 100%; }
|
|
174
196
|
|
|
175
197
|
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
|
176
198
|
::i-block-chrome,
|
|
@@ -183,7 +205,7 @@ svc-tab-test {
|
|
|
183
205
|
background: var(--background-dim, #f3f3f3); }
|
|
184
206
|
|
|
185
207
|
.svc-test-tab__content .svc-plugin-tab__content {
|
|
186
|
-
overflow-y:
|
|
208
|
+
overflow-y: overlay; }
|
|
187
209
|
.svc-test-tab__content .svc-plugin-tab__content .sv-root-modern .sv-completedpage,
|
|
188
210
|
.svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_completed_page {
|
|
189
211
|
margin: 0;
|
|
@@ -236,9 +258,6 @@ svc-tab-test {
|
|
|
236
258
|
color: var(--foreground, #161616);
|
|
237
259
|
display: inline-block; }
|
|
238
260
|
|
|
239
|
-
.svc-test-tab__content.svc-creator-tab__content--with-toolbar .sd-body__navigation {
|
|
240
|
-
padding-bottom: calc(8 * var(--base-unit, 8px)); }
|
|
241
|
-
|
|
242
261
|
.svc-test-tab__content .sd-body--empty {
|
|
243
262
|
font-family: var(--font-family);
|
|
244
263
|
font-style: normal;
|
|
@@ -826,8 +845,6 @@ svc-tab-designer {
|
|
|
826
845
|
box-sizing: border-box;
|
|
827
846
|
margin-left: auto;
|
|
828
847
|
margin-right: auto; }
|
|
829
|
-
.svc-tab-designer .sd-container-modern .sd-container-modern__title {
|
|
830
|
-
gap: 0; }
|
|
831
848
|
.svc-tab-designer .sd-container-modern.sd-container-modern--static {
|
|
832
849
|
max-width: calc(84 * var(--base-unit, 8px)); }
|
|
833
850
|
.svc-tab-designer .sd-container-modern.sd-container-modern--responsive {
|
|
@@ -857,7 +874,7 @@ svc-tab-designer {
|
|
|
857
874
|
.svc-designer-placeholder-page {
|
|
858
875
|
margin-top: calc(2 * var(--base-unit, 8px)); }
|
|
859
876
|
|
|
860
|
-
.svc-designer-placeholder-page .svc-
|
|
877
|
+
.svc-designer-placeholder-page .svc-page__footer {
|
|
861
878
|
width: calc(33 * var(--base-unit, 8px));
|
|
862
879
|
margin: auto; }
|
|
863
880
|
|
|
@@ -881,7 +898,7 @@ svc-tab-designer {
|
|
|
881
898
|
border: 0; }
|
|
882
899
|
.svc-creator--mobile .svc-page__content .sd-page {
|
|
883
900
|
padding: calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)); }
|
|
884
|
-
.svc-creator--mobile .svc-page__content .svc-
|
|
901
|
+
.svc-creator--mobile .svc-page__content .svc-page__footer {
|
|
885
902
|
margin-left: calc(2 * var(--base-unit, 8px));
|
|
886
903
|
margin-right: calc(2 * var(--base-unit, 8px)); }
|
|
887
904
|
|
|
@@ -926,6 +943,78 @@ svc-tab-designer {
|
|
|
926
943
|
.svc-creator--mobile .svc-page__content-actions .sv-action-bar .sv-action .sv-action__content .sv-action-bar-item__title--with-icon {
|
|
927
944
|
display: none; }
|
|
928
945
|
|
|
946
|
+
svc-tab-test {
|
|
947
|
+
width: 100%;
|
|
948
|
+
height: 100%;
|
|
949
|
+
background: var(--background-dim, #f3f3f3); }
|
|
950
|
+
|
|
951
|
+
.svc-test-tab__content .svc-plugin-tab__content {
|
|
952
|
+
overflow-y: overlay; }
|
|
953
|
+
.svc-test-tab__content .svc-plugin-tab__content .sv-root-modern .sv-completedpage,
|
|
954
|
+
.svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_completed_page {
|
|
955
|
+
margin: 0;
|
|
956
|
+
border: 0;
|
|
957
|
+
background-color: var(--background-dim, #f3f3f3); }
|
|
958
|
+
.svc-test-tab__content .svc-plugin-tab__content .sv_default_css .sv_body {
|
|
959
|
+
border: 0; }
|
|
960
|
+
.svc-test-tab__content .svc-plugin-tab__content .svc-preview__test-again {
|
|
961
|
+
width: calc(33 * var(--base-unit, 8px));
|
|
962
|
+
margin-left: auto;
|
|
963
|
+
margin-right: auto;
|
|
964
|
+
margin-bottom: 72px;
|
|
965
|
+
margin-top: 8px; }
|
|
966
|
+
|
|
967
|
+
.svc-creator-tab__content--with-toolbar.svc-test-tab__content .svc-plugin-tab__content {
|
|
968
|
+
height: calc(100% - calc(6 * var(--base-unit, 8px))); }
|
|
969
|
+
|
|
970
|
+
.svc-test-tab__content-actions {
|
|
971
|
+
position: relative; }
|
|
972
|
+
.svc-test-tab__content-actions .sv-action-bar {
|
|
973
|
+
padding: 0;
|
|
974
|
+
height: calc(6 * var(--base-unit, 8px));
|
|
975
|
+
background: var(--background, #fff);
|
|
976
|
+
border-top: 1px solid var(--border, #d6d6d6);
|
|
977
|
+
width: 100%;
|
|
978
|
+
position: absolute; }
|
|
979
|
+
.svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages {
|
|
980
|
+
left: 0;
|
|
981
|
+
right: 0;
|
|
982
|
+
justify-content: center;
|
|
983
|
+
gap: calc(1 * var(--base-unit, 8px)); }
|
|
984
|
+
.svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages .sv-action__content {
|
|
985
|
+
padding: 0; }
|
|
986
|
+
.svc-test-tab__content-actions .sv-action-bar.sv-action-bar--pages .sv-action-bar-item {
|
|
987
|
+
margin: 0; }
|
|
988
|
+
.svc-test-tab__content-actions .sv-action-bar-item {
|
|
989
|
+
font-family: var(--font-family);
|
|
990
|
+
font-style: normal;
|
|
991
|
+
font-weight: 600;
|
|
992
|
+
font-size: calc(1.5 * var(--base-unit, 8px));
|
|
993
|
+
line-height: calc(2 * var(--base-unit, 8px));
|
|
994
|
+
width: 100%;
|
|
995
|
+
height: calc(4 * var(--base-unit, 8px)); }
|
|
996
|
+
.svc-test-tab__content-actions .svc-page-selector {
|
|
997
|
+
max-width: 50%; }
|
|
998
|
+
.svc-test-tab__content-actions .svc-page-selector .sv-action-bar-item__title {
|
|
999
|
+
overflow: hidden;
|
|
1000
|
+
white-space: nowrap;
|
|
1001
|
+
text-overflow: ellipsis;
|
|
1002
|
+
color: var(--foreground, #161616);
|
|
1003
|
+
display: inline-block; }
|
|
1004
|
+
|
|
1005
|
+
.svc-test-tab__content .sd-body--empty {
|
|
1006
|
+
font-family: var(--font-family);
|
|
1007
|
+
font-style: normal;
|
|
1008
|
+
font-weight: 400;
|
|
1009
|
+
font-size: calc(2 * var(--base-unit, 8px));
|
|
1010
|
+
color: var(--foreground, #161616);
|
|
1011
|
+
width: 100%;
|
|
1012
|
+
position: absolute;
|
|
1013
|
+
top: 50%;
|
|
1014
|
+
transform: translateY(-50%);
|
|
1015
|
+
text-align: center;
|
|
1016
|
+
overflow: hidden; }
|
|
1017
|
+
|
|
929
1018
|
.svc-notifier.svc-notifier--shown {
|
|
930
1019
|
visibility: visible;
|
|
931
1020
|
opacity: 0.75; }
|
|
@@ -1092,7 +1181,7 @@ survey-creator,
|
|
|
1092
1181
|
|
|
1093
1182
|
.svc-string-editor {
|
|
1094
1183
|
position: static; }
|
|
1095
|
-
.svc-string-editor [contenteditable] {
|
|
1184
|
+
.svc-string-editor [contenteditable="true"] {
|
|
1096
1185
|
user-select: text;
|
|
1097
1186
|
-webkit-user-select: text; }
|
|
1098
1187
|
.svc-string-editor .sv-string-editor {
|
|
@@ -1488,11 +1577,19 @@ svc-page {
|
|
|
1488
1577
|
.svc-hovered.svc-page__content--selected .svc-page__content-actions {
|
|
1489
1578
|
display: block; }
|
|
1490
1579
|
|
|
1491
|
-
.svc-
|
|
1580
|
+
.svc-page__footer {
|
|
1581
|
+
overflow: visible;
|
|
1492
1582
|
margin-left: calc(3 * var(--base-unit, 8px));
|
|
1493
|
-
margin-right: calc(3 * var(--base-unit, 8px));
|
|
1494
|
-
|
|
1495
|
-
|
|
1583
|
+
margin-right: calc(3 * var(--base-unit, 8px));
|
|
1584
|
+
gap: calc(2 * var(--base-unit, 8px)); }
|
|
1585
|
+
.svc-page__footer .sv-action {
|
|
1586
|
+
flex: 1 1 0; }
|
|
1587
|
+
.svc-page__footer .svc-btn {
|
|
1588
|
+
flex-grow: 1;
|
|
1589
|
+
border: none; }
|
|
1590
|
+
|
|
1591
|
+
.svc-page__add-new-question .svc-text {
|
|
1592
|
+
margin-left: calc(6 * var(--base-unit, 8px)); }
|
|
1496
1593
|
|
|
1497
1594
|
.svc-page__question-type-selector {
|
|
1498
1595
|
appearance: none;
|
|
@@ -1513,8 +1610,18 @@ svc-page {
|
|
|
1513
1610
|
.svc-page__question-type-selector:focus {
|
|
1514
1611
|
background-color: var(--sjs-primary-backcolor-light, rgba(25, 179, 148, 0.1)); }
|
|
1515
1612
|
|
|
1613
|
+
.svc-page--drag-over-empty:after {
|
|
1614
|
+
content: " ";
|
|
1615
|
+
position: absolute;
|
|
1616
|
+
background: var(--secondary, #ff9814);
|
|
1617
|
+
left: calc(3 * var(--base-unit, 8px));
|
|
1618
|
+
bottom: calc(11 * var(--base-unit, 8px));
|
|
1619
|
+
width: calc(100% - 48px);
|
|
1620
|
+
height: 4px; }
|
|
1621
|
+
|
|
1516
1622
|
.svc-row {
|
|
1517
|
-
width: 100%;
|
|
1623
|
+
width: 100%;
|
|
1624
|
+
position: relative; }
|
|
1518
1625
|
|
|
1519
1626
|
.svc-row .sd-row--multiple {
|
|
1520
1627
|
padding: calc(1 * var(--base-unit, 8px));
|
|
@@ -1550,6 +1657,32 @@ svc-page {
|
|
|
1550
1657
|
margin-top: calc(2 * var(--base-unit, 8px));
|
|
1551
1658
|
margin-bottom: calc(2 * var(--base-unit, 8px)); }
|
|
1552
1659
|
|
|
1660
|
+
.svc-row--drag-over-top:before {
|
|
1661
|
+
content: " ";
|
|
1662
|
+
position: absolute;
|
|
1663
|
+
left: 0;
|
|
1664
|
+
background: var(--secondary, #ff9814);
|
|
1665
|
+
top: 6px;
|
|
1666
|
+
width: 100%;
|
|
1667
|
+
height: 4px; }
|
|
1668
|
+
|
|
1669
|
+
.svc-row--drag-over-bottom:after {
|
|
1670
|
+
content: " ";
|
|
1671
|
+
position: absolute;
|
|
1672
|
+
left: 0;
|
|
1673
|
+
background: var(--secondary, #ff9814);
|
|
1674
|
+
bottom: -10px;
|
|
1675
|
+
width: 100%;
|
|
1676
|
+
height: 4px; }
|
|
1677
|
+
|
|
1678
|
+
.svc-question__content--panel .svc-row--drag-over-top:before,
|
|
1679
|
+
.sd-panel__content .svc-row--drag-over-top:before {
|
|
1680
|
+
top: -6px; }
|
|
1681
|
+
|
|
1682
|
+
.svc-question__content--panel .svc-row--drag-over-bottom:after,
|
|
1683
|
+
.sd-panel__content .svc-row--drag-over-bottom:after {
|
|
1684
|
+
bottom: -6px; }
|
|
1685
|
+
|
|
1553
1686
|
svc-question {
|
|
1554
1687
|
display: block;
|
|
1555
1688
|
position: absolute;
|
|
@@ -1725,6 +1858,34 @@ svc-question {
|
|
|
1725
1858
|
height: 100%;
|
|
1726
1859
|
width: 4px; }
|
|
1727
1860
|
|
|
1861
|
+
.svc-question__content--drag-over-top:before {
|
|
1862
|
+
content: " ";
|
|
1863
|
+
position: absolute;
|
|
1864
|
+
left: 0;
|
|
1865
|
+
background: var(--secondary, #ff9814);
|
|
1866
|
+
top: -12px;
|
|
1867
|
+
width: 100%;
|
|
1868
|
+
height: 4px; }
|
|
1869
|
+
|
|
1870
|
+
.svc-question__content--drag-over-bottom:before {
|
|
1871
|
+
content: " ";
|
|
1872
|
+
position: absolute;
|
|
1873
|
+
left: 0;
|
|
1874
|
+
background: var(--secondary, #ff9814);
|
|
1875
|
+
bottom: -12px;
|
|
1876
|
+
width: 100%;
|
|
1877
|
+
height: 4px; }
|
|
1878
|
+
|
|
1879
|
+
.svc-question__content--panel .sd-row > div:first-child .svc-question__content--drag-over-left,
|
|
1880
|
+
.sd-panel__content .sd-row > div:first-child .svc-question__content--drag-over-left {
|
|
1881
|
+
margin-left: 8px;
|
|
1882
|
+
width: calc(100% - 8px); }
|
|
1883
|
+
|
|
1884
|
+
.svc-question__content--panel .sd-row > div:last-child .svc-question__content--drag-over-right,
|
|
1885
|
+
.sd-panel__content .sd-row > div:last-child .svc-question__content--drag-over-right {
|
|
1886
|
+
margin-right: 8px;
|
|
1887
|
+
width: calc(100% - 8px); }
|
|
1888
|
+
|
|
1728
1889
|
.svc-question__content-actions .sv-action-bar {
|
|
1729
1890
|
box-sizing: border-box;
|
|
1730
1891
|
padding: 0;
|
|
@@ -1926,24 +2087,7 @@ svc-question .sv-action-bar,
|
|
|
1926
2087
|
display: none; }
|
|
1927
2088
|
|
|
1928
2089
|
.svc-question__content--selected .svc-image-question-controls {
|
|
1929
|
-
display:
|
|
1930
|
-
|
|
1931
|
-
.svc-image-question-controls__button {
|
|
1932
|
-
display: inline-block;
|
|
1933
|
-
background-color: var(--background, #fff);
|
|
1934
|
-
border-radius: 50%;
|
|
1935
|
-
width: calc(6 * var(--base-unit, 8px));
|
|
1936
|
-
height: calc(6 * var(--base-unit, 8px));
|
|
1937
|
-
cursor: pointer; }
|
|
1938
|
-
.svc-image-question-controls__button:not(:last-child) {
|
|
1939
|
-
margin-right: calc(0.5 * var(--base-unit, 8px)); }
|
|
1940
|
-
.svc-image-question-controls__button .sv-svg-icon {
|
|
1941
|
-
margin-top: calc(50% - 1.5 * var(--base-unit, 8px));
|
|
1942
|
-
margin-left: calc(50% - 1.5 * var(--base-unit, 8px)); }
|
|
1943
|
-
.svc-image-question-controls__button use {
|
|
1944
|
-
fill: var(--foreground-light, #909090); }
|
|
1945
|
-
.svc-image-question-controls__button:hover use {
|
|
1946
|
-
fill: var(--primary, #19b394); }
|
|
2090
|
+
display: flex; }
|
|
1947
2091
|
|
|
1948
2092
|
.svc-question__content--image:not(.svc-question__content--empty) {
|
|
1949
2093
|
padding: calc(4 * var(--base-unit, 8px)) 0 calc(8 * var(--base-unit, 8px)) 0; }
|
|
@@ -1958,7 +2102,7 @@ svc-question .sv-action-bar,
|
|
|
1958
2102
|
.svc-rating-question-controls {
|
|
1959
2103
|
position: absolute; }
|
|
1960
2104
|
|
|
1961
|
-
.svc-question__content--
|
|
2105
|
+
.svc-question__content--in-popup .svc-rating-question-controls.svc-item-value-controls {
|
|
1962
2106
|
display: flex; }
|
|
1963
2107
|
|
|
1964
2108
|
.svc-question__content--selected .svc-rating-question-controls.svc-item-value-controls {
|
|
@@ -1968,6 +2112,11 @@ svc-question .sv-action-bar,
|
|
|
1968
2112
|
margin-inline-start: calc(9 * var(--base-unit, 8px));
|
|
1969
2113
|
width: calc(100% - 9 * var(--base-unit, 8px)); }
|
|
1970
2114
|
|
|
2115
|
+
.svc-question__content .sd-question--table .sd-rating {
|
|
2116
|
+
margin-inline-start: 0;
|
|
2117
|
+
width: fit-content;
|
|
2118
|
+
margin: auto; }
|
|
2119
|
+
|
|
1971
2120
|
.svc-question__content .svc-rating-question-controls {
|
|
1972
2121
|
display: flex;
|
|
1973
2122
|
width: calc(8 * var(--base-unit, 8px));
|
|
@@ -2167,34 +2316,9 @@ svc-question .sv-action-bar,
|
|
|
2167
2316
|
top: calc(50% - 3 * var(--base-unit, 8px));
|
|
2168
2317
|
left: calc(50% - 3 * var(--base-unit, 8px)); }
|
|
2169
2318
|
|
|
2170
|
-
.svc-image-item-value-controls {
|
|
2171
|
-
display: flex; }
|
|
2172
|
-
|
|
2173
|
-
.svc-image-item-value-controls__button {
|
|
2174
|
-
display: block;
|
|
2175
|
-
background-color: var(--background, #fff);
|
|
2176
|
-
border-radius: 50%;
|
|
2177
|
-
width: calc(6 * var(--base-unit, 8px));
|
|
2178
|
-
height: calc(6 * var(--base-unit, 8px));
|
|
2179
|
-
cursor: pointer;
|
|
2180
|
-
outline: none; }
|
|
2181
|
-
.svc-image-item-value-controls__button:not(:last-child) {
|
|
2182
|
-
margin-right: calc(1 * var(--base-unit, 8px)); }
|
|
2183
|
-
.svc-image-item-value-controls__button .sv-svg-icon {
|
|
2184
|
-
margin-top: calc(50% - 1.5 * var(--base-unit, 8px));
|
|
2185
|
-
margin-left: calc(50% - 1.5 * var(--base-unit, 8px)); }
|
|
2186
|
-
.svc-image-item-value-controls__button use {
|
|
2187
|
-
fill: var(--foreground-light, #909090); }
|
|
2188
|
-
|
|
2189
2319
|
.svc-image-item-value--new .svc-image-item-value-controls__button {
|
|
2190
2320
|
background-color: transparent; }
|
|
2191
2321
|
|
|
2192
|
-
.svc-image-item-value-controls__choose-file:hover use, .svc-image-item-value-controls__choose-file:focus use {
|
|
2193
|
-
fill: var(--primary, #19b394); }
|
|
2194
|
-
|
|
2195
|
-
.svc-image-item-value-controls__remove:hover use, .svc-image-item-value-controls__remove:focus use {
|
|
2196
|
-
fill: var(--red, #e60a3e); }
|
|
2197
|
-
|
|
2198
2322
|
.svc-image-item-value-controls__add use {
|
|
2199
2323
|
fill: var(--primary, #19b394); }
|
|
2200
2324
|
|
|
@@ -2211,15 +2335,15 @@ svc-question .sv-action-bar,
|
|
|
2211
2335
|
.svc-image-item-value__item .sd-imagepicker__item.sd-imagepicker__item {
|
|
2212
2336
|
width: 100%; }
|
|
2213
2337
|
|
|
2214
|
-
.svc-question__content--selected .svc-image-item-value-wrapper:hover .svc-image-item-value-controls__drag-area-indicator {
|
|
2215
|
-
display: block; }
|
|
2216
|
-
|
|
2217
2338
|
.svc-image-item-value-controls__drag-area-indicator {
|
|
2339
|
+
display: none;
|
|
2218
2340
|
cursor: move;
|
|
2219
2341
|
position: absolute;
|
|
2220
2342
|
top: calc(1 * var(--base-unit, 8px));
|
|
2221
|
-
left: calc(1 * var(--base-unit, 8px));
|
|
2222
|
-
|
|
2343
|
+
left: calc(1 * var(--base-unit, 8px)); }
|
|
2344
|
+
|
|
2345
|
+
.svc-question__content--selected .svc-image-item-value-wrapper:hover .svc-image-item-value-controls__drag-area-indicator {
|
|
2346
|
+
display: block; }
|
|
2223
2347
|
|
|
2224
2348
|
.svc-image-item-value-wrapper--ghost .svc-image-item-value-wrapper__ghost {
|
|
2225
2349
|
display: block; }
|
|
@@ -2281,12 +2405,10 @@ svc-question .sv-action-bar,
|
|
|
2281
2405
|
.svc-matrix-cell:hover .svc-matrix-cell__question-controls {
|
|
2282
2406
|
display: block; }
|
|
2283
2407
|
|
|
2284
|
-
.svc-question__content--
|
|
2285
|
-
padding: 0;
|
|
2408
|
+
.svc-question__content--in-popup {
|
|
2286
2409
|
width: calc(100% - 25 * var(--base-unit, 8px));
|
|
2287
2410
|
min-width: calc(70 * var(--base-unit, 8px));
|
|
2288
|
-
|
|
2289
|
-
background-color: inherit; }
|
|
2411
|
+
padding: calc(5 * var(--base-unit, 8px)); }
|
|
2290
2412
|
|
|
2291
2413
|
.svc-matrix-cell__popup .sv-popup__scrolling-content {
|
|
2292
2414
|
margin-top: calc(1 * var(--base-unit, 8px));
|
|
@@ -2367,6 +2489,10 @@ svc-question .sv-action-bar,
|
|
|
2367
2489
|
.svd-test-results .svd-test-results__table table tr .svd-test-results__node-value {
|
|
2368
2490
|
color: var(--foreground-light, #909090); }
|
|
2369
2491
|
|
|
2492
|
+
.svc-designer-header .sd-container-modern__title {
|
|
2493
|
+
gap: 0;
|
|
2494
|
+
column-gap: calc(6 * var(--base-unit, 8px)); }
|
|
2495
|
+
|
|
2370
2496
|
.svc-logo-image {
|
|
2371
2497
|
position: relative;
|
|
2372
2498
|
justify-content: flex-end;
|
|
@@ -2405,6 +2531,29 @@ svc-question .sv-action-bar,
|
|
|
2405
2531
|
.svc-logo-image-placeholder use {
|
|
2406
2532
|
fill: var(--foreground-light, #909090); }
|
|
2407
2533
|
|
|
2534
|
+
.svc-logo-image-container {
|
|
2535
|
+
position: relative; }
|
|
2536
|
+
.svc-logo-image-container .sd-logo {
|
|
2537
|
+
margin: 0; }
|
|
2538
|
+
|
|
2539
|
+
.svc-logo-image-controls {
|
|
2540
|
+
opacity: 0;
|
|
2541
|
+
width: max-content;
|
|
2542
|
+
position: absolute;
|
|
2543
|
+
top: 50%;
|
|
2544
|
+
left: 50%;
|
|
2545
|
+
transform: translate(-50%, -50%); }
|
|
2546
|
+
|
|
2547
|
+
.svc-logo-image-container {
|
|
2548
|
+
cursor: default; }
|
|
2549
|
+
|
|
2550
|
+
.svc-logo-image-container:not(.svc-logo-image-container--editable) .svc-logo-image-controls {
|
|
2551
|
+
display: none; }
|
|
2552
|
+
|
|
2553
|
+
.svc-logo-image-container--editable:focus-within .svc-logo-image-controls,
|
|
2554
|
+
.svc-logo-image-container--editable:hover .svc-logo-image-controls {
|
|
2555
|
+
opacity: 1; }
|
|
2556
|
+
|
|
2408
2557
|
.svc-question-link__set-button {
|
|
2409
2558
|
font-weight: 600;
|
|
2410
2559
|
cursor: pointer; }
|
|
@@ -3492,6 +3641,68 @@ button.spg-action-button--large {
|
|
|
3492
3641
|
.spg-link {
|
|
3493
3642
|
display: flex; }
|
|
3494
3643
|
|
|
3644
|
+
.spg-theme-builder-root .spg-row--multiple .spg-spin-editor .spg-input-container__buttons-container {
|
|
3645
|
+
display: none; }
|
|
3646
|
+
|
|
3647
|
+
.spg-theme-builder-root .spg-row--multiple .spg-question__header--location--left {
|
|
3648
|
+
min-width: auto; }
|
|
3649
|
+
|
|
3650
|
+
.spg-theme-builder-root .spg-row--multiple > div {
|
|
3651
|
+
flex: 1 1 0;
|
|
3652
|
+
min-width: calc(12.5 * var(--base-unit, 8px)); }
|
|
3653
|
+
.spg-theme-builder-root .spg-row--multiple > div input {
|
|
3654
|
+
min-width: 0; }
|
|
3655
|
+
.spg-theme-builder-root .spg-row--multiple > div .spg-question--location--left {
|
|
3656
|
+
height: calc(6 * var(--base-unit, 8px));
|
|
3657
|
+
box-sizing: border-box; }
|
|
3658
|
+
.spg-theme-builder-root .spg-row--multiple > div .spg-question--location--left .spg-input {
|
|
3659
|
+
height: auto; }
|
|
3660
|
+
|
|
3661
|
+
.spg-theme-builder-root .sv-button-group {
|
|
3662
|
+
overflow: hidden; }
|
|
3663
|
+
|
|
3664
|
+
.spg-theme-builder-root .spg-question__header--location--left {
|
|
3665
|
+
width: max-content;
|
|
3666
|
+
flex: 0 0; }
|
|
3667
|
+
.spg-theme-builder-root .spg-question__header--location--left .spg-question__title {
|
|
3668
|
+
white-space: nowrap;
|
|
3669
|
+
overflow: hidden;
|
|
3670
|
+
text-overflow: ellipsis; }
|
|
3671
|
+
|
|
3672
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content {
|
|
3673
|
+
padding: 0;
|
|
3674
|
+
padding-bottom: calc(5 * var(--base-unit, 8px));
|
|
3675
|
+
box-shadow: none; }
|
|
3676
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__title {
|
|
3677
|
+
background-color: transparent;
|
|
3678
|
+
box-shadow: none;
|
|
3679
|
+
padding: calc(1 * var(--base-unit, 8px)) 0; }
|
|
3680
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content::after {
|
|
3681
|
+
content: " ";
|
|
3682
|
+
display: block;
|
|
3683
|
+
position: relative;
|
|
3684
|
+
left: calc(-4 * var(--base-unit, 8px));
|
|
3685
|
+
top: calc(5 * var(--base-unit, 8px));
|
|
3686
|
+
width: calc(8 * var(--base-unit, 8px) + 100%);
|
|
3687
|
+
height: 1px;
|
|
3688
|
+
background-color: var(--border, #d6d6d6); }
|
|
3689
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content > .spg-row:first-of-type {
|
|
3690
|
+
margin-top: 0; }
|
|
3691
|
+
|
|
3692
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content {
|
|
3693
|
+
padding-bottom: 0; }
|
|
3694
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content::after {
|
|
3695
|
+
content: none; }
|
|
3696
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content .spg-row {
|
|
3697
|
+
margin-top: calc(1 * var(--base-unit, 8px)); }
|
|
3698
|
+
.spg-theme-builder-root .spg-panel__content .spg-panel__content .spg-panel__content .spg-row:first-of-type {
|
|
3699
|
+
margin-top: 0; }
|
|
3700
|
+
|
|
3701
|
+
.spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content {
|
|
3702
|
+
padding-bottom: 0; }
|
|
3703
|
+
.spg-theme-builder-root .spg-panel__content .spg-row:last-of-type .spg-panel__content::after {
|
|
3704
|
+
content: none; }
|
|
3705
|
+
|
|
3495
3706
|
.spg-root-modern {
|
|
3496
3707
|
width: 100%;
|
|
3497
3708
|
border-right: 1px solid var(--border, #d6d6d6);
|