survey-react 1.9.104 → 1.9.106
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 +607 -94
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +26 -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 +366 -215
- package/survey.react.js +1213 -549
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +3 -3
package/defaultV2.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.106
|
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
|
*/
|
@@ -1086,6 +1086,13 @@ sv-popup {
|
|
1086
1086
|
height: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1087
1087
|
}
|
1088
1088
|
|
1089
|
+
.sv-ranking-item--disabled.sv-ranking-item--disabled {
|
1090
|
+
cursor: initial;
|
1091
|
+
}
|
1092
|
+
.sv-ranking-item--disabled.sv-ranking-item--disabled .sv-ranking-item__icon-container.sv-ranking-item__icon-container .sv-ranking-item__icon.sv-ranking-item__icon {
|
1093
|
+
visibility: hidden;
|
1094
|
+
}
|
1095
|
+
|
1089
1096
|
.sv-ranking-item__icon.sv-ranking-item__icon {
|
1090
1097
|
visibility: hidden;
|
1091
1098
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
@@ -1116,6 +1123,7 @@ sv-popup {
|
|
1116
1123
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAArSURBVHgB7cuhEQAwDMNAtUN4//m8RMtygcE5PxMQxAKnh6Q3mWzXd4mAD4cJBAQCqfbUAAAAAElFTkSuQmCC");
|
1117
1124
|
background-position: center;
|
1118
1125
|
background-repeat: no-repeat;
|
1126
|
+
background-size: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
1119
1127
|
}
|
1120
1128
|
|
1121
1129
|
.sv-ranking-item__text {
|
@@ -1248,6 +1256,9 @@ sv-popup {
|
|
1248
1256
|
.sv-ranking--select-to-rank-vertical .sv-ranking__container--empty {
|
1249
1257
|
padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1250
1258
|
padding-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1259
|
+
display: flex;
|
1260
|
+
justify-content: center;
|
1261
|
+
align-items: center;
|
1251
1262
|
}
|
1252
1263
|
|
1253
1264
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__containers-divider {
|
@@ -1256,14 +1267,14 @@ sv-popup {
|
|
1256
1267
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--to .sv-ranking-item {
|
1257
1268
|
left: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1258
1269
|
}
|
1259
|
-
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--to {
|
1260
|
-
padding-right: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1261
|
-
}
|
1262
1270
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--to .sv-ranking-item {
|
1263
1271
|
left: initial;
|
1264
1272
|
}
|
1265
|
-
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--
|
1266
|
-
padding-left: calc(
|
1273
|
+
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--to .sv-ranking__container-placeholder {
|
1274
|
+
padding-left: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1275
|
+
}
|
1276
|
+
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--from .sv-ranking__container-placeholder {
|
1277
|
+
padding-right: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1267
1278
|
}
|
1268
1279
|
|
1269
1280
|
.sv-ranking__container-placeholder {
|
@@ -1276,17 +1287,14 @@ sv-popup {
|
|
1276
1287
|
display: flex;
|
1277
1288
|
justify-content: center;
|
1278
1289
|
align-items: center;
|
1279
|
-
width: 100%;
|
1280
1290
|
height: 100%;
|
1281
1291
|
}
|
1282
1292
|
|
1283
1293
|
.sv-ranking__container {
|
1284
1294
|
flex: 1;
|
1285
|
-
max-width: 100%;
|
1286
1295
|
}
|
1287
1296
|
|
1288
1297
|
.sv-ranking__container--empty {
|
1289
|
-
padding: calc(8 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1290
1298
|
box-sizing: border-box;
|
1291
1299
|
text-align: center;
|
1292
1300
|
}
|
@@ -1778,6 +1786,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1778
1786
|
.sd-element--collapsed.sd-element--complex > .sd-element__header--location-top:after {
|
1779
1787
|
display: none;
|
1780
1788
|
}
|
1789
|
+
.sd-element--collapsed > .sd-element__header--location-top {
|
1790
|
+
margin-top: 0;
|
1791
|
+
}
|
1781
1792
|
.sd-element--collapsed.sd-element--with-frame {
|
1782
1793
|
padding-top: 0;
|
1783
1794
|
padding-bottom: 0;
|
@@ -1787,9 +1798,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1787
1798
|
padding-bottom: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1788
1799
|
border-radius: var(--sjs-questionpanel-cornerRadius, var(--sjs-corner-radius, 4px));
|
1789
1800
|
}
|
1790
|
-
.sd-element--collapsed.sd-element--with-frame > .sd-element__header--location-top {
|
1791
|
-
margin-top: 0;
|
1792
|
-
}
|
1793
1801
|
.sd-element--collapsed > .sd-element__header:focus-within, .sd-element--collapsed > .sd-element__header:hover {
|
1794
1802
|
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
1795
1803
|
}
|
@@ -1869,7 +1877,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1869
1877
|
}
|
1870
1878
|
|
1871
1879
|
.sd-question__erbox--above-question {
|
1872
|
-
margin-bottom:
|
1880
|
+
margin-bottom: var(--sd-base-vertical-padding);
|
1873
1881
|
}
|
1874
1882
|
|
1875
1883
|
.sd-question__erbox--below-question {
|
@@ -1896,6 +1904,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1896
1904
|
}
|
1897
1905
|
|
1898
1906
|
.sd-question__header--location-top {
|
1907
|
+
margin-top: calc(-0.25 * var(--sd-base-vertical-padding));
|
1899
1908
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1900
1909
|
}
|
1901
1910
|
|
@@ -1910,10 +1919,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1910
1919
|
}
|
1911
1920
|
.sd-element--with-frame > .sd-question__erbox--above-question {
|
1912
1921
|
margin-top: calc(-1 * var(--sd-base-padding));
|
1913
|
-
margin-bottom: var(--sd-base-vertical-padding);
|
1914
|
-
}
|
1915
|
-
.sd-element--with-frame > .sd-question__header--location-top {
|
1916
|
-
margin-top: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1917
1922
|
}
|
1918
1923
|
.sd-element--with-frame > .sd-question__content > .sd-question__header--location--bottom {
|
1919
1924
|
margin-bottom: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -2001,7 +2006,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2001
2006
|
min-height: calc(24 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2002
2007
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
2003
2008
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2004
|
-
color: var(--sjs-
|
2009
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2005
2010
|
}
|
2006
2011
|
.sd-question__placeholder > div .sv-string-viewer, .sd-question__placeholder > span .sv-string-viewer {
|
2007
2012
|
white-space: pre-line;
|
@@ -2221,11 +2226,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2221
2226
|
}
|
2222
2227
|
|
2223
2228
|
.sd-panel__content {
|
2224
|
-
padding-top: var(--sd-base-
|
2229
|
+
padding-top: var(--sd-base-padding);
|
2225
2230
|
}
|
2226
2231
|
|
2227
2232
|
.sjs_sp_placeholder {
|
2228
|
-
color: var(--sjs-
|
2233
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2229
2234
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
2230
2235
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2231
2236
|
}
|
@@ -2249,6 +2254,14 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2249
2254
|
background-color: var(--sjs-special-red-light, var(--red-light, rgba(230, 10, 62, 0.1)));
|
2250
2255
|
}
|
2251
2256
|
|
2257
|
+
.sd-signaturepad__canvas,
|
2258
|
+
.sd-signaturepad__background-image {
|
2259
|
+
position: absolute;
|
2260
|
+
top: 0;
|
2261
|
+
left: 0;
|
2262
|
+
object-fit: cover;
|
2263
|
+
}
|
2264
|
+
|
2252
2265
|
.sd-checkbox__decorator {
|
2253
2266
|
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
2254
2267
|
}
|
@@ -2293,6 +2306,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2293
2306
|
opacity: 0.5;
|
2294
2307
|
}
|
2295
2308
|
|
2309
|
+
.sd-action.sd-matrixdynamic__remove-btn .sd-action__icon {
|
2310
|
+
width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2311
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2312
|
+
}
|
2313
|
+
|
2296
2314
|
.sd-matrixdynamic__btn {
|
2297
2315
|
appearance: none;
|
2298
2316
|
background: transparent;
|
@@ -2351,6 +2369,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2351
2369
|
background-clip: padding-box;
|
2352
2370
|
}
|
2353
2371
|
|
2372
|
+
.sd-root-modern:not(.sd-root-modern--mobile) .sd-table__cell:not(.sd-table__cell--actions):not(.sd-table__cell--action):not(.sd-table__cell--empty.sd-table__cell--error) {
|
2373
|
+
width: 10000px;
|
2374
|
+
}
|
2375
|
+
|
2354
2376
|
.sd-table__row:first-of-type > .sd-table__cell {
|
2355
2377
|
border-top: 0;
|
2356
2378
|
}
|
@@ -2367,6 +2389,31 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2367
2389
|
padding-top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2368
2390
|
}
|
2369
2391
|
|
2392
|
+
.sd-panel__content .sd-table--no-header {
|
2393
|
+
padding-top: 0;
|
2394
|
+
}
|
2395
|
+
.sd-panel__content .sd-question--table .sd-question__content {
|
2396
|
+
padding-top: calc(0 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2397
|
+
}
|
2398
|
+
.sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content {
|
2399
|
+
padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2400
|
+
}
|
2401
|
+
.sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content .sd-table--no-header {
|
2402
|
+
padding-top: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2403
|
+
}
|
2404
|
+
.sd-panel__content .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2405
|
+
margin-top: calc(-3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2406
|
+
}
|
2407
|
+
.sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2408
|
+
margin-top: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2409
|
+
}
|
2410
|
+
.sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2411
|
+
margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2412
|
+
}
|
2413
|
+
.sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__header + .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2414
|
+
margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2415
|
+
}
|
2416
|
+
|
2370
2417
|
.sd-table--alternate-rows {
|
2371
2418
|
margin-left: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2372
2419
|
margin-right: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -2412,7 +2459,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2412
2459
|
text-align: center;
|
2413
2460
|
}
|
2414
2461
|
.sd-table__cell:not(.sd-table__cell--empty):not(.sd-table__cell--actions):not(:empty) {
|
2415
|
-
min-width: calc(
|
2462
|
+
min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2416
2463
|
}
|
2417
2464
|
|
2418
2465
|
.sd-table__cell--error {
|
@@ -2461,34 +2508,31 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2461
2508
|
|
2462
2509
|
.sd-table__cell--header {
|
2463
2510
|
font-weight: 600;
|
2511
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
2464
2512
|
vertical-align: top;
|
2465
2513
|
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2466
2514
|
}
|
2467
2515
|
.sd-table__cell--header:not(.sd-table__cell--empty) {
|
2468
|
-
min-width: calc(
|
2516
|
+
min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2469
2517
|
}
|
2470
2518
|
|
2471
2519
|
.sd-matrixdropdown .sd-table__cell--header.sd-table__cell--empty {
|
2472
|
-
min-width: calc(
|
2473
|
-
width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2520
|
+
min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2474
2521
|
}
|
2475
2522
|
|
2476
2523
|
.sd-matrixdropdown .sd-table__cell--header.sd-table__cell--action {
|
2477
|
-
min-width: calc(
|
2478
|
-
width: calc(
|
2524
|
+
min-width: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2525
|
+
width: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2479
2526
|
}
|
2480
2527
|
|
2481
2528
|
.sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty) {
|
2482
|
-
min-width: calc(
|
2483
|
-
width: calc(14 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2529
|
+
min-width: calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2484
2530
|
}
|
2485
2531
|
.sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--dropdown, .sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--rating {
|
2486
2532
|
min-width: calc(22 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2487
|
-
width: calc(22 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2488
2533
|
}
|
2489
2534
|
.sd-matrixdropdown .sd-table__cell--header:not(.sd-table__cell--empty).sd-table__cell--boolean {
|
2490
2535
|
min-width: calc(18 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2491
|
-
width: calc(18 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2492
2536
|
}
|
2493
2537
|
|
2494
2538
|
.sd-table__cell--detail-panel {
|
@@ -2507,19 +2551,20 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2507
2551
|
}
|
2508
2552
|
.sd-table__cell--actions:not(.sd-table__cell--vertical):not(.sd-table__cell--drag):first-of-type {
|
2509
2553
|
padding-left: 0;
|
2554
|
+
width: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2555
|
+
min-width: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2510
2556
|
}
|
2511
2557
|
|
2512
2558
|
.sd-table__cell--detail-button {
|
2513
2559
|
border: none;
|
2514
2560
|
background: transparent;
|
2515
2561
|
border-radius: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2516
|
-
width: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2517
|
-
height: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2518
2562
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2519
2563
|
}
|
2520
2564
|
.sd-table__cell--detail-button svg {
|
2521
|
-
|
2522
|
-
|
2565
|
+
display: block;
|
2566
|
+
width: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2567
|
+
height: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
2523
2568
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2524
2569
|
}
|
2525
2570
|
.sd-table__cell--detail-button:hover {
|
@@ -2538,6 +2583,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2538
2583
|
|
2539
2584
|
.sd-table__cell--row-text {
|
2540
2585
|
font-weight: 600;
|
2586
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
2541
2587
|
text-align: left;
|
2542
2588
|
min-width: calc(12 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2543
2589
|
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -2589,6 +2635,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2589
2635
|
overflow-x: auto;
|
2590
2636
|
}
|
2591
2637
|
|
2638
|
+
.sd-question--table.sd-element--nested {
|
2639
|
+
overflow-x: visible;
|
2640
|
+
}
|
2641
|
+
|
2592
2642
|
.sd-table-wrapper {
|
2593
2643
|
display: flex;
|
2594
2644
|
margin: 0 calc(-1 * var(--sd-base-padding));
|
@@ -2624,7 +2674,20 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2624
2674
|
padding-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2625
2675
|
min-width: min-content;
|
2626
2676
|
}
|
2627
|
-
.sd-question--table
|
2677
|
+
.sd-question--table.sd-element--nested > .sd-question__erbox--above-question {
|
2678
|
+
margin-bottom: var(--sd-base-vertical-padding);
|
2679
|
+
}
|
2680
|
+
.sd-question--table.sd-element--nested > .sd-question__content {
|
2681
|
+
min-width: auto;
|
2682
|
+
overflow-x: auto;
|
2683
|
+
}
|
2684
|
+
.sd-question--table.sd-element--nested > .sd-question__content {
|
2685
|
+
padding-bottom: calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2686
|
+
margin-bottom: calc(-0.25 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2687
|
+
padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2688
|
+
margin-top: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2689
|
+
}
|
2690
|
+
.sd-question--table.sd-element--nested > .sd-question__content, .sd-question--table:not(.sd-element--with-frame):not(.sd-element--nested) {
|
2628
2691
|
padding-right: var(--sd-base-padding);
|
2629
2692
|
margin-right: calc(-1 * var(--sd-base-padding));
|
2630
2693
|
padding-left: var(--sd-base-padding);
|
@@ -2636,10 +2699,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2636
2699
|
overflow-x: scroll;
|
2637
2700
|
}
|
2638
2701
|
|
2639
|
-
.sd-matrixdropdown.sd-table {
|
2640
|
-
table-layout: fixed;
|
2641
|
-
}
|
2642
|
-
|
2643
2702
|
.sd-table__cell--detail-panel .sd-panel__content {
|
2644
2703
|
padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2645
2704
|
}
|
@@ -2715,30 +2774,37 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2715
2774
|
}
|
2716
2775
|
|
2717
2776
|
.sd-row--multiple {
|
2718
|
-
row-gap: var(--
|
2777
|
+
row-gap: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2719
2778
|
margin-left: calc(-1 * var(--sd-base-padding));
|
2720
2779
|
width: calc(100% + var(--sd-base-padding));
|
2721
2780
|
flex-wrap: wrap;
|
2722
2781
|
}
|
2723
2782
|
.sd-row--multiple > div {
|
2724
2783
|
box-sizing: border-box;
|
2784
|
+
padding-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2785
|
+
display: flex;
|
2786
|
+
align-items: stretch;
|
2787
|
+
}
|
2788
|
+
|
2789
|
+
.sd-panel .sd-row--multiple {
|
2790
|
+
row-gap: var(--sd-base-vertical-padding);
|
2791
|
+
}
|
2792
|
+
.sd-panel .sd-row--multiple > div {
|
2725
2793
|
padding-left: var(--sd-base-padding);
|
2726
2794
|
}
|
2727
2795
|
|
2728
|
-
.sd-
|
2729
|
-
padding: var(--sd-base-
|
2730
|
-
margin-left: 0;
|
2731
|
-
width: 100%;
|
2796
|
+
.sd-row--multiple.sd-row--compact > div {
|
2797
|
+
padding-left: var(--sd-base-padding);
|
2732
2798
|
}
|
2733
|
-
|
2734
|
-
|
2735
|
-
|
2736
|
-
|
2799
|
+
|
2800
|
+
.sd-page__row.sd-row--multiple {
|
2801
|
+
margin-left: calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2802
|
+
width: calc(100% + 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2737
2803
|
}
|
2738
2804
|
.sd-page__row.sd-row--multiple.sd-row--compact {
|
2739
2805
|
padding: 0;
|
2740
|
-
width: calc(100% + var(--sd-base-padding));
|
2741
2806
|
margin-left: calc(-1 * var(--sd-base-padding));
|
2807
|
+
width: calc(100% + var(--sd-base-padding));
|
2742
2808
|
}
|
2743
2809
|
|
2744
2810
|
.sd-row__panel {
|
@@ -3372,6 +3438,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3372
3438
|
|
3373
3439
|
.sd-rating__item--selected .sd-rating__item-text.sd-rating__item-text {
|
3374
3440
|
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3441
|
+
font-weight: inherit;
|
3375
3442
|
}
|
3376
3443
|
|
3377
3444
|
.sv-ranking-item--error .sv-ranking-item__index {
|
@@ -3396,6 +3463,34 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3396
3463
|
line-height: calc(1.5 * var(--sjs-font-size, 16px));
|
3397
3464
|
}
|
3398
3465
|
|
3466
|
+
.sv-dragdrop-movedown {
|
3467
|
+
transform: translate(0, 0);
|
3468
|
+
animation: svdragdropmovedown 0.1s;
|
3469
|
+
animation-timing-function: ease-in-out;
|
3470
|
+
}
|
3471
|
+
|
3472
|
+
@keyframes svdragdropmovedown {
|
3473
|
+
0% {
|
3474
|
+
transform: translate(0, -50px);
|
3475
|
+
}
|
3476
|
+
100% {
|
3477
|
+
transform: translate(0, 0);
|
3478
|
+
}
|
3479
|
+
}
|
3480
|
+
.sv-dragdrop-moveup {
|
3481
|
+
transform: translate(0, 0);
|
3482
|
+
animation: svdragdropmoveup 0.1s;
|
3483
|
+
animation-timing-function: ease-in-out;
|
3484
|
+
}
|
3485
|
+
|
3486
|
+
@keyframes svdragdropmoveup {
|
3487
|
+
0% {
|
3488
|
+
transform: translate(0, 50px);
|
3489
|
+
}
|
3490
|
+
100% {
|
3491
|
+
transform: translate(0, 0);
|
3492
|
+
}
|
3493
|
+
}
|
3399
3494
|
.sv-dropdown_select-wrapper {
|
3400
3495
|
position: relative;
|
3401
3496
|
}
|
@@ -3535,6 +3630,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3535
3630
|
white-space: pre;
|
3536
3631
|
}
|
3537
3632
|
|
3633
|
+
.sv-popup.sv-popup--dropdown.sv-popup--dropdown .sd-list__item-body {
|
3634
|
+
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3635
|
+
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
3636
|
+
}
|
3637
|
+
|
3538
3638
|
[dir=rtl] .sd-dropdown,
|
3539
3639
|
[style*="direction:rtl"] .sd-dropdown,
|
3540
3640
|
[style*="direction: rtl"] .sd-dropdown {
|
@@ -3549,8 +3649,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3549
3649
|
}
|
3550
3650
|
|
3551
3651
|
.sd-tagbox_clean-button {
|
3552
|
-
height: calc(
|
3553
|
-
padding: calc(1 * var(--sjs-
|
3652
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3653
|
+
padding: calc(0.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3554
3654
|
margin: auto 0;
|
3555
3655
|
}
|
3556
3656
|
|
@@ -3591,10 +3691,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3591
3691
|
}
|
3592
3692
|
|
3593
3693
|
.sd-tagbox-item_clean-button-svg {
|
3594
|
-
display:
|
3595
|
-
padding: calc(0.
|
3596
|
-
width: calc(
|
3597
|
-
height: calc(
|
3694
|
+
display: block;
|
3695
|
+
padding: calc(0.25 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3696
|
+
width: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3697
|
+
height: calc(1 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3598
3698
|
}
|
3599
3699
|
|
3600
3700
|
.sd-tagbox-item_clean-button-svg:hover {
|
@@ -3714,8 +3814,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3714
3814
|
position: absolute;
|
3715
3815
|
top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3716
3816
|
right: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3717
|
-
width: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3718
|
-
height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3719
3817
|
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3720
3818
|
box-sizing: border-box;
|
3721
3819
|
border-radius: 100%;
|
@@ -3724,8 +3822,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3724
3822
|
}
|
3725
3823
|
|
3726
3824
|
.sd-imagepicker__check-icon {
|
3727
|
-
|
3728
|
-
|
3825
|
+
display: block;
|
3826
|
+
width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3827
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
3729
3828
|
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3730
3829
|
}
|
3731
3830
|
|
@@ -3823,6 +3922,112 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3823
3922
|
white-space: initial;
|
3824
3923
|
}
|
3825
3924
|
|
3925
|
+
.sd-html h1 {
|
3926
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3927
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
|
3928
|
+
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
3929
|
+
font-family: var(--font-family);
|
3930
|
+
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
3931
|
+
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
3932
|
+
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
3933
|
+
letter-spacing: var(--sjs-article-font-xx-large-letterSpacing, 0);
|
3934
|
+
line-height: var(--sjs-article-font-xx-large-lineHeight, 64px);
|
3935
|
+
text-indent: var(--sjs-article-font-xx-large-paragraphIndent, 0px);
|
3936
|
+
text-transform: var(--sjs-article-font-xx-large-textCase, "none");
|
3937
|
+
}
|
3938
|
+
.sd-html h2 {
|
3939
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3940
|
+
font-size: var(--sjs-article-font-x-large-fontSize, 48px);
|
3941
|
+
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
3942
|
+
font-family: var(--font-family);
|
3943
|
+
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
3944
|
+
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
3945
|
+
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
3946
|
+
letter-spacing: var(--sjs-article-font-x-large-letterSpacing, 0);
|
3947
|
+
line-height: var(--sjs-article-font-x-large-lineHeight, 56px);
|
3948
|
+
text-indent: var(--sjs-article-font-x-large-paragraphIndent, 0px);
|
3949
|
+
text-transform: var(--sjs-article-font-x-large-textCase, "none");
|
3950
|
+
}
|
3951
|
+
.sd-html h3 {
|
3952
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3953
|
+
font-size: var(--sjs-article-font-large-fontSize, 32px);
|
3954
|
+
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
3955
|
+
font-family: var(--font-family);
|
3956
|
+
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
3957
|
+
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
3958
|
+
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
3959
|
+
letter-spacing: var(--sjs-article-font-large-letterSpacing, 0);
|
3960
|
+
line-height: var(--sjs-article-font-large-lineHeight, 40px);
|
3961
|
+
text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
|
3962
|
+
text-transform: var(--sjs-article-font-large-textCase, "none");
|
3963
|
+
}
|
3964
|
+
.sd-html h4,
|
3965
|
+
.sd-html h5,
|
3966
|
+
.sd-html h6 {
|
3967
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3968
|
+
font-size: var(--sjs-article-font-medium-fontSize, 24px);
|
3969
|
+
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
3970
|
+
font-family: var(--font-family);
|
3971
|
+
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
3972
|
+
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
3973
|
+
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
3974
|
+
letter-spacing: var(--sjs-article-font-medium-letterSpacing, 0);
|
3975
|
+
line-height: var(--sjs-article-font-medium-lineHeight, 32px);
|
3976
|
+
text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
|
3977
|
+
text-transform: var(--sjs-article-font-medium-textCase, "none");
|
3978
|
+
}
|
3979
|
+
.sd-html td,
|
3980
|
+
.sd-html span,
|
3981
|
+
.sd-html div,
|
3982
|
+
.sd-html p {
|
3983
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3984
|
+
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
3985
|
+
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
3986
|
+
font-family: var(--font-family);
|
3987
|
+
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
3988
|
+
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
3989
|
+
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
3990
|
+
letter-spacing: var(--sjs-article-font-default-letterSpacing, 0);
|
3991
|
+
line-height: var(--sjs-article-font-default-lineHeight, 28px);
|
3992
|
+
text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
|
3993
|
+
text-transform: var(--sjs-article-font-default-textCase, "none");
|
3994
|
+
}
|
3995
|
+
.sd-html a {
|
3996
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3997
|
+
}
|
3998
|
+
.sd-html button {
|
3999
|
+
display: flex;
|
4000
|
+
align-items: center;
|
4001
|
+
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4002
|
+
vertical-align: baseline;
|
4003
|
+
text-align: center;
|
4004
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
4005
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
4006
|
+
border: none;
|
4007
|
+
border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4008
|
+
cursor: pointer;
|
4009
|
+
user-select: none;
|
4010
|
+
outline: solid calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) transparent;
|
4011
|
+
}
|
4012
|
+
.sd-html button:hover {
|
4013
|
+
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
4014
|
+
}
|
4015
|
+
.sd-html button:focus {
|
4016
|
+
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4017
|
+
}
|
4018
|
+
.sd-html button span {
|
4019
|
+
display: flex;
|
4020
|
+
align-items: center;
|
4021
|
+
flex-grow: 1;
|
4022
|
+
justify-content: center;
|
4023
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4024
|
+
font-weight: 600;
|
4025
|
+
font-style: normal;
|
4026
|
+
font-family: var(--font-family, var(--font-family));
|
4027
|
+
font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
4028
|
+
line-height: calc(1.5 * var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4029
|
+
}
|
4030
|
+
|
3826
4031
|
.sd-expression {
|
3827
4032
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3828
4033
|
font-size: calc(1 * var(--sjs-font-size, 16px));
|
@@ -3861,6 +4066,17 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3861
4066
|
}
|
3862
4067
|
}
|
3863
4068
|
|
4069
|
+
.sd-body__progress--top {
|
4070
|
+
margin-bottom: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4071
|
+
position: sticky;
|
4072
|
+
top: 0;
|
4073
|
+
z-index: 50;
|
4074
|
+
}
|
4075
|
+
|
4076
|
+
.sd-body__progress--bottom .sd-progress__text {
|
4077
|
+
margin-top: calc(-3.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4078
|
+
}
|
4079
|
+
|
3864
4080
|
.sd-boolean {
|
3865
4081
|
display: flex;
|
3866
4082
|
width: max-content;
|
@@ -3971,7 +4187,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3971
4187
|
}
|
3972
4188
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
3973
4189
|
padding-bottom: 0;
|
3974
|
-
padding-top:
|
4190
|
+
padding-top: var(--sd-base-vertical-padding);
|
3975
4191
|
}
|
3976
4192
|
.sd-paneldynamic .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header:after {
|
3977
4193
|
display: none;
|
@@ -3980,10 +4196,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3980
4196
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3981
4197
|
}
|
3982
4198
|
|
3983
|
-
.sd-question__content:first-child > .sd-paneldynamic > .sd-paneldynamic__panel-wrapper > .sd-panel > .sd-panel__header {
|
3984
|
-
padding-top: var(--sd-base-vertical-padding);
|
3985
|
-
}
|
3986
|
-
|
3987
4199
|
.sd-paneldynamic__separator {
|
3988
4200
|
display: block;
|
3989
4201
|
position: absolute;
|
@@ -4135,7 +4347,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4135
4347
|
font-family: var(--font-family, var(--font-family));
|
4136
4348
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
4137
4349
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4138
|
-
color: var(--sjs-
|
4350
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
4139
4351
|
overflow-x: hidden;
|
4140
4352
|
white-space: nowrap;
|
4141
4353
|
}
|
@@ -4144,7 +4356,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4144
4356
|
}
|
4145
4357
|
|
4146
4358
|
.sd-tab-item.sd-tab-item--pressed {
|
4147
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4359
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4148
4360
|
box-shadow: inset 0px -2px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4149
4361
|
}
|
4150
4362
|
|
@@ -4255,7 +4467,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4255
4467
|
text-align: center;
|
4256
4468
|
word-break: break-word;
|
4257
4469
|
white-space: normal;
|
4258
|
-
color: var(--sjs-
|
4470
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
4259
4471
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
4260
4472
|
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4261
4473
|
}
|
@@ -4268,6 +4480,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4268
4480
|
cursor: pointer;
|
4269
4481
|
}
|
4270
4482
|
|
4483
|
+
.sd-file__wrapper {
|
4484
|
+
width: max-content;
|
4485
|
+
}
|
4486
|
+
|
4271
4487
|
.sd-question--answered .sd-file__drag-area-placeholder {
|
4272
4488
|
display: none;
|
4273
4489
|
}
|
@@ -4291,14 +4507,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4291
4507
|
|
4292
4508
|
.sd-file__clean-btn {
|
4293
4509
|
z-index: 2;
|
4294
|
-
|
4510
|
+
inset-inline-end: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4295
4511
|
}
|
4296
4512
|
.sd-file__clean-btn span:first-child {
|
4297
4513
|
display: none;
|
4298
4514
|
}
|
4299
4515
|
|
4300
4516
|
.sd-file__choose-btn--icon {
|
4301
|
-
|
4517
|
+
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))));
|
4302
4518
|
}
|
4303
4519
|
|
4304
4520
|
.sd-file__list {
|
@@ -4519,7 +4735,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4519
4735
|
width: 100%;
|
4520
4736
|
}
|
4521
4737
|
.sd-body .sd-body__page {
|
4522
|
-
min-width:
|
4738
|
+
min-width: 300px;
|
4523
4739
|
}
|
4524
4740
|
.sd-body .sd-body__timer {
|
4525
4741
|
padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|
@@ -4590,16 +4806,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4590
4806
|
gap: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4591
4807
|
}
|
4592
4808
|
|
4593
|
-
.sd-body__progress {
|
4594
|
-
margin-bottom: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4595
|
-
}
|
4596
|
-
|
4597
|
-
.sd-body__progress--top {
|
4598
|
-
position: sticky;
|
4599
|
-
top: 0;
|
4600
|
-
z-index: 50;
|
4601
|
-
}
|
4602
|
-
|
4603
4809
|
.sd-body--empty {
|
4604
4810
|
min-height: 400px;
|
4605
4811
|
text-align: center;
|
@@ -4607,6 +4813,127 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4607
4813
|
box-sizing: border-box;
|
4608
4814
|
}
|
4609
4815
|
|
4816
|
+
.sd-body--empty h1,
|
4817
|
+
.sd-body--loading h1 {
|
4818
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4819
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
|
4820
|
+
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
4821
|
+
font-family: var(--font-family);
|
4822
|
+
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
4823
|
+
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
4824
|
+
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
4825
|
+
letter-spacing: var(--sjs-article-font-xx-large-letterSpacing, 0);
|
4826
|
+
line-height: var(--sjs-article-font-xx-large-lineHeight, 64px);
|
4827
|
+
text-indent: var(--sjs-article-font-xx-large-paragraphIndent, 0px);
|
4828
|
+
text-transform: var(--sjs-article-font-xx-large-textCase, "none");
|
4829
|
+
}
|
4830
|
+
.sd-body--empty h2,
|
4831
|
+
.sd-body--loading h2 {
|
4832
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4833
|
+
font-size: var(--sjs-article-font-x-large-fontSize, 48px);
|
4834
|
+
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
4835
|
+
font-family: var(--font-family);
|
4836
|
+
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
4837
|
+
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
4838
|
+
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
4839
|
+
letter-spacing: var(--sjs-article-font-x-large-letterSpacing, 0);
|
4840
|
+
line-height: var(--sjs-article-font-x-large-lineHeight, 56px);
|
4841
|
+
text-indent: var(--sjs-article-font-x-large-paragraphIndent, 0px);
|
4842
|
+
text-transform: var(--sjs-article-font-x-large-textCase, "none");
|
4843
|
+
}
|
4844
|
+
.sd-body--empty h3,
|
4845
|
+
.sd-body--loading h3 {
|
4846
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4847
|
+
font-size: var(--sjs-article-font-large-fontSize, 32px);
|
4848
|
+
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
4849
|
+
font-family: var(--font-family);
|
4850
|
+
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
4851
|
+
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
4852
|
+
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
4853
|
+
letter-spacing: var(--sjs-article-font-large-letterSpacing, 0);
|
4854
|
+
line-height: var(--sjs-article-font-large-lineHeight, 40px);
|
4855
|
+
text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
|
4856
|
+
text-transform: var(--sjs-article-font-large-textCase, "none");
|
4857
|
+
}
|
4858
|
+
.sd-body--empty h4,
|
4859
|
+
.sd-body--empty h5,
|
4860
|
+
.sd-body--empty h6,
|
4861
|
+
.sd-body--loading h4,
|
4862
|
+
.sd-body--loading h5,
|
4863
|
+
.sd-body--loading h6 {
|
4864
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4865
|
+
font-size: var(--sjs-article-font-medium-fontSize, 24px);
|
4866
|
+
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
4867
|
+
font-family: var(--font-family);
|
4868
|
+
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
4869
|
+
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
4870
|
+
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
4871
|
+
letter-spacing: var(--sjs-article-font-medium-letterSpacing, 0);
|
4872
|
+
line-height: var(--sjs-article-font-medium-lineHeight, 32px);
|
4873
|
+
text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
|
4874
|
+
text-transform: var(--sjs-article-font-medium-textCase, "none");
|
4875
|
+
}
|
4876
|
+
.sd-body--empty td,
|
4877
|
+
.sd-body--empty span,
|
4878
|
+
.sd-body--empty div,
|
4879
|
+
.sd-body--empty p,
|
4880
|
+
.sd-body--loading td,
|
4881
|
+
.sd-body--loading span,
|
4882
|
+
.sd-body--loading div,
|
4883
|
+
.sd-body--loading p {
|
4884
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4885
|
+
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
4886
|
+
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
4887
|
+
font-family: var(--font-family);
|
4888
|
+
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
4889
|
+
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
4890
|
+
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
4891
|
+
letter-spacing: var(--sjs-article-font-default-letterSpacing, 0);
|
4892
|
+
line-height: var(--sjs-article-font-default-lineHeight, 28px);
|
4893
|
+
text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
|
4894
|
+
text-transform: var(--sjs-article-font-default-textCase, "none");
|
4895
|
+
}
|
4896
|
+
.sd-body--empty a,
|
4897
|
+
.sd-body--loading a {
|
4898
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4899
|
+
}
|
4900
|
+
.sd-body--empty button,
|
4901
|
+
.sd-body--loading button {
|
4902
|
+
display: flex;
|
4903
|
+
align-items: center;
|
4904
|
+
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4905
|
+
vertical-align: baseline;
|
4906
|
+
text-align: center;
|
4907
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
4908
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
4909
|
+
border: none;
|
4910
|
+
border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4911
|
+
cursor: pointer;
|
4912
|
+
user-select: none;
|
4913
|
+
outline: solid calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) transparent;
|
4914
|
+
}
|
4915
|
+
.sd-body--empty button:hover,
|
4916
|
+
.sd-body--loading button:hover {
|
4917
|
+
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
4918
|
+
}
|
4919
|
+
.sd-body--empty button:focus,
|
4920
|
+
.sd-body--loading button:focus {
|
4921
|
+
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4922
|
+
}
|
4923
|
+
.sd-body--empty button span,
|
4924
|
+
.sd-body--loading button span {
|
4925
|
+
display: flex;
|
4926
|
+
align-items: center;
|
4927
|
+
flex-grow: 1;
|
4928
|
+
justify-content: center;
|
4929
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4930
|
+
font-weight: 600;
|
4931
|
+
font-style: normal;
|
4932
|
+
font-family: var(--font-family, var(--font-family));
|
4933
|
+
font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
4934
|
+
line-height: calc(1.5 * var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4935
|
+
}
|
4936
|
+
|
4610
4937
|
.sd-root_background-image {
|
4611
4938
|
background-position-x: center;
|
4612
4939
|
position: absolute;
|
@@ -4627,8 +4954,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4627
4954
|
height: 100%;
|
4628
4955
|
}
|
4629
4956
|
|
4630
|
-
.sd-multipletext__cell:not(:
|
4631
|
-
padding-
|
4957
|
+
.sd-multipletext__cell:not(:first-of-type) {
|
4958
|
+
padding-left: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4632
4959
|
}
|
4633
4960
|
|
4634
4961
|
.sd-multipletext__item-container.sd-input:focus-within {
|
@@ -4656,6 +4983,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4656
4983
|
margin-bottom: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4657
4984
|
}
|
4658
4985
|
|
4986
|
+
.sd-multipletext__item-title {
|
4987
|
+
font-size: 0;
|
4988
|
+
line-height: 0;
|
4989
|
+
}
|
4990
|
+
.sd-multipletext__item-title span {
|
4991
|
+
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
4992
|
+
line-height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4993
|
+
}
|
4994
|
+
|
4659
4995
|
.sd-multipletext__item-title {
|
4660
4996
|
height: calc(100% - var(--sjs-base-unit, var(--base-unit, 8px)) * 3);
|
4661
4997
|
max-width: 30%;
|
@@ -4685,8 +5021,25 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4685
5021
|
display: inline-block;
|
4686
5022
|
}
|
4687
5023
|
|
4688
|
-
.sd-
|
4689
|
-
padding-
|
5024
|
+
.sd-multipletext__cell {
|
5025
|
+
padding-left: 0;
|
5026
|
+
padding-right: 0;
|
5027
|
+
padding-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5028
|
+
padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5029
|
+
}
|
5030
|
+
|
5031
|
+
.sd-multipletext__cell--error-bottom,
|
5032
|
+
.sd-multipletext__row:first-of-type .sd-multipletext__cell {
|
5033
|
+
padding-top: 0;
|
5034
|
+
}
|
5035
|
+
|
5036
|
+
.sd-multipletext__cell--error-top,
|
5037
|
+
.sd-multipletext__row:last-of-type .sd-multipletext__cell {
|
5038
|
+
padding-bottom: 0;
|
5039
|
+
}
|
5040
|
+
|
5041
|
+
.sd-multipletext__cell--error .sd-question__erbox--outside-question {
|
5042
|
+
margin: 0;
|
4690
5043
|
}
|
4691
5044
|
|
4692
5045
|
.sd-multipletext .sd-input .sd-input {
|
@@ -4785,8 +5138,8 @@ svg.sd-action--icon {
|
|
4785
5138
|
}
|
4786
5139
|
.sd-context-btn svg {
|
4787
5140
|
display: block;
|
4788
|
-
width: calc(
|
4789
|
-
height: calc(
|
5141
|
+
width: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
5142
|
+
height: calc(1.5 * var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4790
5143
|
}
|
4791
5144
|
.sd-context-btn use {
|
4792
5145
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
@@ -4812,8 +5165,126 @@ svg.sd-action--icon {
|
|
4812
5165
|
text-align: center;
|
4813
5166
|
height: auto;
|
4814
5167
|
}
|
4815
|
-
|
4816
|
-
|
5168
|
+
|
5169
|
+
.sd-completedpage h1,
|
5170
|
+
.sd-completed-before-page h1 {
|
5171
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5172
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, 64px);
|
5173
|
+
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
5174
|
+
font-family: var(--font-family);
|
5175
|
+
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
5176
|
+
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
5177
|
+
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
5178
|
+
letter-spacing: var(--sjs-article-font-xx-large-letterSpacing, 0);
|
5179
|
+
line-height: var(--sjs-article-font-xx-large-lineHeight, 64px);
|
5180
|
+
text-indent: var(--sjs-article-font-xx-large-paragraphIndent, 0px);
|
5181
|
+
text-transform: var(--sjs-article-font-xx-large-textCase, "none");
|
5182
|
+
}
|
5183
|
+
.sd-completedpage h2,
|
5184
|
+
.sd-completed-before-page h2 {
|
5185
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5186
|
+
font-size: var(--sjs-article-font-x-large-fontSize, 48px);
|
5187
|
+
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
5188
|
+
font-family: var(--font-family);
|
5189
|
+
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
5190
|
+
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
5191
|
+
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
5192
|
+
letter-spacing: var(--sjs-article-font-x-large-letterSpacing, 0);
|
5193
|
+
line-height: var(--sjs-article-font-x-large-lineHeight, 56px);
|
5194
|
+
text-indent: var(--sjs-article-font-x-large-paragraphIndent, 0px);
|
5195
|
+
text-transform: var(--sjs-article-font-x-large-textCase, "none");
|
5196
|
+
}
|
5197
|
+
.sd-completedpage h3,
|
5198
|
+
.sd-completed-before-page h3 {
|
5199
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5200
|
+
font-size: var(--sjs-article-font-large-fontSize, 32px);
|
5201
|
+
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
5202
|
+
font-family: var(--font-family);
|
5203
|
+
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
5204
|
+
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
5205
|
+
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
5206
|
+
letter-spacing: var(--sjs-article-font-large-letterSpacing, 0);
|
5207
|
+
line-height: var(--sjs-article-font-large-lineHeight, 40px);
|
5208
|
+
text-indent: var(--sjs-article-font-large-paragraphIndent, 0px);
|
5209
|
+
text-transform: var(--sjs-article-font-large-textCase, "none");
|
5210
|
+
}
|
5211
|
+
.sd-completedpage h4,
|
5212
|
+
.sd-completedpage h5,
|
5213
|
+
.sd-completedpage h6,
|
5214
|
+
.sd-completed-before-page h4,
|
5215
|
+
.sd-completed-before-page h5,
|
5216
|
+
.sd-completed-before-page h6 {
|
5217
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5218
|
+
font-size: var(--sjs-article-font-medium-fontSize, 24px);
|
5219
|
+
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
5220
|
+
font-family: var(--font-family);
|
5221
|
+
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
5222
|
+
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
5223
|
+
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
5224
|
+
letter-spacing: var(--sjs-article-font-medium-letterSpacing, 0);
|
5225
|
+
line-height: var(--sjs-article-font-medium-lineHeight, 32px);
|
5226
|
+
text-indent: var(--sjs-article-font-medium-paragraphIndent, 0px);
|
5227
|
+
text-transform: var(--sjs-article-font-medium-textCase, "none");
|
5228
|
+
}
|
5229
|
+
.sd-completedpage td,
|
5230
|
+
.sd-completedpage span,
|
5231
|
+
.sd-completedpage div,
|
5232
|
+
.sd-completedpage p,
|
5233
|
+
.sd-completed-before-page td,
|
5234
|
+
.sd-completed-before-page span,
|
5235
|
+
.sd-completed-before-page div,
|
5236
|
+
.sd-completed-before-page p {
|
5237
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5238
|
+
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
5239
|
+
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
5240
|
+
font-family: var(--font-family);
|
5241
|
+
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
5242
|
+
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
5243
|
+
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
5244
|
+
letter-spacing: var(--sjs-article-font-default-letterSpacing, 0);
|
5245
|
+
line-height: var(--sjs-article-font-default-lineHeight, 28px);
|
5246
|
+
text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
|
5247
|
+
text-transform: var(--sjs-article-font-default-textCase, "none");
|
5248
|
+
}
|
5249
|
+
.sd-completedpage a,
|
5250
|
+
.sd-completed-before-page a {
|
5251
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5252
|
+
}
|
5253
|
+
.sd-completedpage button,
|
5254
|
+
.sd-completed-before-page button {
|
5255
|
+
display: flex;
|
5256
|
+
align-items: center;
|
5257
|
+
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5258
|
+
vertical-align: baseline;
|
5259
|
+
text-align: center;
|
5260
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
5261
|
+
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
5262
|
+
border: none;
|
5263
|
+
border-radius: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5264
|
+
cursor: pointer;
|
5265
|
+
user-select: none;
|
5266
|
+
outline: solid calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) transparent;
|
5267
|
+
}
|
5268
|
+
.sd-completedpage button:hover,
|
5269
|
+
.sd-completed-before-page button:hover {
|
5270
|
+
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
5271
|
+
}
|
5272
|
+
.sd-completedpage button:focus,
|
5273
|
+
.sd-completed-before-page button:focus {
|
5274
|
+
box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5275
|
+
}
|
5276
|
+
.sd-completedpage button span,
|
5277
|
+
.sd-completed-before-page button span {
|
5278
|
+
display: flex;
|
5279
|
+
align-items: center;
|
5280
|
+
flex-grow: 1;
|
5281
|
+
justify-content: center;
|
5282
|
+
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5283
|
+
font-weight: 600;
|
5284
|
+
font-style: normal;
|
5285
|
+
font-family: var(--font-family, var(--font-family));
|
5286
|
+
font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px))));
|
5287
|
+
line-height: calc(1.5 * var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, 16px)))));
|
4817
5288
|
}
|
4818
5289
|
|
4819
5290
|
.sd-completedpage:before,
|
@@ -5080,13 +5551,21 @@ sv-components-container,
|
|
5080
5551
|
align-items: center;
|
5081
5552
|
justify-content: center;
|
5082
5553
|
position: absolute;
|
5083
|
-
z-index:
|
5554
|
+
z-index: 1;
|
5084
5555
|
user-select: none;
|
5085
5556
|
pointer-events: none;
|
5086
5557
|
width: 100%;
|
5087
5558
|
height: 100%;
|
5088
5559
|
}
|
5089
5560
|
|
5561
|
+
.sjs_sp_canvas,
|
5562
|
+
.sjs_sp__background-image {
|
5563
|
+
position: absolute;
|
5564
|
+
top: 0;
|
5565
|
+
left: 0;
|
5566
|
+
object-fit: cover;
|
5567
|
+
}
|
5568
|
+
|
5090
5569
|
.sd-root-modern {
|
5091
5570
|
--sd-base-padding: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5092
5571
|
--sd-base-vertical-padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -5122,16 +5601,17 @@ sv-components-container,
|
|
5122
5601
|
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell {
|
5123
5602
|
display: block;
|
5124
5603
|
}
|
5125
|
-
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell:not(:
|
5126
|
-
padding-
|
5127
|
-
padding-
|
5604
|
+
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell:not(:first-of-type) {
|
5605
|
+
padding-left: 0;
|
5606
|
+
padding-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5607
|
+
}
|
5608
|
+
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__cell :not(:last-of-type) {
|
5609
|
+
padding-bottom: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5128
5610
|
}
|
5129
5611
|
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-container {
|
5130
5612
|
flex-direction: column;
|
5131
5613
|
}
|
5132
5614
|
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-title {
|
5133
|
-
font-size: calc(0.75 * var(--sjs-font-size, 16px));
|
5134
|
-
line-height: calc(1 * var(--sjs-font-size, 16px));
|
5135
5615
|
height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5136
5616
|
padding-right: 0;
|
5137
5617
|
border-right: none;
|
@@ -5140,6 +5620,10 @@ sv-components-container,
|
|
5140
5620
|
width: 100%;
|
5141
5621
|
max-width: none;
|
5142
5622
|
}
|
5623
|
+
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-title span {
|
5624
|
+
font-size: calc(0.75 * var(--sjs-font-size, 16px));
|
5625
|
+
line-height: calc(1 * var(--sjs-font-size, 16px));
|
5626
|
+
}
|
5143
5627
|
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item {
|
5144
5628
|
width: 100%;
|
5145
5629
|
}
|
@@ -5321,6 +5805,35 @@ body {
|
|
5321
5805
|
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
5322
5806
|
}
|
5323
5807
|
|
5808
|
+
.sd-root-modern.sd-root-modern--full-container {
|
5809
|
+
width: 100%;
|
5810
|
+
height: 100%;
|
5811
|
+
overflow: auto;
|
5812
|
+
position: static;
|
5813
|
+
}
|
5814
|
+
.sd-root-modern.sd-root-modern--full-container * {
|
5815
|
+
scrollbar-width: thin;
|
5816
|
+
scrollbar-color: var(--sjs-border-default, var(--border, #d6d6d6)) transparent;
|
5817
|
+
}
|
5818
|
+
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar {
|
5819
|
+
width: 12px;
|
5820
|
+
height: 12px;
|
5821
|
+
background-color: transparent;
|
5822
|
+
}
|
5823
|
+
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-thumb {
|
5824
|
+
border: 4px solid rgba(0, 0, 0, 0);
|
5825
|
+
background-clip: padding-box;
|
5826
|
+
border-radius: 32px;
|
5827
|
+
background-color: var(--sjs-border-default, var(--border, #d6d6d6));
|
5828
|
+
}
|
5829
|
+
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-track {
|
5830
|
+
background: transparent;
|
5831
|
+
}
|
5832
|
+
.sd-root-modern.sd-root-modern--full-container::-webkit-scrollbar-thumb:hover {
|
5833
|
+
border: 2px solid rgba(0, 0, 0, 0);
|
5834
|
+
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
5835
|
+
}
|
5836
|
+
|
5324
5837
|
.sd-root-modern--mobile {
|
5325
5838
|
--sd-timer-size: calc(9 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
5326
5839
|
}
|