survey-react 1.9.103 → 1.9.105
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/defaultV2.css +400 -76
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +19 -10
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +11 -3
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +324 -146
- package/survey.react.js +804 -245
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/defaultV2.css
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.105
|
3
3
|
* Copyright (c) 2015-2023 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
6
|
+
@charset "UTF-8";
|
6
7
|
/* cyrillic-ext */
|
7
8
|
@font-face {
|
8
9
|
font-family: "Open Sans";
|
@@ -1115,6 +1116,7 @@ sv-popup {
|
|
1115
1116
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAArSURBVHgB7cuhEQAwDMNAtUN4//m8RMtygcE5PxMQxAKnh6Q3mWzXd4mAD4cJBAQCqfbUAAAAAElFTkSuQmCC");
|
1116
1117
|
background-position: center;
|
1117
1118
|
background-repeat: no-repeat;
|
1119
|
+
background-size: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
1118
1120
|
}
|
1119
1121
|
|
1120
1122
|
.sv-ranking-item__text {
|
@@ -1247,6 +1249,9 @@ sv-popup {
|
|
1247
1249
|
.sv-ranking--select-to-rank-vertical .sv-ranking__container--empty {
|
1248
1250
|
padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1249
1251
|
padding-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1252
|
+
display: flex;
|
1253
|
+
justify-content: center;
|
1254
|
+
align-items: center;
|
1250
1255
|
}
|
1251
1256
|
|
1252
1257
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__containers-divider {
|
@@ -1255,14 +1260,14 @@ sv-popup {
|
|
1255
1260
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--to .sv-ranking-item {
|
1256
1261
|
left: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1257
1262
|
}
|
1258
|
-
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--to {
|
1259
|
-
padding-right: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1260
|
-
}
|
1261
1263
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--to .sv-ranking-item {
|
1262
1264
|
left: initial;
|
1263
1265
|
}
|
1264
|
-
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--
|
1265
|
-
padding-left: calc(
|
1266
|
+
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--to .sv-ranking__container-placeholder {
|
1267
|
+
padding-left: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1268
|
+
}
|
1269
|
+
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--from .sv-ranking__container-placeholder {
|
1270
|
+
padding-right: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1266
1271
|
}
|
1267
1272
|
|
1268
1273
|
.sv-ranking__container-placeholder {
|
@@ -1275,17 +1280,14 @@ sv-popup {
|
|
1275
1280
|
display: flex;
|
1276
1281
|
justify-content: center;
|
1277
1282
|
align-items: center;
|
1278
|
-
width: 100%;
|
1279
1283
|
height: 100%;
|
1280
1284
|
}
|
1281
1285
|
|
1282
1286
|
.sv-ranking__container {
|
1283
1287
|
flex: 1;
|
1284
|
-
max-width: 100%;
|
1285
1288
|
}
|
1286
1289
|
|
1287
1290
|
.sv-ranking__container--empty {
|
1288
|
-
padding: calc(8 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1289
1291
|
box-sizing: border-box;
|
1290
1292
|
text-align: center;
|
1291
1293
|
}
|
@@ -1652,6 +1654,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1652
1654
|
.sd-element__title .sv-string-viewer {
|
1653
1655
|
white-space: normal;
|
1654
1656
|
}
|
1657
|
+
.sd-element__title .sv-string-viewer::before {
|
1658
|
+
content: "";
|
1659
|
+
}
|
1655
1660
|
|
1656
1661
|
.sd-element__num {
|
1657
1662
|
float: left;
|
@@ -1774,6 +1779,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1774
1779
|
.sd-element--collapsed.sd-element--complex > .sd-element__header--location-top:after {
|
1775
1780
|
display: none;
|
1776
1781
|
}
|
1782
|
+
.sd-element--collapsed > .sd-element__header--location-top {
|
1783
|
+
margin-top: 0;
|
1784
|
+
}
|
1777
1785
|
.sd-element--collapsed.sd-element--with-frame {
|
1778
1786
|
padding-top: 0;
|
1779
1787
|
padding-bottom: 0;
|
@@ -1783,9 +1791,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1783
1791
|
padding-bottom: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1784
1792
|
border-radius: var(--sjs-questionpanel-cornerRadius, var(--sjs-corner-radius, 4px));
|
1785
1793
|
}
|
1786
|
-
.sd-element--collapsed.sd-element--with-frame > .sd-element__header--location-top {
|
1787
|
-
margin-top: 0;
|
1788
|
-
}
|
1789
1794
|
.sd-element--collapsed > .sd-element__header:focus-within, .sd-element--collapsed > .sd-element__header:hover {
|
1790
1795
|
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
1791
1796
|
}
|
@@ -1865,7 +1870,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1865
1870
|
}
|
1866
1871
|
|
1867
1872
|
.sd-question__erbox--above-question {
|
1868
|
-
margin-bottom:
|
1873
|
+
margin-bottom: var(--sd-base-vertical-padding);
|
1869
1874
|
}
|
1870
1875
|
|
1871
1876
|
.sd-question__erbox--below-question {
|
@@ -1892,6 +1897,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1892
1897
|
}
|
1893
1898
|
|
1894
1899
|
.sd-question__header--location-top {
|
1900
|
+
margin-top: calc(-0.25 * var(--sd-base-vertical-padding));
|
1895
1901
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1896
1902
|
}
|
1897
1903
|
|
@@ -1906,10 +1912,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1906
1912
|
}
|
1907
1913
|
.sd-element--with-frame > .sd-question__erbox--above-question {
|
1908
1914
|
margin-top: calc(-1 * var(--sd-base-padding));
|
1909
|
-
margin-bottom: var(--sd-base-vertical-padding);
|
1910
|
-
}
|
1911
|
-
.sd-element--with-frame > .sd-question__header--location-top {
|
1912
|
-
margin-top: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1913
1915
|
}
|
1914
1916
|
.sd-element--with-frame > .sd-question__content > .sd-question__header--location--bottom {
|
1915
1917
|
margin-bottom: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -1997,7 +1999,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1997
1999
|
min-height: calc(24 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1998
2000
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
1999
2001
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2000
|
-
color: var(--sjs-
|
2002
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2001
2003
|
}
|
2002
2004
|
.sd-question__placeholder > div .sv-string-viewer, .sd-question__placeholder > span .sv-string-viewer {
|
2003
2005
|
white-space: pre-line;
|
@@ -2050,7 +2052,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2050
2052
|
}
|
2051
2053
|
|
2052
2054
|
.sd-input::placeholder {
|
2053
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2055
|
+
color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
2054
2056
|
-webkit-user-select: none;
|
2055
2057
|
-moz-user-select: none;
|
2056
2058
|
-ms-user-select: none;
|
@@ -2217,11 +2219,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2217
2219
|
}
|
2218
2220
|
|
2219
2221
|
.sd-panel__content {
|
2220
|
-
padding-top: var(--sd-base-
|
2222
|
+
padding-top: var(--sd-base-padding);
|
2221
2223
|
}
|
2222
2224
|
|
2223
2225
|
.sjs_sp_placeholder {
|
2224
|
-
color: var(--sjs-
|
2226
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2225
2227
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
2226
2228
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2227
2229
|
}
|
@@ -2245,6 +2247,14 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2245
2247
|
background-color: var(--sjs-special-red-light, var(--red-light, rgba(230, 10, 62, 0.1)));
|
2246
2248
|
}
|
2247
2249
|
|
2250
|
+
.sd-signaturepad__canvas,
|
2251
|
+
.sd-signaturepad__background-image {
|
2252
|
+
position: absolute;
|
2253
|
+
top: 0;
|
2254
|
+
left: 0;
|
2255
|
+
object-fit: cover;
|
2256
|
+
}
|
2257
|
+
|
2248
2258
|
.sd-checkbox__decorator {
|
2249
2259
|
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
2250
2260
|
}
|
@@ -2282,13 +2292,18 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2282
2292
|
}
|
2283
2293
|
|
2284
2294
|
.sd-matrixdynamic__footer {
|
2285
|
-
padding-top: calc(
|
2295
|
+
padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2286
2296
|
}
|
2287
2297
|
|
2288
2298
|
.sd-action.sd-matrixdynamic__remove-btn {
|
2289
2299
|
opacity: 0.5;
|
2290
2300
|
}
|
2291
2301
|
|
2302
|
+
.sd-action.sd-matrixdynamic__remove-btn .sd-action__icon {
|
2303
|
+
width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2304
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2305
|
+
}
|
2306
|
+
|
2292
2307
|
.sd-matrixdynamic__btn {
|
2293
2308
|
appearance: none;
|
2294
2309
|
background: transparent;
|
@@ -2332,19 +2347,43 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2332
2347
|
.sd-table {
|
2333
2348
|
width: 100%;
|
2334
2349
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
2335
|
-
border-collapse:
|
2350
|
+
border-collapse: separate;
|
2351
|
+
border-spacing: 0;
|
2336
2352
|
white-space: normal;
|
2337
2353
|
}
|
2354
|
+
.sd-table > thead > tr > th {
|
2355
|
+
border-top: 0;
|
2356
|
+
border-bottom: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
|
2357
|
+
}
|
2358
|
+
|
2359
|
+
.sd-table__cell {
|
2360
|
+
border-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
|
2361
|
+
border-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
|
2362
|
+
background-clip: padding-box;
|
2363
|
+
}
|
2364
|
+
|
2365
|
+
.sd-table__row:first-of-type > .sd-table__cell {
|
2366
|
+
border-top: 0;
|
2367
|
+
}
|
2368
|
+
|
2369
|
+
.sd-table__row:last-of-type > .sd-table__cell {
|
2370
|
+
border-bottom: 0;
|
2371
|
+
}
|
2338
2372
|
|
2339
2373
|
.sd-table--align-top .sd-table__cell {
|
2340
2374
|
vertical-align: top;
|
2341
2375
|
}
|
2342
2376
|
|
2377
|
+
.sd-table--no-header {
|
2378
|
+
padding-top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2379
|
+
}
|
2380
|
+
|
2343
2381
|
.sd-table--alternate-rows {
|
2344
|
-
margin:
|
2382
|
+
margin-left: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2383
|
+
margin-right: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2345
2384
|
width: calc(100% - 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2346
2385
|
}
|
2347
|
-
.sd-table--alternate-rows .sd-table__cell:first-of-type {
|
2386
|
+
.sd-table--alternate-rows .sd-table__cell:not(.sd-table__cell--header):first-of-type {
|
2348
2387
|
padding-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2349
2388
|
}
|
2350
2389
|
.sd-table--alternate-rows .sd-table__cell:last-of-type {
|
@@ -2354,6 +2393,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2354
2393
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
|
2355
2394
|
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2356
2395
|
}
|
2396
|
+
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-matrix__text--checked,
|
2397
|
+
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type.sd-matrix__text--checked {
|
2398
|
+
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
2399
|
+
}
|
2357
2400
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td .sd-input,
|
2358
2401
|
.sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
|
2359
2402
|
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
@@ -2375,12 +2418,16 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2375
2418
|
font-weight: normal;
|
2376
2419
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
2377
2420
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2378
|
-
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2421
|
+
padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2379
2422
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2380
2423
|
text-align: center;
|
2381
2424
|
}
|
2425
|
+
.sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
|
2426
|
+
min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2427
|
+
}
|
2382
2428
|
|
2383
2429
|
.sd-table__cell--error {
|
2430
|
+
border: none;
|
2384
2431
|
padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2385
2432
|
}
|
2386
2433
|
.sd-table__cell--error .sd-question__erbox--outside-question {
|
@@ -2419,14 +2466,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2419
2466
|
}
|
2420
2467
|
|
2421
2468
|
.sd-table__cell--header span {
|
2422
|
-
font-size: calc(1 * var(--sjs-font-size, 16px));
|
2423
|
-
line-height: calc(1.5 * var(--sjs-font-size, 16px));
|
2469
|
+
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
2470
|
+
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2424
2471
|
}
|
2425
2472
|
|
2426
2473
|
.sd-table__cell--header {
|
2427
2474
|
font-weight: 600;
|
2475
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
2428
2476
|
vertical-align: top;
|
2429
|
-
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)))
|
2477
|
+
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2430
2478
|
}
|
2431
2479
|
.sd-table__cell--header:not(.sd-table__cell--empty) {
|
2432
2480
|
min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -2437,6 +2485,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2437
2485
|
width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2438
2486
|
}
|
2439
2487
|
|
2488
|
+
.sd-matrixdropdown .sd-table__cell--header.sd-table__cell--action {
|
2489
|
+
min-width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2490
|
+
width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2491
|
+
}
|
2492
|
+
|
2440
2493
|
.sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty) {
|
2441
2494
|
min-width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2442
2495
|
width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -2451,7 +2504,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2451
2504
|
}
|
2452
2505
|
|
2453
2506
|
.sd-table__cell--detail-panel {
|
2454
|
-
|
2507
|
+
border-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
|
2508
|
+
padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2509
|
+
border-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
|
2455
2510
|
}
|
2456
2511
|
|
2457
2512
|
.sd-table__cell--actions .sv-action-bar,
|
@@ -2460,24 +2515,26 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2460
2515
|
}
|
2461
2516
|
|
2462
2517
|
.sd-table__cell--actions:not(.sd-table__cell--vertical) {
|
2463
|
-
width:
|
2518
|
+
width: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2519
|
+
}
|
2520
|
+
.sd-table__cell--actions:not(.sd-table__cell--vertical):not(.sd-table__cell--drag):first-of-type {
|
2521
|
+
padding-left: 0;
|
2464
2522
|
}
|
2465
2523
|
|
2466
2524
|
.sd-table__cell--detail-button {
|
2467
2525
|
border: none;
|
2468
2526
|
background: transparent;
|
2469
2527
|
border-radius: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2470
|
-
width: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2471
|
-
height: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2472
2528
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2473
2529
|
}
|
2474
2530
|
.sd-table__cell--detail-button svg {
|
2475
|
-
|
2476
|
-
|
2531
|
+
display: block;
|
2532
|
+
width: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2533
|
+
height: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2477
2534
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2478
2535
|
}
|
2479
2536
|
.sd-table__cell--detail-button:hover {
|
2480
|
-
background: var(--sjs-
|
2537
|
+
background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
2481
2538
|
}
|
2482
2539
|
.sd-table__cell--detail-button:hover svg {
|
2483
2540
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
@@ -2492,9 +2549,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2492
2549
|
|
2493
2550
|
.sd-table__cell--row-text {
|
2494
2551
|
font-weight: 600;
|
2552
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
2495
2553
|
text-align: left;
|
2496
2554
|
min-width: calc(12 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2497
|
-
padding: calc(
|
2555
|
+
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2498
2556
|
}
|
2499
2557
|
|
2500
2558
|
.sd-matrixdynamic__content .sd-table__question-wrapper {
|
@@ -2514,7 +2572,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2514
2572
|
.sd-matrix__cell:first-of-type,
|
2515
2573
|
.sd-matrix tr > td:first-of-type {
|
2516
2574
|
position: sticky;
|
2517
|
-
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
2575
|
+
background-color: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
2518
2576
|
z-index: 12;
|
2519
2577
|
}
|
2520
2578
|
.sd-table__cell--actions:not(.sd-table__cell--vertical):first-of-type,
|
@@ -2543,6 +2601,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2543
2601
|
overflow-x: auto;
|
2544
2602
|
}
|
2545
2603
|
|
2604
|
+
.sd-question--table.sd-element--nested {
|
2605
|
+
overflow-x: visible;
|
2606
|
+
}
|
2607
|
+
|
2546
2608
|
.sd-table-wrapper {
|
2547
2609
|
display: flex;
|
2548
2610
|
margin: 0 calc(-1 * var(--sd-base-padding));
|
@@ -2575,10 +2637,20 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2575
2637
|
left: 0;
|
2576
2638
|
}
|
2577
2639
|
.sd-question--table > .sd-question__content {
|
2578
|
-
padding-top: calc(2
|
2640
|
+
padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2579
2641
|
min-width: min-content;
|
2580
2642
|
}
|
2581
|
-
.sd-question--table
|
2643
|
+
.sd-question--table.sd-element--nested > .sd-question__header--location-top {
|
2644
|
+
margin-top: calc(-0.25 * var(--sd-base-vertical-padding));
|
2645
|
+
}
|
2646
|
+
.sd-question--table.sd-element--nested > .sd-question__erbox--above-question {
|
2647
|
+
margin-bottom: var(--sd-base-vertical-padding);
|
2648
|
+
}
|
2649
|
+
.sd-question--table.sd-element--nested > .sd-question__content {
|
2650
|
+
min-width: auto;
|
2651
|
+
overflow-x: auto;
|
2652
|
+
}
|
2653
|
+
.sd-question--table.sd-element--nested > .sd-question__content, .sd-question--table:not(.sd-element--with-frame):not(.sd-element--nested) {
|
2582
2654
|
padding-right: var(--sd-base-padding);
|
2583
2655
|
margin-right: calc(-1 * var(--sd-base-padding));
|
2584
2656
|
padding-left: var(--sd-base-padding);
|
@@ -2602,6 +2674,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2602
2674
|
margin: auto;
|
2603
2675
|
}
|
2604
2676
|
|
2677
|
+
.sd-table.sd-matrixdynamic {
|
2678
|
+
table-layout: auto;
|
2679
|
+
}
|
2680
|
+
|
2605
2681
|
.sd-page {
|
2606
2682
|
position: relative;
|
2607
2683
|
display: flex;
|
@@ -2676,7 +2752,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2676
2752
|
}
|
2677
2753
|
|
2678
2754
|
.sd-page__row.sd-row--multiple {
|
2679
|
-
padding: var(--sd-base-
|
2755
|
+
padding: var(--sd-base-padding) var(--sd-base-padding) var(--sd-base-padding) 0;
|
2680
2756
|
margin-left: 0;
|
2681
2757
|
width: 100%;
|
2682
2758
|
}
|
@@ -2834,7 +2910,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2834
2910
|
|
2835
2911
|
.sd-item__control:focus + .sd-item__decorator {
|
2836
2912
|
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
2837
|
-
background: var(--sjs-general-backcolor, var(--background, #fff));
|
2913
|
+
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
2838
2914
|
outline: none;
|
2839
2915
|
}
|
2840
2916
|
|
@@ -3322,6 +3398,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3322
3398
|
|
3323
3399
|
.sd-rating__item--selected .sd-rating__item-text.sd-rating__item-text {
|
3324
3400
|
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3401
|
+
font-weight: inherit;
|
3325
3402
|
}
|
3326
3403
|
|
3327
3404
|
.sv-ranking-item--error .sv-ranking-item__index {
|
@@ -3346,6 +3423,34 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3346
3423
|
line-height: calc(1.5 * var(--sjs-font-size, 16px));
|
3347
3424
|
}
|
3348
3425
|
|
3426
|
+
.sv-dragdrop-movedown {
|
3427
|
+
transform: translate(0, 0);
|
3428
|
+
animation: svdragdropmovedown 0.1s;
|
3429
|
+
animation-timing-function: ease-in-out;
|
3430
|
+
}
|
3431
|
+
|
3432
|
+
@keyframes svdragdropmovedown {
|
3433
|
+
0% {
|
3434
|
+
transform: translate(0, -50px);
|
3435
|
+
}
|
3436
|
+
100% {
|
3437
|
+
transform: translate(0, 0);
|
3438
|
+
}
|
3439
|
+
}
|
3440
|
+
.sv-dragdrop-moveup {
|
3441
|
+
transform: translate(0, 0);
|
3442
|
+
animation: svdragdropmoveup 0.1s;
|
3443
|
+
animation-timing-function: ease-in-out;
|
3444
|
+
}
|
3445
|
+
|
3446
|
+
@keyframes svdragdropmoveup {
|
3447
|
+
0% {
|
3448
|
+
transform: translate(0, 50px);
|
3449
|
+
}
|
3450
|
+
100% {
|
3451
|
+
transform: translate(0, 0);
|
3452
|
+
}
|
3453
|
+
}
|
3349
3454
|
.sv-dropdown_select-wrapper {
|
3350
3455
|
position: relative;
|
3351
3456
|
}
|
@@ -3400,6 +3505,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3400
3505
|
|
3401
3506
|
.sd-dropdown_clean-button {
|
3402
3507
|
display: flex;
|
3508
|
+
justify-content: center;
|
3509
|
+
align-items: center;
|
3403
3510
|
padding: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3404
3511
|
margin: auto 0;
|
3405
3512
|
}
|
@@ -3416,9 +3523,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3416
3523
|
padding-inline-end: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3417
3524
|
}
|
3418
3525
|
|
3526
|
+
.sd-dropdown_chevron-button-svg,
|
3419
3527
|
.sd-dropdown_clean-button-svg {
|
3420
|
-
width: calc(
|
3421
|
-
height: calc(
|
3528
|
+
width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3529
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3422
3530
|
}
|
3423
3531
|
|
3424
3532
|
.sd-input.sd-dropdown:focus-within {
|
@@ -3453,12 +3561,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3453
3561
|
}
|
3454
3562
|
|
3455
3563
|
.sd-dropdown--empty:not(.sd-input--disabled) .sd-dropdown__filter-string-input::placeholder {
|
3456
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3564
|
+
color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
3457
3565
|
}
|
3458
3566
|
|
3459
3567
|
.sd-dropdown__filter-string-input::placeholder {
|
3460
|
-
font-family: var(--font-family, var(--font-family));
|
3461
|
-
font-size: calc(1 * var(--sjs-font-size, 16px));
|
3462
3568
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3463
3569
|
width: 100%;
|
3464
3570
|
max-width: 100%;
|
@@ -3466,12 +3572,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3466
3572
|
text-overflow: ellipsis;
|
3467
3573
|
white-space: nowrap;
|
3468
3574
|
display: inline-block;
|
3469
|
-
line-height: calc(1.5 * var(--sjs-font-size, 16px));
|
3470
3575
|
appearance: none;
|
3471
3576
|
}
|
3472
3577
|
|
3473
3578
|
.sd-dropdown__hint-prefix {
|
3474
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3579
|
+
color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
3475
3580
|
}
|
3476
3581
|
.sd-dropdown__hint-prefix span {
|
3477
3582
|
white-space: pre;
|
@@ -3479,12 +3584,17 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3479
3584
|
|
3480
3585
|
.sd-dropdown__hint-suffix {
|
3481
3586
|
display: flex;
|
3482
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3587
|
+
color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
3483
3588
|
}
|
3484
3589
|
.sd-dropdown__hint-suffix span {
|
3485
3590
|
white-space: pre;
|
3486
3591
|
}
|
3487
3592
|
|
3593
|
+
.sv-popup.sv-popup--dropdown.sv-popup--dropdown .sd-list__item-body {
|
3594
|
+
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3595
|
+
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
3596
|
+
}
|
3597
|
+
|
3488
3598
|
[dir=rtl] .sd-dropdown,
|
3489
3599
|
[style*="direction:rtl"] .sd-dropdown,
|
3490
3600
|
[style*="direction: rtl"] .sd-dropdown {
|
@@ -3499,8 +3609,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3499
3609
|
}
|
3500
3610
|
|
3501
3611
|
.sd-tagbox_clean-button {
|
3502
|
-
height: calc(
|
3503
|
-
padding: calc(1 * var(--sjs-
|
3612
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3613
|
+
padding: calc(0.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3504
3614
|
margin: auto 0;
|
3505
3615
|
}
|
3506
3616
|
|
@@ -3541,10 +3651,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3541
3651
|
}
|
3542
3652
|
|
3543
3653
|
.sd-tagbox-item_clean-button-svg {
|
3544
|
-
display:
|
3545
|
-
padding: calc(0.
|
3546
|
-
width: calc(
|
3547
|
-
height: calc(
|
3654
|
+
display: block;
|
3655
|
+
padding: calc(0.25 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3656
|
+
width: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3657
|
+
height: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3548
3658
|
}
|
3549
3659
|
|
3550
3660
|
.sd-tagbox-item_clean-button-svg:hover {
|
@@ -3664,8 +3774,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3664
3774
|
position: absolute;
|
3665
3775
|
top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3666
3776
|
right: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3667
|
-
width: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3668
|
-
height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3669
3777
|
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3670
3778
|
box-sizing: border-box;
|
3671
3779
|
border-radius: 100%;
|
@@ -3674,8 +3782,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3674
3782
|
}
|
3675
3783
|
|
3676
3784
|
.sd-imagepicker__check-icon {
|
3677
|
-
|
3678
|
-
|
3785
|
+
display: block;
|
3786
|
+
width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3787
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3679
3788
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3680
3789
|
}
|
3681
3790
|
|
@@ -3773,6 +3882,113 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3773
3882
|
white-space: initial;
|
3774
3883
|
}
|
3775
3884
|
|
3885
|
+
.sd-html h1 {
|
3886
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3887
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
|
3888
|
+
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
3889
|
+
font-family: var(--font-family);
|
3890
|
+
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
3891
|
+
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
3892
|
+
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
3893
|
+
letter-spacing: var(--sjs-article-font-xx-large-letterSpacing, 0);
|
3894
|
+
line-height: var(--sjs-article-font-xx-large-lineHeight, 64px);
|
3895
|
+
text-indent: var(--sjs-article-font-xx-large-paragraphIndent, 0px);
|
3896
|
+
text-transform: var(--sjs-article-font-xx-large-textCase, "none");
|
3897
|
+
}
|
3898
|
+
.sd-html h2 {
|
3899
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3900
|
+
font-size: var(--sjs-article-font-x-large-fontSize, 48px);
|
3901
|
+
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
3902
|
+
font-family: var(--font-family);
|
3903
|
+
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
3904
|
+
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
3905
|
+
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
3906
|
+
letter-spacing: var(--sjs-article-font-x-large-letterSpacing, 0);
|
3907
|
+
line-height: var(--sjs-article-font-x-large-lineHeight, 56px);
|
3908
|
+
text-indent: var(--sjs-article-font-x-large-paragraphIndent, 0px);
|
3909
|
+
text-transform: var(--sjs-article-font-x-large-textCase, "none");
|
3910
|
+
}
|
3911
|
+
.sd-html h3 {
|
3912
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3913
|
+
font-size: var(--sjs-article-font-large-fontSize, 32px);
|
3914
|
+
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
3915
|
+
font-family: var(--font-family);
|
3916
|
+
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
3917
|
+
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
3918
|
+
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
3919
|
+
letter-spacing: var(--sjs-article-font-large-letterSpacing, 0);
|
3920
|
+
line-height: var(--sjs-article-font-large-lineHeight, 40px);
|
3921
|
+
text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
|
3922
|
+
text-transform: var(--sjs-article-font-large-textCase, "none");
|
3923
|
+
}
|
3924
|
+
.sd-html h4 {
|
3925
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3926
|
+
font-size: var(--sjs-article-font-medium-fontSize, 24px);
|
3927
|
+
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
3928
|
+
font-family: var(--font-family);
|
3929
|
+
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
3930
|
+
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
3931
|
+
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
3932
|
+
letter-spacing: var(--sjs-article-font-medium-letterSpacing, 0);
|
3933
|
+
line-height: var(--sjs-article-font-medium-lineHeight, 32px);
|
3934
|
+
text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
|
3935
|
+
text-transform: var(--sjs-article-font-medium-textCase, "none");
|
3936
|
+
}
|
3937
|
+
.sd-html h5,
|
3938
|
+
.sd-html h6 {
|
3939
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3940
|
+
}
|
3941
|
+
.sd-html span,
|
3942
|
+
.sd-html div,
|
3943
|
+
.sd-html p {
|
3944
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3945
|
+
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
3946
|
+
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
3947
|
+
font-family: var(--font-family);
|
3948
|
+
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
3949
|
+
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
3950
|
+
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
3951
|
+
letter-spacing: var(--sjs-article-font-default-letterSpacing, 0);
|
3952
|
+
line-height: var(--sjs-article-font-default-lineHeight, 28px);
|
3953
|
+
text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
|
3954
|
+
text-transform: var(--sjs-article-font-default-textCase, "none");
|
3955
|
+
}
|
3956
|
+
.sd-html a {
|
3957
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3958
|
+
}
|
3959
|
+
.sd-html button {
|
3960
|
+
display: flex;
|
3961
|
+
align-items: center;
|
3962
|
+
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3963
|
+
vertical-align: baseline;
|
3964
|
+
text-align: center;
|
3965
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
3966
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
3967
|
+
border: none;
|
3968
|
+
border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3969
|
+
cursor: pointer;
|
3970
|
+
user-select: none;
|
3971
|
+
outline: solid calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) transparent;
|
3972
|
+
}
|
3973
|
+
.sd-html button:hover {
|
3974
|
+
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
3975
|
+
}
|
3976
|
+
.sd-html button:focus {
|
3977
|
+
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3978
|
+
}
|
3979
|
+
.sd-html button span {
|
3980
|
+
display: flex;
|
3981
|
+
align-items: center;
|
3982
|
+
flex-grow: 1;
|
3983
|
+
justify-content: center;
|
3984
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3985
|
+
font-weight: 600;
|
3986
|
+
font-style: normal;
|
3987
|
+
font-family: var(--font-family, var(--font-family));
|
3988
|
+
font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
3989
|
+
line-height: calc(1.5 * var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3990
|
+
}
|
3991
|
+
|
3776
3992
|
.sd-expression {
|
3777
3993
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3778
3994
|
font-size: calc(1 * var(--sjs-font-size, 16px));
|
@@ -3921,7 +4137,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3921
4137
|
}
|
3922
4138
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
3923
4139
|
padding-bottom: 0;
|
3924
|
-
padding-top:
|
4140
|
+
padding-top: var(--sd-base-vertical-padding);
|
3925
4141
|
}
|
3926
4142
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header:after {
|
3927
4143
|
display: none;
|
@@ -3930,10 +4146,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3930
4146
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3931
4147
|
}
|
3932
4148
|
|
3933
|
-
.sd-question__content:first-child > .sd-paneldynamic > .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
3934
|
-
padding-top: var(--sd-base-vertical-padding);
|
3935
|
-
}
|
3936
|
-
|
3937
4149
|
.sd-paneldynamic__separator {
|
3938
4150
|
display: block;
|
3939
4151
|
position: absolute;
|
@@ -4085,7 +4297,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4085
4297
|
font-family: var(--font-family, var(--font-family));
|
4086
4298
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
4087
4299
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4088
|
-
color: var(--sjs-
|
4300
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
4089
4301
|
overflow-x: hidden;
|
4090
4302
|
white-space: nowrap;
|
4091
4303
|
}
|
@@ -4094,7 +4306,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4094
4306
|
}
|
4095
4307
|
|
4096
4308
|
.sd-tab-item.sd-tab-item--pressed {
|
4097
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4309
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4098
4310
|
box-shadow: inset 0px -2px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4099
4311
|
}
|
4100
4312
|
|
@@ -4205,7 +4417,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4205
4417
|
text-align: center;
|
4206
4418
|
word-break: break-word;
|
4207
4419
|
white-space: normal;
|
4208
|
-
color: var(--sjs-
|
4420
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
4209
4421
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
4210
4422
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4211
4423
|
}
|
@@ -4241,14 +4453,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4241
4453
|
|
4242
4454
|
.sd-file__clean-btn {
|
4243
4455
|
z-index: 2;
|
4244
|
-
|
4456
|
+
inset-inline-end: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4245
4457
|
}
|
4246
4458
|
.sd-file__clean-btn span:first-child {
|
4247
4459
|
display: none;
|
4248
4460
|
}
|
4249
4461
|
|
4250
4462
|
.sd-file__choose-btn--icon {
|
4251
|
-
|
4463
|
+
inset-inline-end: calc((1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))))) + (5 * var(--sjs-base-unit, var(--base-unit, 8px))));
|
4252
4464
|
}
|
4253
4465
|
|
4254
4466
|
.sd-file__list {
|
@@ -4735,8 +4947,8 @@ svg.sd-action--icon {
|
|
4735
4947
|
}
|
4736
4948
|
.sd-context-btn svg {
|
4737
4949
|
display: block;
|
4738
|
-
width: calc(
|
4739
|
-
height: calc(
|
4950
|
+
width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4951
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4740
4952
|
}
|
4741
4953
|
.sd-context-btn use {
|
4742
4954
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
@@ -4762,8 +4974,111 @@ svg.sd-action--icon {
|
|
4762
4974
|
text-align: center;
|
4763
4975
|
height: auto;
|
4764
4976
|
}
|
4977
|
+
.sd-completedpage h1 {
|
4978
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4979
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
|
4980
|
+
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
4981
|
+
font-family: var(--font-family);
|
4982
|
+
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
4983
|
+
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
4984
|
+
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
4985
|
+
letter-spacing: var(--sjs-article-font-xx-large-letterSpacing, 0);
|
4986
|
+
line-height: var(--sjs-article-font-xx-large-lineHeight, 64px);
|
4987
|
+
text-indent: var(--sjs-article-font-xx-large-paragraphIndent, 0px);
|
4988
|
+
text-transform: var(--sjs-article-font-xx-large-textCase, "none");
|
4989
|
+
}
|
4990
|
+
.sd-completedpage h2 {
|
4991
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4992
|
+
font-size: var(--sjs-article-font-x-large-fontSize, 48px);
|
4993
|
+
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
4994
|
+
font-family: var(--font-family);
|
4995
|
+
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
4996
|
+
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
4997
|
+
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
4998
|
+
letter-spacing: var(--sjs-article-font-x-large-letterSpacing, 0);
|
4999
|
+
line-height: var(--sjs-article-font-x-large-lineHeight, 56px);
|
5000
|
+
text-indent: var(--sjs-article-font-x-large-paragraphIndent, 0px);
|
5001
|
+
text-transform: var(--sjs-article-font-x-large-textCase, "none");
|
5002
|
+
}
|
4765
5003
|
.sd-completedpage h3 {
|
4766
|
-
|
5004
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
5005
|
+
font-size: var(--sjs-article-font-large-fontSize, 32px);
|
5006
|
+
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
5007
|
+
font-family: var(--font-family);
|
5008
|
+
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
5009
|
+
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
5010
|
+
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
5011
|
+
letter-spacing: var(--sjs-article-font-large-letterSpacing, 0);
|
5012
|
+
line-height: var(--sjs-article-font-large-lineHeight, 40px);
|
5013
|
+
text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
|
5014
|
+
text-transform: var(--sjs-article-font-large-textCase, "none");
|
5015
|
+
}
|
5016
|
+
.sd-completedpage h4 {
|
5017
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
5018
|
+
font-size: var(--sjs-article-font-medium-fontSize, 24px);
|
5019
|
+
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
5020
|
+
font-family: var(--font-family);
|
5021
|
+
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
5022
|
+
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
5023
|
+
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
5024
|
+
letter-spacing: var(--sjs-article-font-medium-letterSpacing, 0);
|
5025
|
+
line-height: var(--sjs-article-font-medium-lineHeight, 32px);
|
5026
|
+
text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
|
5027
|
+
text-transform: var(--sjs-article-font-medium-textCase, "none");
|
5028
|
+
}
|
5029
|
+
.sd-completedpage h5,
|
5030
|
+
.sd-completedpage h6 {
|
5031
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
5032
|
+
}
|
5033
|
+
.sd-completedpage span,
|
5034
|
+
.sd-completedpage div,
|
5035
|
+
.sd-completedpage p {
|
5036
|
+
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
5037
|
+
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
5038
|
+
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
5039
|
+
font-family: var(--font-family);
|
5040
|
+
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
5041
|
+
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
5042
|
+
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
5043
|
+
letter-spacing: var(--sjs-article-font-default-letterSpacing, 0);
|
5044
|
+
line-height: var(--sjs-article-font-default-lineHeight, 28px);
|
5045
|
+
text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
|
5046
|
+
text-transform: var(--sjs-article-font-default-textCase, "none");
|
5047
|
+
}
|
5048
|
+
.sd-completedpage a {
|
5049
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5050
|
+
}
|
5051
|
+
.sd-completedpage button {
|
5052
|
+
display: flex;
|
5053
|
+
align-items: center;
|
5054
|
+
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5055
|
+
vertical-align: baseline;
|
5056
|
+
text-align: center;
|
5057
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
5058
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5059
|
+
border: none;
|
5060
|
+
border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5061
|
+
cursor: pointer;
|
5062
|
+
user-select: none;
|
5063
|
+
outline: solid calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) transparent;
|
5064
|
+
}
|
5065
|
+
.sd-completedpage button:hover {
|
5066
|
+
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
5067
|
+
}
|
5068
|
+
.sd-completedpage button:focus {
|
5069
|
+
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5070
|
+
}
|
5071
|
+
.sd-completedpage button span {
|
5072
|
+
display: flex;
|
5073
|
+
align-items: center;
|
5074
|
+
flex-grow: 1;
|
5075
|
+
justify-content: center;
|
5076
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5077
|
+
font-weight: 600;
|
5078
|
+
font-style: normal;
|
5079
|
+
font-family: var(--font-family, var(--font-family));
|
5080
|
+
font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
5081
|
+
line-height: calc(1.5 * var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4767
5082
|
}
|
4768
5083
|
|
4769
5084
|
.sd-completedpage:before,
|
@@ -5030,13 +5345,21 @@ sv-components-container,
|
|
5030
5345
|
align-items: center;
|
5031
5346
|
justify-content: center;
|
5032
5347
|
position: absolute;
|
5033
|
-
z-index:
|
5348
|
+
z-index: 1;
|
5034
5349
|
user-select: none;
|
5035
5350
|
pointer-events: none;
|
5036
5351
|
width: 100%;
|
5037
5352
|
height: 100%;
|
5038
5353
|
}
|
5039
5354
|
|
5355
|
+
.sjs_sp_canvas,
|
5356
|
+
.sjs_sp__background-image {
|
5357
|
+
position: absolute;
|
5358
|
+
top: 0;
|
5359
|
+
left: 0;
|
5360
|
+
object-fit: cover;
|
5361
|
+
}
|
5362
|
+
|
5040
5363
|
.sd-root-modern {
|
5041
5364
|
--sd-base-padding: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5042
5365
|
--sd-base-vertical-padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -5298,12 +5621,13 @@ body {
|
|
5298
5621
|
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
5299
5622
|
}
|
5300
5623
|
|
5301
|
-
.sv-popup.sv-popup--dropdown .sv-popup__shadow {
|
5624
|
+
.sv-popup.sv-popup--dropdown.sv-popup--dropdown .sv-popup__shadow {
|
5302
5625
|
box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
|
5303
5626
|
}
|
5304
|
-
.sv-popup.sv-popup--dropdown .sv-popup__body-content {
|
5627
|
+
.sv-popup.sv-popup--dropdown.sv-popup--dropdown .sv-popup__body-content {
|
5305
5628
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
5306
5629
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|
5630
|
+
height: 100%;
|
5307
5631
|
}
|
5308
5632
|
|
5309
5633
|
.sv-popup.sv-popup--modal .sv-popup__body-content {
|