survey-react 1.9.92 → 1.9.94
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 +185 -148
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +89 -34
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +6 -7
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +763 -399
- package/survey.react.js +2187 -1417
- package/survey.react.js.map +1 -1
- package/survey.react.min.js +5 -18
package/defaultV2.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* surveyjs - Survey JavaScript library v1.9.
|
2
|
+
* surveyjs - Survey JavaScript library v1.9.94
|
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
|
*/
|
@@ -274,14 +274,14 @@ button.sv-action-bar-item {
|
|
274
274
|
.sv-action-bar--default-size-mode .sv-action-bar-item {
|
275
275
|
height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
276
276
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
277
|
-
line-height: calc(
|
277
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
278
278
|
margin: 0 calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
279
279
|
}
|
280
280
|
|
281
281
|
.sv-action-bar--small-size-mode .sv-action-bar-item {
|
282
282
|
height: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
283
283
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
284
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
284
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
285
285
|
margin: 0 calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
286
286
|
}
|
287
287
|
|
@@ -353,7 +353,7 @@ button.sv-action-bar-item {
|
|
353
353
|
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
354
354
|
background-color: transparent;
|
355
355
|
cursor: pointer;
|
356
|
-
line-height: calc(
|
356
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
357
357
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
358
358
|
font-family: var(--font-family, var(--font-family));
|
359
359
|
}
|
@@ -422,7 +422,7 @@ button.sv-action-bar-item {
|
|
422
422
|
font-family: var(--font-family, var(--font-family));
|
423
423
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
424
424
|
padding-left: calc(2.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
425
|
-
line-height: calc(
|
425
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
426
426
|
}
|
427
427
|
|
428
428
|
.sv-matrixdynamic__drag-icon {
|
@@ -452,7 +452,6 @@ button.sv-action-bar-item {
|
|
452
452
|
sv-popup {
|
453
453
|
display: block;
|
454
454
|
position: absolute;
|
455
|
-
z-index: -1;
|
456
455
|
}
|
457
456
|
|
458
457
|
.sv-popup {
|
@@ -501,14 +500,15 @@ sv-popup {
|
|
501
500
|
padding: calc(11 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(15 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
502
501
|
box-sizing: border-box;
|
503
502
|
}
|
504
|
-
.sv-popup.sv-popup--modal .sv-popup__container {
|
505
|
-
position: static;
|
506
|
-
}
|
507
503
|
.sv-popup.sv-popup--modal .sv-popup__body-content {
|
508
504
|
padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
509
505
|
height: auto;
|
510
506
|
}
|
511
507
|
|
508
|
+
.sv-popup.sv-popup--modal > .sv-popup__container {
|
509
|
+
position: static;
|
510
|
+
}
|
511
|
+
|
512
512
|
.sv-popup--overlay.sv-popup--overlay {
|
513
513
|
width: 100%;
|
514
514
|
height: var(--sv-popup-overlay-height, 100vh);
|
@@ -540,9 +540,6 @@ sv-popup {
|
|
540
540
|
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-footer .sv-action-bar {
|
541
541
|
width: 100%;
|
542
542
|
}
|
543
|
-
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-footer .sv-action {
|
544
|
-
width: 100%;
|
545
|
-
}
|
546
543
|
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-footer-item {
|
547
544
|
width: 100%;
|
548
545
|
}
|
@@ -552,6 +549,10 @@ sv-popup {
|
|
552
549
|
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
553
550
|
}
|
554
551
|
|
552
|
+
.sv-popup--overlay.sv-popup--overlay:not(.sv-dropdown-popup) .sv-popup__body-footer .sv-action {
|
553
|
+
flex: 1 0 0;
|
554
|
+
}
|
555
|
+
|
555
556
|
.sv-popup--modal .sv-popup__scrolling-content {
|
556
557
|
padding: 2px;
|
557
558
|
margin: -2px;
|
@@ -622,7 +623,7 @@ sv-popup {
|
|
622
623
|
.sv-popup__body-header {
|
623
624
|
font-family: Open Sans;
|
624
625
|
font-size: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
625
|
-
line-height: calc(
|
626
|
+
line-height: calc(2 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
626
627
|
font-style: normal;
|
627
628
|
font-weight: 700;
|
628
629
|
margin-bottom: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -742,7 +743,7 @@ sv-popup {
|
|
742
743
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__input {
|
743
744
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
744
745
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
745
|
-
line-height: calc(
|
746
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
746
747
|
font-family: var(--font-family);
|
747
748
|
padding: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0 calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
748
749
|
}
|
@@ -811,7 +812,7 @@ sv-popup {
|
|
811
812
|
appearance: none;
|
812
813
|
width: 100%;
|
813
814
|
padding: 11px calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
814
|
-
line-height: calc(
|
815
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
815
816
|
outline: none;
|
816
817
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
817
818
|
font-weight: 400;
|
@@ -998,7 +999,7 @@ sv-popup {
|
|
998
999
|
.sv-brand-info__text {
|
999
1000
|
font-weight: 600;
|
1000
1001
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1001
|
-
line-height: calc(
|
1002
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1002
1003
|
color: #161616;
|
1003
1004
|
}
|
1004
1005
|
|
@@ -1012,7 +1013,7 @@ sv-popup {
|
|
1012
1013
|
.sv-brand-info__terms {
|
1013
1014
|
font-weight: 400;
|
1014
1015
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1015
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1016
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1016
1017
|
}
|
1017
1018
|
.sv-brand-info__terms a {
|
1018
1019
|
color: #909090;
|
@@ -1095,12 +1096,12 @@ sv-popup {
|
|
1095
1096
|
border: calc(0.25 * var(--sjs-base-unit, var(--base-unit, 8px))) solid transparent;
|
1096
1097
|
width: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1097
1098
|
height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1098
|
-
line-height: calc(
|
1099
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1099
1100
|
box-sizing: border-box;
|
1100
1101
|
font-weight: 600;
|
1101
1102
|
margin-left: calc(0 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1102
1103
|
}
|
1103
|
-
.sv-ranking-item__index.sv-ranking-item__index
|
1104
|
+
.sv-ranking-item__index.sv-ranking-item__index:empty {
|
1104
1105
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAArSURBVHgB7cuhEQAwDMNAtUN4//m8RMtygcE5PxMQxAKnh6Q3mWzXd4mAD4cJBAQCqfbUAAAAAElFTkSuQmCC");
|
1105
1106
|
background-position: center;
|
1106
1107
|
background-repeat: no-repeat;
|
@@ -1113,7 +1114,7 @@ sv-popup {
|
|
1113
1114
|
white-space: nowrap;
|
1114
1115
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1115
1116
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1116
|
-
line-height: calc(
|
1117
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1117
1118
|
margin: 0 calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1118
1119
|
}
|
1119
1120
|
|
@@ -1214,6 +1215,54 @@ sv-popup {
|
|
1214
1215
|
margin-left: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1215
1216
|
}
|
1216
1217
|
|
1218
|
+
.sv-ranking--select-to-rank {
|
1219
|
+
display: flex;
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
.sv-ranking--select-to-rank-vertical {
|
1223
|
+
flex-direction: column;
|
1224
|
+
}
|
1225
|
+
.sv-ranking--select-to-rank-vertical .sv-ranking__containers-divider {
|
1226
|
+
margin: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|
1227
|
+
height: 1px;
|
1228
|
+
}
|
1229
|
+
|
1230
|
+
.sv-ranking--select-to-rank-horizontal .sv-ranking__containers-divider {
|
1231
|
+
width: 1px;
|
1232
|
+
}
|
1233
|
+
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--to .sv-ranking-item {
|
1234
|
+
left: initial;
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.sv-ranking__container-placeholder {
|
1238
|
+
color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
1239
|
+
font-family: var(--font-family, var(--font-family));
|
1240
|
+
font-style: normal;
|
1241
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1242
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1243
|
+
white-space: break-spaces;
|
1244
|
+
display: flex;
|
1245
|
+
justify-content: center;
|
1246
|
+
align-items: center;
|
1247
|
+
width: 100%;
|
1248
|
+
height: 100%;
|
1249
|
+
}
|
1250
|
+
|
1251
|
+
.sv-ranking__container {
|
1252
|
+
flex: 1;
|
1253
|
+
max-width: 100%;
|
1254
|
+
}
|
1255
|
+
|
1256
|
+
.sv-ranking__container--empty {
|
1257
|
+
padding: calc(8 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1258
|
+
box-sizing: border-box;
|
1259
|
+
text-align: center;
|
1260
|
+
}
|
1261
|
+
|
1262
|
+
.sv-ranking__containers-divider {
|
1263
|
+
background: var(--sjs-border-inside, var(--border-inside, rgba(0, 0, 0, 0.16)));
|
1264
|
+
}
|
1265
|
+
|
1217
1266
|
.sv-list {
|
1218
1267
|
padding: 0;
|
1219
1268
|
margin: 0;
|
@@ -1234,7 +1283,7 @@ sv-popup {
|
|
1234
1283
|
}
|
1235
1284
|
|
1236
1285
|
.sv-list__empty-text {
|
1237
|
-
line-height: calc(
|
1286
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1238
1287
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1239
1288
|
font-weight: 400;
|
1240
1289
|
text-align: center;
|
@@ -1260,8 +1309,9 @@ sv-popup {
|
|
1260
1309
|
padding-inline-end: calc(8 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1261
1310
|
padding-inline-start: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1262
1311
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1312
|
+
font-weight: normal;
|
1263
1313
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1264
|
-
line-height: calc(
|
1314
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1265
1315
|
cursor: pointer;
|
1266
1316
|
overflow: hidden;
|
1267
1317
|
text-overflow: ellipsis;
|
@@ -1325,6 +1375,10 @@ sv-popup {
|
|
1325
1375
|
background-color: var(--sjs-border-default, var(--border, #d6d6d6));
|
1326
1376
|
}
|
1327
1377
|
|
1378
|
+
.sv-list--filtering .sv-list__item-separator {
|
1379
|
+
display: none;
|
1380
|
+
}
|
1381
|
+
|
1328
1382
|
.sv-list__item.sv-list__item--selected .sv-list__item-body,
|
1329
1383
|
.sv-list__item.sv-list__item--selected:hover .sv-list__item-body,
|
1330
1384
|
.sv-list__item.sv-list__item--selected.sv-list__item--focused .sv-list__item-body,
|
@@ -1400,7 +1454,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1400
1454
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1401
1455
|
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1402
1456
|
padding-inline-start: calc(7 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1403
|
-
line-height: calc(
|
1457
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1404
1458
|
border: none;
|
1405
1459
|
}
|
1406
1460
|
|
@@ -1436,7 +1490,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1436
1490
|
z-index: 1600;
|
1437
1491
|
font-family: var(--font-family, var(--font-family));
|
1438
1492
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1439
|
-
line-height: calc(
|
1493
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1440
1494
|
display: flex;
|
1441
1495
|
flex-direction: row;
|
1442
1496
|
justify-content: center;
|
@@ -1482,7 +1536,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1482
1536
|
.sv-save-data_root.sv-save-data_error .sv-save-data_button {
|
1483
1537
|
font-weight: 600;
|
1484
1538
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1485
|
-
line-height: calc(
|
1539
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1486
1540
|
height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1487
1541
|
color: #ffffff;
|
1488
1542
|
background-color: var(--sjs-special-red, var(--red, #e60a3e));
|
@@ -1537,21 +1591,17 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1537
1591
|
}
|
1538
1592
|
.sd-element__title .sd-element__num {
|
1539
1593
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1540
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1594
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1541
1595
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1542
1596
|
}
|
1543
1597
|
.sd-element__title span {
|
1544
1598
|
font-size: var(--sjs-font-questiontitle-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
1545
|
-
line-height: calc(
|
1599
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1546
1600
|
}
|
1547
1601
|
.sd-element__title .sv-title-actions__title {
|
1548
1602
|
font-size: 0;
|
1549
1603
|
line-height: 0;
|
1550
1604
|
}
|
1551
|
-
.sd-element__title .svc-string-editor {
|
1552
|
-
display: inline-block;
|
1553
|
-
max-width: 100%;
|
1554
|
-
}
|
1555
1605
|
.sd-element__title .sv-string-editor {
|
1556
1606
|
max-width: 100%;
|
1557
1607
|
white-space: normal;
|
@@ -1571,7 +1621,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1571
1621
|
padding-inline-end: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1572
1622
|
width: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1573
1623
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1574
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1624
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1575
1625
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1576
1626
|
margin-inline-start: calc(-5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1577
1627
|
text-align: end;
|
@@ -1624,7 +1674,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1624
1674
|
transform: rotate(90deg);
|
1625
1675
|
}
|
1626
1676
|
|
1627
|
-
.svc-logic-question-value,
|
1628
1677
|
.sd-element--with-frame {
|
1629
1678
|
border-radius: var(--sjs-questionpanel-cornerRadius, var(--sjs-corner-radius, 4px));
|
1630
1679
|
box-sizing: border-box;
|
@@ -1635,11 +1684,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1635
1684
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
1636
1685
|
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
1637
1686
|
}
|
1638
|
-
.svc-logic-question-value.sd-question--paneldynamic,
|
1639
1687
|
.sd-element--with-frame.sd-question--paneldynamic {
|
1640
1688
|
padding-bottom: 0;
|
1641
1689
|
}
|
1642
|
-
.svc-logic-question-value.sd-question--paneldynamic > .sd-question__erbox--below-question,
|
1643
1690
|
.sd-element--with-frame.sd-question--paneldynamic > .sd-question__erbox--below-question {
|
1644
1691
|
bottom: 0;
|
1645
1692
|
margin-top: 0;
|
@@ -1755,14 +1802,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1755
1802
|
box-shadow: none;
|
1756
1803
|
}
|
1757
1804
|
|
1758
|
-
.svc-question__content .sd-element--complex > .sd-element__header--location-top {
|
1759
|
-
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1760
|
-
padding-top: 0;
|
1761
|
-
}
|
1762
|
-
.svc-question__content .sd-element--complex > .sd-element__header--location-top:after {
|
1763
|
-
display: none;
|
1764
|
-
}
|
1765
|
-
|
1766
1805
|
.sd-question {
|
1767
1806
|
position: relative;
|
1768
1807
|
}
|
@@ -1771,7 +1810,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1771
1810
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1772
1811
|
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
1773
1812
|
font-weight: 600;
|
1774
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1813
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1775
1814
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1776
1815
|
white-space: normal;
|
1777
1816
|
text-align: left;
|
@@ -1816,22 +1855,18 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1816
1855
|
padding-top: calc(0.5 * var(--sd-base-vertical-padding));
|
1817
1856
|
}
|
1818
1857
|
|
1819
|
-
.svc-logic-question-value > .sd-question__erbox--outside-question,
|
1820
1858
|
.sd-element--with-frame > .sd-question__erbox--outside-question {
|
1821
1859
|
margin-left: calc(-1 * var(--sd-base-padding));
|
1822
1860
|
margin-right: calc(-1 * var(--sd-base-padding));
|
1823
1861
|
width: calc(100% + 2 * var(--sd-base-padding));
|
1824
1862
|
}
|
1825
|
-
.svc-logic-question-value > .sd-question__erbox--above-question,
|
1826
1863
|
.sd-element--with-frame > .sd-question__erbox--above-question {
|
1827
1864
|
margin-top: calc(-1 * var(--sd-base-padding));
|
1828
1865
|
margin-bottom: var(--sd-base-vertical-padding);
|
1829
1866
|
}
|
1830
|
-
.svc-logic-question-value > .sd-question__header--location-top,
|
1831
1867
|
.sd-element--with-frame > .sd-question__header--location-top {
|
1832
1868
|
margin-top: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1833
1869
|
}
|
1834
|
-
.svc-logic-question-value > .sd-question__content > .sd-question__header--location--bottom,
|
1835
1870
|
.sd-element--with-frame > .sd-question__content > .sd-question__header--location--bottom {
|
1836
1871
|
margin-bottom: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1837
1872
|
}
|
@@ -1916,7 +1951,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1916
1951
|
gap: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1917
1952
|
justify-content: center;
|
1918
1953
|
min-height: calc(24 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1919
|
-
line-height: calc(
|
1954
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1920
1955
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1921
1956
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1922
1957
|
}
|
@@ -1947,7 +1982,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1947
1982
|
height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1948
1983
|
box-sizing: border-box;
|
1949
1984
|
padding: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1950
|
-
line-height: calc(
|
1985
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
1951
1986
|
font-family: var(--sjs-font-editorfont-family, var(--font-family));
|
1952
1987
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
1953
1988
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
@@ -2009,7 +2044,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2009
2044
|
align-items: flex-end;
|
2010
2045
|
padding: 0px;
|
2011
2046
|
font-family: var(--font-family);
|
2012
|
-
line-height: calc(
|
2047
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2013
2048
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2014
2049
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2015
2050
|
position: absolute;
|
@@ -2089,7 +2124,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2089
2124
|
font-size: var(--sjs-font-pagetitle-size, calc(1.5 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
2090
2125
|
color: var(--sjs-font-pagetitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
2091
2126
|
position: static;
|
2092
|
-
line-height: calc(
|
2127
|
+
line-height: calc(2 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2093
2128
|
margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
|
2094
2129
|
}
|
2095
2130
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__title span {
|
@@ -2105,7 +2140,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2105
2140
|
font-size: var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
2106
2141
|
color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2107
2142
|
position: static;
|
2108
|
-
line-height: calc(
|
2143
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2109
2144
|
margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
|
2110
2145
|
}
|
2111
2146
|
|
@@ -2128,11 +2163,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2128
2163
|
padding-top: var(--sd-base-vertical-padding);
|
2129
2164
|
}
|
2130
2165
|
|
2131
|
-
.svc-question__content .sd-panel__content {
|
2132
|
-
gap: 0;
|
2133
|
-
padding-top: 0;
|
2134
|
-
}
|
2135
|
-
|
2136
2166
|
.sjs_sp_placeholder {
|
2137
2167
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2138
2168
|
}
|
@@ -2204,7 +2234,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2204
2234
|
appearance: none;
|
2205
2235
|
background: transparent;
|
2206
2236
|
border: none;
|
2207
|
-
line-height: calc(
|
2237
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2208
2238
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2209
2239
|
font-family: var(--font-family, var(--font-family));
|
2210
2240
|
font-weight: 600;
|
@@ -2277,7 +2307,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2277
2307
|
.sd-table__cell {
|
2278
2308
|
font-weight: normal;
|
2279
2309
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2280
|
-
line-height: calc(
|
2310
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2281
2311
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2282
2312
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2283
2313
|
text-align: center;
|
@@ -2333,18 +2363,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2333
2363
|
.sd-matrixdynamic__add-btn .sv-action-bar {
|
2334
2364
|
overflow: visible;
|
2335
2365
|
}
|
2336
|
-
.sd-table__cell--actions .svc-string-editor__button--done,
|
2337
|
-
.sd-matrixdynamic__add-btn .svc-string-editor__button--done {
|
2338
|
-
width: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2339
|
-
}
|
2340
|
-
|
2341
|
-
.svc-question__content .sd-table__cell--actions .sv-action-bar-item:disabled {
|
2342
|
-
background: var(--sjs-general-backcolor, var(--background, #fff));
|
2343
|
-
opacity: 1;
|
2344
|
-
}
|
2345
|
-
.svc-question__content .sd-table__cell--actions .sv-action-bar-item:disabled use {
|
2346
|
-
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2347
|
-
}
|
2348
2366
|
|
2349
2367
|
.sd-table__cell--actions:not(.sd-table__cell--vertical) {
|
2350
2368
|
width: 0;
|
@@ -2516,7 +2534,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2516
2534
|
font-size: var(--sjs-font-pagetitle-size, calc(1.5 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
2517
2535
|
color: var(--sjs-font-pagetitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
2518
2536
|
position: static;
|
2519
|
-
line-height: calc(
|
2537
|
+
line-height: calc(2 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2520
2538
|
margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
|
2521
2539
|
}
|
2522
2540
|
|
@@ -2526,7 +2544,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2526
2544
|
font-size: var(--sjs-font-pagedescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
2527
2545
|
color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2528
2546
|
position: static;
|
2529
|
-
line-height: calc(
|
2547
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2530
2548
|
margin: calc(0.5 * var(--sjs-base-unit, var(--base-unit, 8px))) 0px;
|
2531
2549
|
}
|
2532
2550
|
|
@@ -2549,48 +2567,33 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2549
2567
|
margin-top: var(--sd-base-vertical-padding);
|
2550
2568
|
}
|
2551
2569
|
|
2552
|
-
.sd-
|
2553
|
-
.svc-row > .sd-row--multiple {
|
2554
|
-
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
2555
|
-
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2556
|
-
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
2557
|
-
}
|
2558
|
-
|
2559
|
-
:not(.svc-row) > .sd-row--multiple {
|
2570
|
+
.sd-row--multiple {
|
2560
2571
|
row-gap: var(--sd-base-vertical-padding);
|
2561
2572
|
margin-left: calc(-1 * var(--sd-base-padding));
|
2562
2573
|
width: calc(100% + var(--sd-base-padding));
|
2563
2574
|
flex-wrap: wrap;
|
2564
2575
|
}
|
2565
|
-
|
2576
|
+
.sd-row--multiple > div {
|
2566
2577
|
box-sizing: border-box;
|
2567
2578
|
padding-left: var(--sd-base-padding);
|
2568
2579
|
}
|
2569
2580
|
|
2570
|
-
|
2581
|
+
.sd-page__row.sd-row--multiple {
|
2571
2582
|
padding: var(--sd-base-vertical-padding) var(--sd-base-padding) var(--sd-base-padding) 0;
|
2572
2583
|
margin-left: 0;
|
2573
2584
|
width: 100%;
|
2574
2585
|
}
|
2575
|
-
|
2586
|
+
.sd-page__row.sd-row--multiple:not(.sd-row--compact) {
|
2587
|
+
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
2588
|
+
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2589
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
2590
|
+
}
|
2591
|
+
.sd-page__row.sd-row--multiple.sd-row--compact {
|
2576
2592
|
padding: 0;
|
2577
2593
|
width: calc(100% + var(--sd-base-padding));
|
2578
2594
|
margin-left: calc(-1 * var(--sd-base-padding));
|
2579
2595
|
}
|
2580
2596
|
|
2581
|
-
.svc-row .sd-row--multiple {
|
2582
|
-
overflow: auto;
|
2583
|
-
margin-top: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2584
|
-
}
|
2585
|
-
|
2586
|
-
.svc-row--multiple .sd-row--multiple {
|
2587
|
-
gap: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2588
|
-
}
|
2589
|
-
|
2590
|
-
.svc-row:not(.svc-row--ghost) > .sd-row {
|
2591
|
-
min-height: 50px;
|
2592
|
-
}
|
2593
|
-
|
2594
2597
|
.sd-row__panel {
|
2595
2598
|
box-sizing: border-box;
|
2596
2599
|
width: 100%;
|
@@ -2602,10 +2605,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2602
2605
|
white-space: nowrap;
|
2603
2606
|
}
|
2604
2607
|
|
2605
|
-
.svc-tab-designer .sd-title {
|
2606
|
-
display: flex;
|
2607
|
-
}
|
2608
|
-
|
2609
2608
|
.sd-title {
|
2610
2609
|
display: block;
|
2611
2610
|
font-family: var(--font-family, var(--font-family));
|
@@ -2643,12 +2642,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2643
2642
|
font-weight: var(--sjs-font-surveytitle-weight, 700);
|
2644
2643
|
}
|
2645
2644
|
.sd-header__text h3 {
|
2646
|
-
line-height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2645
|
+
line-height: calc(2.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2647
2646
|
}
|
2648
2647
|
.sd-header__text h5 {
|
2649
2648
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2650
2649
|
font-weight: 400;
|
2651
|
-
line-height: calc(
|
2650
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2652
2651
|
}
|
2653
2652
|
|
2654
2653
|
.sd-title .sv-title-actions {
|
@@ -2656,7 +2655,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2656
2655
|
justify-content: space-between;
|
2657
2656
|
}
|
2658
2657
|
|
2659
|
-
.sd-root-modern
|
2658
|
+
.sd-root-modern .sd-container-modern__title {
|
2660
2659
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2661
2660
|
}
|
2662
2661
|
|
@@ -2699,7 +2698,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2699
2698
|
font-weight: var(--sjs-font-questiondescription-weight, 400);
|
2700
2699
|
color: var(--sjs-font-questiondescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2701
2700
|
font-size: var(--sjs-font-questiondescription-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
2702
|
-
line-height: calc(
|
2701
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2703
2702
|
white-space: normal;
|
2704
2703
|
word-break: break-word;
|
2705
2704
|
}
|
@@ -2749,7 +2748,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2749
2748
|
font-family: var(--font-family, var(--font-family));
|
2750
2749
|
font-style: normal;
|
2751
2750
|
font-weight: normal;
|
2752
|
-
line-height: calc(
|
2751
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2753
2752
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
2754
2753
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2755
2754
|
white-space: normal;
|
@@ -2914,12 +2913,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2914
2913
|
|
2915
2914
|
.sd-rating {
|
2916
2915
|
overflow-x: auto;
|
2917
|
-
min-height: calc(
|
2916
|
+
min-height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2918
2917
|
}
|
2919
2918
|
.sd-rating fieldset {
|
2920
2919
|
display: flex;
|
2921
2920
|
border: none;
|
2922
|
-
padding: 0 0
|
2921
|
+
padding: 0 0 2px 0;
|
2923
2922
|
flex-wrap: nowrap;
|
2924
2923
|
gap: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2925
2924
|
margin-inline-start: 0;
|
@@ -2928,6 +2927,9 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2928
2927
|
.sd-rating.sd-rating--wrappable fieldset {
|
2929
2928
|
flex-wrap: wrap;
|
2930
2929
|
}
|
2930
|
+
.sd-rating.sd-scrollable-container:not(.sd-scrollable-container--compact) {
|
2931
|
+
overflow: visible;
|
2932
|
+
}
|
2931
2933
|
|
2932
2934
|
.sd-rating--small {
|
2933
2935
|
min-height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -3194,13 +3196,13 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3194
3196
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3195
3197
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
3196
3198
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
3197
|
-
line-height: calc(
|
3199
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3198
3200
|
display: inline-block;
|
3199
3201
|
}
|
3200
3202
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text, .sd-rating__item-text.sd-rating__item-text.sd-rating__max-text {
|
3201
3203
|
margin-top: calc(1.25 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3202
3204
|
margin-bottom: calc(1.25 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3203
|
-
border: 2px solid
|
3205
|
+
border: 2px solid transparent;
|
3204
3206
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3205
3207
|
}
|
3206
3208
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text {
|
@@ -3237,7 +3239,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3237
3239
|
}
|
3238
3240
|
|
3239
3241
|
.sv-ranking-item__content.sd-ranking-item__content {
|
3240
|
-
line-height: calc(
|
3242
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3241
3243
|
}
|
3242
3244
|
|
3243
3245
|
.sd-dropdown {
|
@@ -3321,7 +3323,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3321
3323
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3322
3324
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
3323
3325
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
3324
|
-
line-height: calc(
|
3326
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3325
3327
|
background-color: transparent;
|
3326
3328
|
overflow: hidden;
|
3327
3329
|
text-overflow: ellipsis;
|
@@ -3345,7 +3347,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3345
3347
|
text-overflow: ellipsis;
|
3346
3348
|
white-space: nowrap;
|
3347
3349
|
display: inline-block;
|
3348
|
-
line-height: calc(
|
3350
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3349
3351
|
appearance: none;
|
3350
3352
|
}
|
3351
3353
|
|
@@ -3495,12 +3497,12 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3495
3497
|
|
3496
3498
|
.sd-dropdown__hint-suffix.sd-tagbox__hint-suffix {
|
3497
3499
|
height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3498
|
-
line-height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3500
|
+
line-height: calc(2.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3499
3501
|
}
|
3500
3502
|
|
3501
3503
|
.sd-dropdown__hint-prefix.sd-tagbox__hint-prefix {
|
3502
3504
|
height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3503
|
-
line-height: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3505
|
+
line-height: calc(2.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3504
3506
|
}
|
3505
3507
|
|
3506
3508
|
.sd-imagepicker {
|
@@ -3590,7 +3592,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3590
3592
|
|
3591
3593
|
.sd-imagepicker__text {
|
3592
3594
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3593
|
-
line-height: calc(
|
3595
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3594
3596
|
margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3595
3597
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3596
3598
|
}
|
@@ -3678,7 +3680,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3678
3680
|
right: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3679
3681
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3680
3682
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3681
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3683
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3682
3684
|
font-weight: 600;
|
3683
3685
|
}
|
3684
3686
|
@media only screen and (min-width: calc(125 * var(--sjs-base-unit, var(--base-unit, 8px)))) {
|
@@ -3709,7 +3711,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3709
3711
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3710
3712
|
font-size: var(--sjs-font-editorfont-size, calc(1 * var(--sjs-font-size, var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))))));
|
3711
3713
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3712
|
-
line-height: calc(
|
3714
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3713
3715
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3714
3716
|
}
|
3715
3717
|
|
@@ -3902,10 +3904,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3902
3904
|
padding-bottom: var(--sd-base-padding);
|
3903
3905
|
}
|
3904
3906
|
|
3905
|
-
.svc-question__content .sd-paneldynamic__panel-wrapper {
|
3906
|
-
padding: 0;
|
3907
|
-
}
|
3908
|
-
|
3909
3907
|
.sd-paneldynamic__buttons-container .sd-action-bar {
|
3910
3908
|
width: 100%;
|
3911
3909
|
margin: 0 calc(-3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -3924,34 +3922,36 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3924
3922
|
margin-bottom: calc(-1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3925
3923
|
}
|
3926
3924
|
|
3927
|
-
.
|
3928
|
-
|
3925
|
+
.sd-tabs-toolbar.sv-action-bar {
|
3926
|
+
align-items: flex-start;
|
3927
|
+
margin: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0 -1px calc(-2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3928
|
+
width: calc(100% + 4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3929
|
+
z-index: 1;
|
3929
3930
|
}
|
3930
3931
|
|
3931
|
-
.
|
3932
|
+
.sd-tabs-toolbar.sd-tabs-toolbar--left {
|
3932
3933
|
justify-content: flex-start;
|
3933
3934
|
}
|
3934
3935
|
|
3935
|
-
.
|
3936
|
+
.sd-tabs-toolbar.sd-tabs-toolbar--right {
|
3936
3937
|
justify-content: flex-end;
|
3937
3938
|
}
|
3938
3939
|
|
3939
|
-
.
|
3940
|
+
.sd-tabs-toolbar.sd-tabs-toolbar--center {
|
3940
3941
|
justify-content: center;
|
3941
3942
|
}
|
3942
3943
|
|
3943
|
-
.
|
3944
|
-
|
3944
|
+
.sd-tab-item {
|
3945
|
+
margin: 0 calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3945
3946
|
}
|
3946
3947
|
|
3947
|
-
.
|
3948
|
-
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0 calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))
|
3948
|
+
.sd-tab-item {
|
3949
|
+
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0 calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3949
3950
|
display: flex;
|
3950
3951
|
-webkit-appearance: none;
|
3951
3952
|
-moz-appearance: none;
|
3952
3953
|
appearance: none;
|
3953
3954
|
display: flex;
|
3954
|
-
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3955
3955
|
box-sizing: border-box;
|
3956
3956
|
border: none;
|
3957
3957
|
background-color: transparent;
|
@@ -3962,19 +3962,58 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3962
3962
|
overflow-x: hidden;
|
3963
3963
|
white-space: nowrap;
|
3964
3964
|
}
|
3965
|
+
.sd-tab-item:hover {
|
3966
|
+
box-shadow: inset 0px -2px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3967
|
+
}
|
3965
3968
|
|
3966
|
-
.
|
3969
|
+
.sd-tab-item.sd-tab-item--pressed {
|
3967
3970
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3968
3971
|
box-shadow: inset 0px -2px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3969
3972
|
}
|
3970
3973
|
|
3971
|
-
.
|
3972
|
-
|
3974
|
+
.sd-tab-item--icon {
|
3975
|
+
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3976
|
+
width: auto;
|
3977
|
+
border-radius: calc(12.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3978
|
+
}
|
3979
|
+
.sd-tab-item--icon use {
|
3980
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3981
|
+
opacity: 0.5;
|
3982
|
+
}
|
3983
|
+
|
3984
|
+
.sd-tab-item--icon:hover,
|
3985
|
+
.sd-tab-item--icon.sd-tab-item--pressed {
|
3986
|
+
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
3987
|
+
box-shadow: none;
|
3988
|
+
}
|
3989
|
+
.sd-tab-item--icon:hover use,
|
3990
|
+
.sd-tab-item--icon.sd-tab-item--pressed use {
|
3991
|
+
fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3992
|
+
}
|
3993
|
+
|
3994
|
+
.sd-tab-item--icon:hover use {
|
3995
|
+
opacity: 1;
|
3996
|
+
}
|
3997
|
+
|
3998
|
+
.sd-tabs-toolbar .sv-dots {
|
3999
|
+
width: auto;
|
4000
|
+
}
|
4001
|
+
|
4002
|
+
.sd-tabs-toolbar .sv-dots.sv-action--hidden {
|
4003
|
+
width: 0;
|
4004
|
+
}
|
4005
|
+
|
4006
|
+
.sd-tab-item__title {
|
4007
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3973
4008
|
height: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3974
4009
|
display: flex;
|
3975
4010
|
align-items: center;
|
3976
4011
|
}
|
3977
4012
|
|
4013
|
+
.sd-question__title ~ .sd-tabs-toolbar {
|
4014
|
+
margin-top: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4015
|
+
}
|
4016
|
+
|
3978
4017
|
.sd-paneldynamic__header.sd-element__header.sd-paneldynamic__header-tab {
|
3979
4018
|
padding-bottom: 0;
|
3980
4019
|
}
|
@@ -3987,7 +4026,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3987
4026
|
min-height: calc(36 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3988
4027
|
position: relative;
|
3989
4028
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3990
|
-
line-height: calc(
|
4029
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
3991
4030
|
}
|
3992
4031
|
.sd-file .sv-action-bar {
|
3993
4032
|
padding: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px))) 0;
|
@@ -4123,7 +4162,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4123
4162
|
margin-top: calc(1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4124
4163
|
text-align: center;
|
4125
4164
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4126
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4165
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4127
4166
|
}
|
4128
4167
|
.sd-file__sign a {
|
4129
4168
|
display: block;
|
@@ -4135,7 +4174,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4135
4174
|
overflow: hidden;
|
4136
4175
|
max-height: calc(6 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4137
4176
|
text-overflow: ellipsis;
|
4138
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4177
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4139
4178
|
display: -webkit-box;
|
4140
4179
|
-webkit-line-clamp: 3;
|
4141
4180
|
-webkit-box-orient: vertical;
|
@@ -4252,7 +4291,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4252
4291
|
font-style: normal;
|
4253
4292
|
font-weight: 600;
|
4254
4293
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4255
|
-
line-height: calc(
|
4294
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4256
4295
|
text-align: center;
|
4257
4296
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4258
4297
|
border: none;
|
@@ -4437,7 +4476,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4437
4476
|
font-family: var(--font-family, var(--font-family));
|
4438
4477
|
font-style: normal;
|
4439
4478
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4440
|
-
line-height: calc(
|
4479
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4441
4480
|
outline: none;
|
4442
4481
|
}
|
4443
4482
|
|
@@ -4615,13 +4654,13 @@ svg.sd-action--icon {
|
|
4615
4654
|
width: 100%;
|
4616
4655
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4617
4656
|
font-weight: 600;
|
4618
|
-
line-height: calc(
|
4657
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4619
4658
|
}
|
4620
4659
|
|
4621
4660
|
.sd-progress-buttons__page-description {
|
4622
4661
|
width: 100%;
|
4623
4662
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4624
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4663
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4625
4664
|
font-weight: 600;
|
4626
4665
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4627
4666
|
}
|
@@ -4670,7 +4709,7 @@ svg.sd-action--icon {
|
|
4670
4709
|
padding-block: calc(1.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4671
4710
|
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
4672
4711
|
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4673
|
-
line-height: calc(
|
4712
|
+
line-height: calc(1.5 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4674
4713
|
}
|
4675
4714
|
|
4676
4715
|
.sd-list__item.sd-list__item--focused:not(.sd-list__item--selected) {
|
@@ -4802,14 +4841,12 @@ sv-components-container,
|
|
4802
4841
|
height: 100%;
|
4803
4842
|
}
|
4804
4843
|
|
4805
|
-
.sd-root-modern
|
4806
|
-
.svc-logic-question-value {
|
4844
|
+
.sd-root-modern {
|
4807
4845
|
--sd-base-padding: calc(5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4808
4846
|
--sd-base-vertical-padding: calc(4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4809
4847
|
--sd-page-vertical-padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4810
4848
|
}
|
4811
4849
|
|
4812
|
-
.svc-creator--mobile .sd-root-modern,
|
4813
4850
|
.sd-root-modern.sd-root-modern--mobile {
|
4814
4851
|
--sd-base-padding: calc(3 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4815
4852
|
--sd-base-vertical-padding: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -4848,7 +4885,7 @@ sv-components-container,
|
|
4848
4885
|
}
|
4849
4886
|
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-title {
|
4850
4887
|
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4851
|
-
line-height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4888
|
+
line-height: calc(1 * var(--sjs-font-size, calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)))));
|
4852
4889
|
height: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
4853
4890
|
padding-right: 0;
|
4854
4891
|
border-right: none;
|