survey-react 1.9.84 → 1.9.86
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 +367 -259
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +70 -58
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +23 -19
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +3197 -3092
- package/survey.react.js +460 -108
- 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.86
|
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
|
*/
|
@@ -112,7 +112,7 @@
|
|
112
112
|
padding: calc(1 * var(--base-unit, 8px));
|
113
113
|
box-sizing: border-box;
|
114
114
|
border: none;
|
115
|
-
border-radius:
|
115
|
+
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
116
116
|
background-color: transparent;
|
117
117
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
118
118
|
cursor: pointer;
|
@@ -127,14 +127,14 @@ button.sv-action-bar-item {
|
|
127
127
|
|
128
128
|
.sv-action-bar--default-size-mode .sv-action-bar-item {
|
129
129
|
height: calc(5 * var(--base-unit, 8px));
|
130
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
130
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
131
131
|
line-height: calc(3 * var(--base-unit, 8px));
|
132
132
|
margin: 0 calc(1 * var(--base-unit, 8px));
|
133
133
|
}
|
134
134
|
|
135
135
|
.sv-action-bar--small-size-mode .sv-action-bar-item {
|
136
136
|
height: calc(4 * var(--base-unit, 8px));
|
137
|
-
font-size: calc(
|
137
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
138
138
|
line-height: calc(2 * var(--base-unit, 8px));
|
139
139
|
margin: 0 calc(0.5 * var(--base-unit, 8px));
|
140
140
|
}
|
@@ -204,11 +204,11 @@ button.sv-action-bar-item {
|
|
204
204
|
padding: calc(1 * var(--base-unit, 8px));
|
205
205
|
box-sizing: border-box;
|
206
206
|
border: none;
|
207
|
-
border-radius:
|
207
|
+
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
208
208
|
background-color: transparent;
|
209
209
|
cursor: pointer;
|
210
210
|
line-height: calc(3 * var(--base-unit, 8px));
|
211
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
211
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
212
212
|
font-family: var(--font-family, var(--font-family));
|
213
213
|
}
|
214
214
|
|
@@ -274,7 +274,7 @@ button.sv-action-bar-item {
|
|
274
274
|
z-index: 1000;
|
275
275
|
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
|
276
276
|
font-family: var(--font-family, var(--font-family));
|
277
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
277
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
278
278
|
padding-left: calc(2.5 * var(--base-unit, 8px));
|
279
279
|
line-height: calc(3 * var(--base-unit, 8px));
|
280
280
|
}
|
@@ -332,12 +332,12 @@ sv-popup {
|
|
332
332
|
.sv-popup__shadow {
|
333
333
|
width: 100%;
|
334
334
|
height: 100%;
|
335
|
-
border-radius: calc(
|
335
|
+
border-radius: calc(2 * var(--sjs-corner-radius, 4px));
|
336
336
|
}
|
337
337
|
|
338
338
|
.sv-popup__body-content {
|
339
339
|
background-color: var(--background, #fff);
|
340
|
-
border-radius: calc(
|
340
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
341
341
|
width: 100%;
|
342
342
|
height: 100%;
|
343
343
|
box-sizing: border-box;
|
@@ -347,7 +347,7 @@ sv-popup {
|
|
347
347
|
max-width: 90vw;
|
348
348
|
}
|
349
349
|
|
350
|
-
.sv-popup--modal {
|
350
|
+
.sv-popup.sv-popup--modal {
|
351
351
|
display: flex;
|
352
352
|
align-items: center;
|
353
353
|
justify-content: center;
|
@@ -355,11 +355,12 @@ sv-popup {
|
|
355
355
|
padding: calc(11 * var(--base-unit, 8px)) calc(15 * var(--base-unit, 8px));
|
356
356
|
box-sizing: border-box;
|
357
357
|
}
|
358
|
-
.sv-popup--modal .sv-popup__container {
|
358
|
+
.sv-popup.sv-popup--modal .sv-popup__container {
|
359
359
|
position: static;
|
360
360
|
}
|
361
|
-
.sv-popup--modal .sv-popup__body-content {
|
361
|
+
.sv-popup.sv-popup--modal .sv-popup__body-content {
|
362
362
|
padding: calc(4 * var(--base-unit, 8px));
|
363
|
+
height: auto;
|
363
364
|
}
|
364
365
|
|
365
366
|
.sv-popup--overlay.sv-popup--overlay {
|
@@ -378,7 +379,7 @@ sv-popup {
|
|
378
379
|
.sv-popup--overlay.sv-popup--overlay .sv-popup__body-content {
|
379
380
|
max-height: var(--sv-popup-overlay-height, 100vh);
|
380
381
|
max-width: 100vw;
|
381
|
-
border-radius: calc(
|
382
|
+
border-radius: calc(4 * var(--sjs-corner-radius, 4px)) calc(4 * var(--sjs-corner-radius, 4px)) 0px 0px;
|
382
383
|
background: var(--background, #fff);
|
383
384
|
box-shadow: 0px calc(1 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) rgba(0, 0, 0, 0.1);
|
384
385
|
padding: calc(3 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
|
@@ -474,7 +475,7 @@ sv-popup {
|
|
474
475
|
|
475
476
|
.sv-popup__body-header {
|
476
477
|
font-family: Open Sans;
|
477
|
-
font-size: calc(
|
478
|
+
font-size: calc(1.5 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
478
479
|
line-height: calc(4 * var(--base-unit, 8px));
|
479
480
|
font-style: normal;
|
480
481
|
font-weight: 700;
|
@@ -495,13 +496,13 @@ sv-popup {
|
|
495
496
|
padding: calc(2 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
|
496
497
|
background: var(--background, #fff);
|
497
498
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
498
|
-
border-radius: 4px;
|
499
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
499
500
|
margin: 2px;
|
500
501
|
cursor: pointer;
|
501
502
|
font-family: var(--font-family, var(--font-family));
|
502
503
|
font-style: normal;
|
503
504
|
font-weight: 600;
|
504
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
505
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
505
506
|
line-height: calc(3 * var(--base-unit, 8px));
|
506
507
|
text-align: center;
|
507
508
|
color: var(--primary, #19b394);
|
@@ -631,7 +632,7 @@ sv-popup {
|
|
631
632
|
}
|
632
633
|
.sv-dropdown-popup.sv-popup--overlay .sv-list__input {
|
633
634
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
634
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
635
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
635
636
|
line-height: calc(3 * var(--base-unit, 8px));
|
636
637
|
font-family: var(--font-family);
|
637
638
|
padding: calc(0.5 * var(--base-unit, 8px)) 0 calc(0.5 * var(--base-unit, 8px)) calc(1 * var(--base-unit, 8px));
|
@@ -668,10 +669,9 @@ sv-popup {
|
|
668
669
|
width: auto;
|
669
670
|
min-width: min(40 * var(--base-unit, 8px), var(--sv-popup-overlay-max-width));
|
670
671
|
max-width: var(--sv-popup-overlay-max-width);
|
671
|
-
border-radius: calc(
|
672
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
672
673
|
overflow: hidden;
|
673
674
|
margin: 0;
|
674
|
-
border-radius: 4px;
|
675
675
|
}
|
676
676
|
.sv-dropdown-popup.sv-popup--overlay.sv-popup--tablet .sv-popup__content,
|
677
677
|
.sv-dropdown-popup.sv-popup--overlay.sv-popup--tablet .sv-popup__scrolling-content,
|
@@ -683,7 +683,7 @@ sv-popup {
|
|
683
683
|
display: flex;
|
684
684
|
align-items: center;
|
685
685
|
flex-direction: row;
|
686
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
686
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
687
687
|
overflow: auto;
|
688
688
|
border: 1px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
689
689
|
}
|
@@ -704,7 +704,7 @@ sv-popup {
|
|
704
704
|
padding: 11px calc(2 * var(--base-unit, 8px));
|
705
705
|
line-height: calc(3 * var(--base-unit, 8px));
|
706
706
|
outline: none;
|
707
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
707
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
708
708
|
font-weight: 400;
|
709
709
|
background: var(--background, #fff);
|
710
710
|
cursor: pointer;
|
@@ -821,7 +821,7 @@ sv-popup {
|
|
821
821
|
background-color: cadetblue;
|
822
822
|
padding: 1px;
|
823
823
|
font-family: var(--font-family, var(--font-family));
|
824
|
-
font-size:
|
824
|
+
font-size: calc(0.875 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
825
825
|
font-style: normal;
|
826
826
|
font-weight: 400;
|
827
827
|
line-height: 1.42857143;
|
@@ -840,7 +840,7 @@ sv-popup {
|
|
840
840
|
background-clip: padding-box;
|
841
841
|
border: 1px solid #ccc;
|
842
842
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
843
|
-
border-radius:
|
843
|
+
border-radius: calc(1.5 * var(--sjs-corner-radius, 4px));
|
844
844
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
845
845
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
846
846
|
line-break: auto;
|
@@ -850,10 +850,10 @@ sv-popup {
|
|
850
850
|
.sv_window_title {
|
851
851
|
padding: 8px 14px;
|
852
852
|
margin: 0;
|
853
|
-
font-size:
|
853
|
+
font-size: calc(0.875 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
854
854
|
background-color: #f7f7f7;
|
855
855
|
border-bottom: 1px solid #ebebeb;
|
856
|
-
border-radius:
|
856
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px)) calc(1 * var(--sjs-corner-radius, 4px)) 0 0;
|
857
857
|
}
|
858
858
|
|
859
859
|
.sv_window_content {
|
@@ -867,7 +867,7 @@ sv-popup {
|
|
867
867
|
.sv_window_title a:link,
|
868
868
|
.sv_window_title a:visited {
|
869
869
|
text-decoration: none;
|
870
|
-
font-size:
|
870
|
+
font-size: calc(0.875 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
871
871
|
font-style: normal;
|
872
872
|
color: black;
|
873
873
|
}
|
@@ -888,8 +888,8 @@ sv-popup {
|
|
888
888
|
|
889
889
|
.sv-brand-info__text {
|
890
890
|
font-weight: 600;
|
891
|
-
font-size:
|
892
|
-
line-height:
|
891
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
892
|
+
line-height: calc(3 * var(--base-unit, 8px));
|
893
893
|
color: #161616;
|
894
894
|
}
|
895
895
|
|
@@ -902,8 +902,8 @@ sv-popup {
|
|
902
902
|
|
903
903
|
.sv-brand-info__terms {
|
904
904
|
font-weight: 400;
|
905
|
-
font-size:
|
906
|
-
line-height:
|
905
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
906
|
+
line-height: calc(2 * var(--base-unit, 8px));
|
907
907
|
}
|
908
908
|
.sv-brand-info__terms a {
|
909
909
|
color: #909090;
|
@@ -981,7 +981,7 @@ sv-popup {
|
|
981
981
|
justify-content: center;
|
982
982
|
background-color: var(--primary-light, rgba(25, 179, 148, 0.1));
|
983
983
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
984
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
984
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
985
985
|
border-radius: 100%;
|
986
986
|
border: calc(0.25 * var(--base-unit, 8px)) solid transparent;
|
987
987
|
width: calc(5 * var(--base-unit, 8px));
|
@@ -1003,7 +1003,7 @@ sv-popup {
|
|
1003
1003
|
text-overflow: ellipsis;
|
1004
1004
|
white-space: nowrap;
|
1005
1005
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1006
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1006
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1007
1007
|
line-height: calc(3 * var(--base-unit, 8px));
|
1008
1008
|
margin: 0 calc(2 * var(--base-unit, 8px));
|
1009
1009
|
}
|
@@ -1126,7 +1126,7 @@ sv-popup {
|
|
1126
1126
|
|
1127
1127
|
.sv-list__empty-text {
|
1128
1128
|
line-height: calc(3 * var(--base-unit, 8px));
|
1129
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1129
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1130
1130
|
font-weight: 400;
|
1131
1131
|
text-align: center;
|
1132
1132
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
@@ -1151,7 +1151,7 @@ sv-popup {
|
|
1151
1151
|
padding-inline-end: calc(8 * var(--base-unit, 8px));
|
1152
1152
|
padding-inline-start: calc(2 * var(--base-unit, 8px));
|
1153
1153
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1154
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1154
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1155
1155
|
line-height: calc(3 * var(--base-unit, 8px));
|
1156
1156
|
cursor: pointer;
|
1157
1157
|
overflow: hidden;
|
@@ -1159,12 +1159,24 @@ sv-popup {
|
|
1159
1159
|
white-space: nowrap;
|
1160
1160
|
}
|
1161
1161
|
|
1162
|
-
.sv-list__item.sv-list__item--focused
|
1162
|
+
.sv-list__item.sv-list__item--focused:not(.sv-list__item--selected) {
|
1163
|
+
outline: none;
|
1164
|
+
}
|
1165
|
+
.sv-list__item.sv-list__item--focused:not(.sv-list__item--selected) .sv-list__item-body {
|
1166
|
+
border: calc(0.25 * var(--base-unit, 8px)) solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
1167
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
1168
|
+
padding-block: calc(0.75 * var(--base-unit, 8px));
|
1169
|
+
padding-inline-end: calc(7.75 * var(--base-unit, 8px));
|
1170
|
+
padding-inline-start: calc(1.75 * var(--base-unit, 8px));
|
1171
|
+
}
|
1172
|
+
.sv-list__item.sv-list__item--focused:not(.sv-list__item--selected) .sv-string-viewer {
|
1173
|
+
margin-inline-start: calc(-0.25 * var(--base-unit, 8px));
|
1174
|
+
}
|
1175
|
+
|
1163
1176
|
.sv-list__item:hover,
|
1164
1177
|
.sv-list__item:focus {
|
1165
1178
|
outline: none;
|
1166
1179
|
}
|
1167
|
-
.sv-list__item.sv-list__item--focused .sv-list__item-body,
|
1168
1180
|
.sv-list__item:hover .sv-list__item-body,
|
1169
1181
|
.sv-list__item:focus .sv-list__item-body {
|
1170
1182
|
background-color: var(--sjs-general-backcolor-dark, rgb(248, 248, 248));
|
@@ -1275,7 +1287,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1275
1287
|
box-sizing: border-box;
|
1276
1288
|
width: 100%;
|
1277
1289
|
outline: none;
|
1278
|
-
font-size:
|
1290
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1279
1291
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1280
1292
|
padding: calc(1.5 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
|
1281
1293
|
padding-inline-start: calc(7 * var(--base-unit, 8px));
|
@@ -1308,13 +1320,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1308
1320
|
opacity: 0;
|
1309
1321
|
padding: calc(3 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
|
1310
1322
|
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
|
1311
|
-
border-radius: calc(
|
1323
|
+
border-radius: calc(2 * var(--sjs-corner-radius, 4px));
|
1312
1324
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1313
1325
|
min-width: calc(30 * var(--base-unit, 8px));
|
1314
1326
|
text-align: center;
|
1315
1327
|
z-index: 1600;
|
1316
1328
|
font-family: var(--font-family, var(--font-family));
|
1317
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1329
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1318
1330
|
line-height: calc(3 * var(--base-unit, 8px));
|
1319
1331
|
display: flex;
|
1320
1332
|
flex-direction: row;
|
@@ -1360,13 +1372,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1360
1372
|
|
1361
1373
|
.sv-save-data_root.sv-save-data_error .sv-save-data_button {
|
1362
1374
|
font-weight: 600;
|
1363
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1375
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1364
1376
|
line-height: calc(3 * var(--base-unit, 8px));
|
1365
1377
|
height: calc(5 * var(--base-unit, 8px));
|
1366
1378
|
color: #ffffff;
|
1367
1379
|
background-color: var(--red, #e60a3e);
|
1368
1380
|
border: calc(0.25 * var(--base-unit, 8px)) solid #ffffff;
|
1369
|
-
border-radius: calc(
|
1381
|
+
border-radius: calc(1.5 * var(--sjs-corner-radius, 4px));
|
1370
1382
|
padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
|
1371
1383
|
display: flex;
|
1372
1384
|
align-items: center;
|
@@ -1389,67 +1401,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1389
1401
|
padding-right: var(--sv-element-add-padding-right, 0px);
|
1390
1402
|
}
|
1391
1403
|
|
1392
|
-
.svc-logic-question-value,
|
1393
|
-
.sd-element--with-frame:not(.sd-element--collapsed) {
|
1394
|
-
border-radius: calc(0.5 * var(--base-unit, 8px));
|
1395
|
-
box-sizing: border-box;
|
1396
|
-
padding-left: calc(var(--sd-base-padding) + var(--sv-element-add-padding-left, 0px));
|
1397
|
-
padding-right: calc(var(--sd-base-padding) + var(--sv-element-add-padding-right, 0px));
|
1398
|
-
padding-bottom: var(--sd-base-padding);
|
1399
|
-
background: var(--sjs-question-background, var(--background, #fff));
|
1400
|
-
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1401
|
-
}
|
1402
|
-
.svc-logic-question-value > .sd-question__erbox--outside-question,
|
1403
|
-
.sd-element--with-frame:not(.sd-element--collapsed) > .sd-question__erbox--outside-question {
|
1404
|
-
margin-left: calc(-1 * var(--sd-base-padding));
|
1405
|
-
margin-right: calc(-1 * var(--sd-base-padding));
|
1406
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1407
|
-
}
|
1408
|
-
.svc-logic-question-value.sd-question--paneldynamic,
|
1409
|
-
.sd-element--with-frame:not(.sd-element--collapsed).sd-question--paneldynamic {
|
1410
|
-
padding-bottom: 0;
|
1411
|
-
}
|
1412
|
-
.svc-logic-question-value.sd-question--paneldynamic > .sd-question__erbox--below-question,
|
1413
|
-
.sd-element--with-frame:not(.sd-element--collapsed).sd-question--paneldynamic > .sd-question__erbox--below-question {
|
1414
|
-
bottom: 0;
|
1415
|
-
margin-top: 0;
|
1416
|
-
}
|
1417
|
-
|
1418
|
-
.sd-element--with-frame > .sd-question__erbox--above-question {
|
1419
|
-
margin-top: calc(-1 * var(--sd-base-vertical-padding));
|
1420
|
-
}
|
1421
|
-
|
1422
|
-
.svc-logic-question-value,
|
1423
|
-
.sd-element:not(.sd-element--collapsed) {
|
1424
|
-
padding-top: var(--sd-base-vertical-padding);
|
1425
|
-
}
|
1426
|
-
|
1427
|
-
.sd-table__cell--detail-panel .sd-element:not(.sd-element--collapsed) {
|
1428
|
-
padding-top: calc(0.5 * var(--base-unit, 8px));
|
1429
|
-
}
|
1430
|
-
|
1431
|
-
.sd-element.sd-element--complex {
|
1432
|
-
padding-top: 0;
|
1433
|
-
}
|
1434
|
-
|
1435
|
-
.sd-element--expanded > .sd-element__header,
|
1436
|
-
.sd-element--collapsed > .sd-element__header {
|
1437
|
-
cursor: pointer;
|
1438
|
-
}
|
1439
|
-
|
1440
|
-
.sd-element--collapsed > .sd-element__header {
|
1441
|
-
padding: calc(2 * var(--base-unit, 8px)) var(--sd-base-padding);
|
1442
|
-
box-sizing: border-box;
|
1443
|
-
background-color: var(--background, #fff);
|
1444
|
-
}
|
1445
|
-
.sd-element--collapsed.sd-element--with-frame > .sd-element__header {
|
1446
|
-
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1447
|
-
border-radius: calc(0.5 * var(--base-unit, 8px));
|
1448
|
-
}
|
1449
|
-
.sd-element--collapsed > .sd-element__header:focus-within, .sd-element--collapsed > .sd-element__header:hover {
|
1450
|
-
background-color: var(--background-dim-light, #f9f9f9);
|
1451
|
-
}
|
1452
|
-
|
1453
1404
|
.sd-element__title {
|
1454
1405
|
outline: none;
|
1455
1406
|
}
|
@@ -1462,80 +1413,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1462
1413
|
opacity: 1;
|
1463
1414
|
}
|
1464
1415
|
|
1465
|
-
.sd-element--collapsed:not(.sd-element--with-frame) > .sd-element__header {
|
1466
|
-
margin-left: calc(-1 * var(--sd-base-padding));
|
1467
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1468
|
-
}
|
1469
|
-
|
1470
|
-
.sd-element--complex:not(.sd-element--collapsed) > .sd-element__header--location-top {
|
1471
|
-
padding-top: var(--sd-base-vertical-padding);
|
1472
|
-
padding-bottom: var(--sd-base-vertical-padding);
|
1473
|
-
}
|
1474
|
-
.sd-element--complex:not(.sd-element--collapsed) > .sd-element__header--location-top:after {
|
1475
|
-
content: " ";
|
1476
|
-
display: block;
|
1477
|
-
position: relative;
|
1478
|
-
bottom: calc(-1 * var(--sd-base-vertical-padding));
|
1479
|
-
height: 1px;
|
1480
|
-
background: var(--sjs-border-light, var(--border-light, #eaeaea));
|
1481
|
-
}
|
1482
|
-
|
1483
|
-
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top:after {
|
1484
|
-
content: " ";
|
1485
|
-
left: calc(-1 * var(--sd-base-padding));
|
1486
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1487
|
-
}
|
1488
|
-
|
1489
|
-
.sd-element--nested.sd-element--complex > .sd-element__header--location-top {
|
1490
|
-
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1491
|
-
}
|
1492
|
-
.sd-element--nested.sd-element--complex > .sd-element__header--location-top:after {
|
1493
|
-
bottom: calc(-0.5 * var(--sd-base-vertical-padding));
|
1494
|
-
}
|
1495
|
-
.sd-element--nested.sd-question--image {
|
1496
|
-
padding-top: var(--sd-base-vertical-padding);
|
1497
|
-
}
|
1498
|
-
.sd-element--nested.sd-panel, .sd-element--nested.sd-question--paneldynamic {
|
1499
|
-
border: 1px solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
1500
|
-
box-sizing: border-box;
|
1501
|
-
padding-left: var(--sd-base-padding);
|
1502
|
-
padding-right: var(--sd-base-padding);
|
1503
|
-
margin-top: var(--sd-base-vertical-padding);
|
1504
|
-
}
|
1505
|
-
.sd-element--nested.sd-panel > .sd-element__header--location-top, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top {
|
1506
|
-
padding-top: calc(0.5 * var(--sd-base-vertical-padding));
|
1507
|
-
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1508
|
-
}
|
1509
|
-
.sd-element--nested.sd-panel > .sd-element__header--location-top:after, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top:after {
|
1510
|
-
left: calc(-1 * var(--sd-base-padding));
|
1511
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1512
|
-
bottom: calc(-0.5 * var(--sd-base-vertical-padding));
|
1513
|
-
}
|
1514
|
-
.sd-element--nested.sd-panel > .sd-question__erbox--outside-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--outside-question {
|
1515
|
-
margin-left: calc(-1 * var(--sd-base-padding));
|
1516
|
-
margin-right: calc(-1 * var(--sd-base-padding));
|
1517
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1518
|
-
}
|
1519
|
-
.sd-element--nested.sd-panel > .sd-question__erbox--below-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--below-question {
|
1520
|
-
bottom: 0;
|
1521
|
-
margin-top: 0;
|
1522
|
-
}
|
1523
|
-
.sd-element--nested.sd-panel:not(.sd-element--collapsed) {
|
1524
|
-
padding-bottom: var(--sd-base-padding);
|
1525
|
-
}
|
1526
|
-
|
1527
|
-
.svc-question__content .sd-element {
|
1528
|
-
padding-top: 0;
|
1529
|
-
}
|
1530
|
-
|
1531
|
-
.svc-question__content .sd-element--complex > .sd-element__header--location-top {
|
1532
|
-
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1533
|
-
padding-top: 0;
|
1534
|
-
}
|
1535
|
-
.svc-question__content .sd-element--complex > .sd-element__header--location-top:after {
|
1536
|
-
display: none;
|
1537
|
-
}
|
1538
|
-
|
1539
1416
|
.sd-element--invisible {
|
1540
1417
|
opacity: 0.35;
|
1541
1418
|
}
|
@@ -1548,11 +1425,11 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1548
1425
|
margin: 0;
|
1549
1426
|
}
|
1550
1427
|
.sd-element__title .sd-element__num {
|
1551
|
-
font-size: calc(
|
1428
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1552
1429
|
line-height: calc(2 * var(--base-unit, 8px));
|
1553
1430
|
}
|
1554
1431
|
.sd-element__title span {
|
1555
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1432
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1556
1433
|
line-height: calc(3 * var(--base-unit, 8px));
|
1557
1434
|
}
|
1558
1435
|
.sd-element__title .sv-title-actions__title {
|
@@ -1581,7 +1458,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1581
1458
|
padding-inline-start: 0;
|
1582
1459
|
padding-inline-end: calc(1 * var(--base-unit, 8px));
|
1583
1460
|
width: calc(5 * var(--base-unit, 8px));
|
1584
|
-
font-size: calc(
|
1461
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1585
1462
|
line-height: calc(2 * var(--base-unit, 8px));
|
1586
1463
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1587
1464
|
margin-inline-start: calc(-5 * var(--base-unit, 8px));
|
@@ -1635,20 +1512,159 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1635
1512
|
transform: rotate(90deg);
|
1636
1513
|
}
|
1637
1514
|
|
1515
|
+
.svc-logic-question-value,
|
1516
|
+
.sd-element--with-frame {
|
1517
|
+
border-radius: var(--sjs-panel-corner-radius, var(--sjs-corner-radius, 4px));
|
1518
|
+
box-sizing: border-box;
|
1519
|
+
padding-top: var(--sd-base-padding);
|
1520
|
+
padding-left: calc(var(--sd-base-padding) + var(--sv-element-add-padding-left, 0px));
|
1521
|
+
padding-right: calc(var(--sd-base-padding) + var(--sv-element-add-padding-right, 0px));
|
1522
|
+
padding-bottom: var(--sd-base-padding);
|
1523
|
+
background: var(--sjs-question-background, var(--background, #fff));
|
1524
|
+
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1525
|
+
}
|
1526
|
+
.svc-logic-question-value.sd-question--paneldynamic,
|
1527
|
+
.sd-element--with-frame.sd-question--paneldynamic {
|
1528
|
+
padding-bottom: 0;
|
1529
|
+
}
|
1530
|
+
.svc-logic-question-value.sd-question--paneldynamic > .sd-question__erbox--below-question,
|
1531
|
+
.sd-element--with-frame.sd-question--paneldynamic > .sd-question__erbox--below-question {
|
1532
|
+
bottom: 0;
|
1533
|
+
margin-top: 0;
|
1534
|
+
}
|
1535
|
+
|
1536
|
+
.sd-element--complex.sd-element--complex > .sd-question__erbox--above-question {
|
1537
|
+
margin-top: 0;
|
1538
|
+
margin-bottom: 0;
|
1539
|
+
}
|
1540
|
+
.sd-element--complex > .sd-element__header--location-top {
|
1541
|
+
margin-top: 0;
|
1542
|
+
}
|
1543
|
+
.sd-element--complex > .sd-element__header--location-top:after {
|
1544
|
+
content: " ";
|
1545
|
+
display: block;
|
1546
|
+
position: relative;
|
1547
|
+
height: 1px;
|
1548
|
+
background: var(--sjs-border-light, var(--border-light, #eaeaea));
|
1549
|
+
bottom: 0;
|
1550
|
+
}
|
1551
|
+
.sd-element--complex.sd-element--with-frame {
|
1552
|
+
padding-top: 0;
|
1553
|
+
}
|
1554
|
+
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top {
|
1555
|
+
margin-top: 0;
|
1556
|
+
padding-top: var(--sd-base-vertical-padding);
|
1557
|
+
padding-bottom: var(--sd-base-vertical-padding);
|
1558
|
+
}
|
1559
|
+
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top:after {
|
1560
|
+
bottom: calc(-1 * var(--sd-base-vertical-padding));
|
1561
|
+
left: calc(-1 * var(--sd-base-padding));
|
1562
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
.sd-element--expanded > .sd-element__header,
|
1566
|
+
.sd-element--collapsed > .sd-element__header {
|
1567
|
+
cursor: pointer;
|
1568
|
+
}
|
1569
|
+
|
1570
|
+
.sd-element--collapsed > .sd-element__header {
|
1571
|
+
padding: calc(0 * var(--base-unit, 8px)) var(--sd-base-padding);
|
1572
|
+
box-sizing: border-box;
|
1573
|
+
background-color: var(--background, #fff);
|
1574
|
+
}
|
1575
|
+
.sd-element--collapsed.sd-element--complex > .sd-element__header--location-top:after {
|
1576
|
+
display: none;
|
1577
|
+
}
|
1578
|
+
.sd-element--collapsed.sd-element--with-frame {
|
1579
|
+
padding-top: 0;
|
1580
|
+
padding-bottom: 0;
|
1581
|
+
}
|
1582
|
+
.sd-element--collapsed.sd-element--with-frame > .sd-element__header {
|
1583
|
+
padding-top: calc(2 * var(--base-unit, 8px));
|
1584
|
+
padding-bottom: calc(2 * var(--base-unit, 8px));
|
1585
|
+
border-radius: var(--sjs-panel-corner-radius, var(--sjs-corner-radius, 4px));
|
1586
|
+
}
|
1587
|
+
.sd-element--collapsed.sd-element--with-frame > .sd-element__header--location-top {
|
1588
|
+
margin-top: 0;
|
1589
|
+
}
|
1590
|
+
.sd-element--collapsed > .sd-element__header:focus-within, .sd-element--collapsed > .sd-element__header:hover {
|
1591
|
+
background-color: var(--background-dim-light, #f9f9f9);
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
.sd-element--collapsed > .sd-element__header {
|
1595
|
+
margin-left: calc(-1 * var(--sd-base-padding));
|
1596
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
1597
|
+
}
|
1598
|
+
|
1599
|
+
.sd-element--nested.sd-element--complex > .sd-element__header--location-top:after {
|
1600
|
+
bottom: calc(-0.5 * var(--sd-base-vertical-padding));
|
1601
|
+
}
|
1602
|
+
.sd-element--nested.sd-element--collapsed > .sd-element__header:hover, .sd-element--nested.sd-element--collapsed > .sd-element__header:focus-within {
|
1603
|
+
box-shadow: 0 calc(-2 * var(--base-unit, 8px)) 0 0 var(--background-dim-light, #f9f9f9), 0 calc(2 * var(--base-unit, 8px)) 0 var(--background-dim-light, #f9f9f9);
|
1604
|
+
}
|
1605
|
+
.sd-element--nested.sd-panel, .sd-element--nested.sd-question--paneldynamic {
|
1606
|
+
border: 1px solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
1607
|
+
border-radius: calc(var(--sjs-corner-radius, 4px) - 4px);
|
1608
|
+
box-sizing: border-box;
|
1609
|
+
padding-left: var(--sd-base-padding);
|
1610
|
+
padding-right: var(--sd-base-padding);
|
1611
|
+
}
|
1612
|
+
.sd-element--nested.sd-panel > .sd-element__header--location-top, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top {
|
1613
|
+
padding-top: calc(0.5 * var(--sd-base-vertical-padding));
|
1614
|
+
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1615
|
+
}
|
1616
|
+
.sd-element--nested.sd-panel > .sd-element__header--location-top:after, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top:after {
|
1617
|
+
left: calc(-1 * var(--sd-base-padding));
|
1618
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
1619
|
+
bottom: calc(-0.5 * var(--sd-base-vertical-padding));
|
1620
|
+
}
|
1621
|
+
.sd-element--nested.sd-panel > .sd-question__erbox--outside-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--outside-question {
|
1622
|
+
margin-left: calc(-1 * var(--sd-base-padding));
|
1623
|
+
margin-right: calc(-1 * var(--sd-base-padding));
|
1624
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
1625
|
+
}
|
1626
|
+
.sd-element--nested.sd-panel > .sd-question__erbox--below-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--below-question {
|
1627
|
+
bottom: 0;
|
1628
|
+
margin-top: 0;
|
1629
|
+
}
|
1630
|
+
.sd-element--nested.sd-panel.sd-element--collapsed > .sd-element__header--location-top:after, .sd-element--nested.sd-question--paneldynamic.sd-element--collapsed > .sd-element__header--location-top:after {
|
1631
|
+
display: none;
|
1632
|
+
}
|
1633
|
+
.sd-element--nested.sd-panel.sd-element--collapsed > .sd-element__header--location-top:hover, .sd-element--nested.sd-panel.sd-element--collapsed > .sd-element__header--location-top:focus-within, .sd-element--nested.sd-question--paneldynamic.sd-element--collapsed > .sd-element__header--location-top:hover, .sd-element--nested.sd-question--paneldynamic.sd-element--collapsed > .sd-element__header--location-top:focus-within {
|
1634
|
+
box-shadow: none;
|
1635
|
+
}
|
1636
|
+
.sd-element--nested > .sd-panel__content {
|
1637
|
+
padding-bottom: var(--sd-base-padding);
|
1638
|
+
}
|
1639
|
+
|
1640
|
+
.sd-element--with-frame.sd-element--compact {
|
1641
|
+
border: 1px solid var(--sjs-border-inside, var(--border-inside, rgba(0, 0, 0, 0.16)));
|
1642
|
+
border-radius: var(--sjs-panel-corner-radius, var(--sjs-corner-radius, 4px));
|
1643
|
+
box-shadow: none;
|
1644
|
+
}
|
1645
|
+
|
1646
|
+
.svc-question__content .sd-element--complex > .sd-element__header--location-top {
|
1647
|
+
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1648
|
+
padding-top: 0;
|
1649
|
+
}
|
1650
|
+
.svc-question__content .sd-element--complex > .sd-element__header--location-top:after {
|
1651
|
+
display: none;
|
1652
|
+
}
|
1653
|
+
|
1638
1654
|
.sd-question {
|
1639
1655
|
position: relative;
|
1640
1656
|
}
|
1641
1657
|
|
1642
1658
|
.sd-question__description {
|
1643
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1659
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1644
1660
|
}
|
1645
1661
|
|
1646
1662
|
.sd-question__erbox {
|
1647
1663
|
padding: calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px));
|
1648
|
-
border-radius: calc(
|
1664
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
1649
1665
|
font-weight: 600;
|
1650
1666
|
line-height: calc(2 * var(--base-unit, 8px));
|
1651
|
-
font-size: calc(
|
1667
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1652
1668
|
white-space: normal;
|
1653
1669
|
text-align: left;
|
1654
1670
|
}
|
@@ -1661,7 +1677,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1661
1677
|
}
|
1662
1678
|
|
1663
1679
|
.sd-question__erbox--above-question {
|
1664
|
-
border-radius: calc(
|
1680
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px)) calc(1 * var(--sjs-corner-radius, 4px)) 0 0;
|
1665
1681
|
margin-bottom: calc(var(--sd-base-vertical-padding) - var(--base-unit, 8px));
|
1666
1682
|
}
|
1667
1683
|
|
@@ -1673,7 +1689,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1673
1689
|
position: relative;
|
1674
1690
|
margin-top: 0;
|
1675
1691
|
bottom: calc(-1 * var(--sd-base-padding));
|
1676
|
-
border-radius: 0 0 calc(
|
1692
|
+
border-radius: 0 0 calc(1 * var(--sjs-corner-radius, 4px)) calc(1 * var(--sjs-corner-radius, 4px));
|
1677
1693
|
}
|
1678
1694
|
|
1679
1695
|
.sd-root-modern--mobile .sd-question__erbox--below-question {
|
@@ -1688,6 +1704,30 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1688
1704
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1689
1705
|
}
|
1690
1706
|
|
1707
|
+
.sd-question__header--location--bottom {
|
1708
|
+
padding-top: calc(0.5 * var(--sd-base-vertical-padding));
|
1709
|
+
}
|
1710
|
+
|
1711
|
+
.svc-logic-question-value > .sd-question__erbox--outside-question,
|
1712
|
+
.sd-element--with-frame > .sd-question__erbox--outside-question {
|
1713
|
+
margin-left: calc(-1 * var(--sd-base-padding));
|
1714
|
+
margin-right: calc(-1 * var(--sd-base-padding));
|
1715
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
1716
|
+
}
|
1717
|
+
.svc-logic-question-value > .sd-question__erbox--above-question,
|
1718
|
+
.sd-element--with-frame > .sd-question__erbox--above-question {
|
1719
|
+
margin-top: calc(-1 * var(--sd-base-padding));
|
1720
|
+
margin-bottom: var(--sd-base-vertical-padding);
|
1721
|
+
}
|
1722
|
+
.svc-logic-question-value > .sd-question__header--location-top,
|
1723
|
+
.sd-element--with-frame > .sd-question__header--location-top {
|
1724
|
+
margin-top: calc(-1 * var(--base-unit, 8px));
|
1725
|
+
}
|
1726
|
+
.svc-logic-question-value > .sd-question__content > .sd-question__header--location--bottom,
|
1727
|
+
.sd-element--with-frame > .sd-question__content > .sd-question__header--location--bottom {
|
1728
|
+
margin-bottom: calc(-1 * var(--base-unit, 8px));
|
1729
|
+
}
|
1730
|
+
|
1691
1731
|
.sd-scrollable .sd-question__content {
|
1692
1732
|
overflow-x: auto;
|
1693
1733
|
padding: calc(2 * var(--base-unit, 8px)) 0;
|
@@ -1718,7 +1758,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1718
1758
|
}
|
1719
1759
|
|
1720
1760
|
.sd-question__comment-area {
|
1721
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1761
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1722
1762
|
margin-top: calc(2 * var(--base-unit, 8px));
|
1723
1763
|
display: flex;
|
1724
1764
|
flex-direction: column;
|
@@ -1753,13 +1793,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1753
1793
|
text-align: left;
|
1754
1794
|
}
|
1755
1795
|
|
1756
|
-
.sd-question--complex .sd-question__erbox--above-question {
|
1757
|
-
margin-top: 0;
|
1758
|
-
}
|
1759
|
-
.sd-question--complex .sd-question__erbox--above-question ~ .sd-question__header--location-top {
|
1760
|
-
padding-top: calc(1 * var(--base-unit, 8px));
|
1761
|
-
}
|
1762
|
-
|
1763
1796
|
.sd-question--empty.sd-question--complex > .sd-question__header--location-top {
|
1764
1797
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1765
1798
|
}
|
@@ -1776,7 +1809,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1776
1809
|
justify-content: center;
|
1777
1810
|
min-height: calc(24 * var(--base-unit, 8px));
|
1778
1811
|
line-height: calc(3 * var(--base-unit, 8px));
|
1779
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1812
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1780
1813
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1781
1814
|
}
|
1782
1815
|
.sd-question__placeholder > div .sv-string-viewer, .sd-question__placeholder > span .sv-string-viewer {
|
@@ -1808,12 +1841,12 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1808
1841
|
padding: calc(1.5 * var(--base-unit, 8px)) calc(2 * var(--base-unit, 8px));
|
1809
1842
|
line-height: calc(3 * var(--base-unit, 8px));
|
1810
1843
|
font-family: var(--font-family, var(--font-family));
|
1811
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1844
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1812
1845
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1813
1846
|
background-color: var(--sjs-editor-background, var(--background-dim-light, #f9f9f9));
|
1814
1847
|
box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.15);
|
1815
1848
|
border: none;
|
1816
|
-
border-radius:
|
1849
|
+
border-radius: var(--sjs-editor-corner-radius, var(--sjs-corner-radius, 4px));
|
1817
1850
|
text-align: start;
|
1818
1851
|
}
|
1819
1852
|
|
@@ -1868,7 +1901,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1868
1901
|
padding: 0px;
|
1869
1902
|
font-family: var(--font-family);
|
1870
1903
|
line-height: calc(3 * var(--base-unit, 8px));
|
1871
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1904
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1872
1905
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1873
1906
|
position: absolute;
|
1874
1907
|
inset-inline-end: calc(2 * var(--base-unit, 8px));
|
@@ -1930,13 +1963,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1930
1963
|
.sd-panel {
|
1931
1964
|
position: relative;
|
1932
1965
|
}
|
1933
|
-
.sd-panel .sd-row {
|
1934
|
-
margin-top: 0;
|
1935
|
-
}
|
1936
|
-
.sd-panel :not(.svc-row) > .sd-row--multiple {
|
1937
|
-
row-gap: 0;
|
1938
|
-
}
|
1939
1966
|
|
1967
|
+
.sd-panel.sd-panel--as-page > .sd-panel__content {
|
1968
|
+
padding-top: 0;
|
1969
|
+
}
|
1940
1970
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header {
|
1941
1971
|
padding-top: 0;
|
1942
1972
|
padding-bottom: 0;
|
@@ -1946,7 +1976,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1946
1976
|
}
|
1947
1977
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__title {
|
1948
1978
|
position: static;
|
1949
|
-
font-size: calc(
|
1979
|
+
font-size: calc(1.5 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1950
1980
|
line-height: calc(4 * var(--base-unit, 8px));
|
1951
1981
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
1952
1982
|
font-weight: 700;
|
@@ -1957,7 +1987,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1957
1987
|
}
|
1958
1988
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__description {
|
1959
1989
|
position: static;
|
1960
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
1990
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
1961
1991
|
line-height: calc(3 * var(--base-unit, 8px));
|
1962
1992
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
1963
1993
|
font-weight: 400;
|
@@ -1978,6 +2008,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1978
2008
|
padding-top: calc(0.5 * var(--sd-base-vertical-padding));
|
1979
2009
|
}
|
1980
2010
|
|
2011
|
+
.sd-panel__content {
|
2012
|
+
padding-top: var(--sd-base-vertical-padding);
|
2013
|
+
}
|
2014
|
+
|
2015
|
+
.svc-question__content .sd-panel__content {
|
2016
|
+
gap: 0;
|
2017
|
+
padding-top: 0;
|
2018
|
+
}
|
2019
|
+
|
1981
2020
|
.sjs_sp_placeholder {
|
1982
2021
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1983
2022
|
}
|
@@ -2002,7 +2041,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2002
2041
|
}
|
2003
2042
|
|
2004
2043
|
.sd-checkbox__decorator {
|
2005
|
-
border-radius:
|
2044
|
+
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
2006
2045
|
}
|
2007
2046
|
|
2008
2047
|
.sd-checkbox__svg {
|
@@ -2050,7 +2089,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2050
2089
|
background: transparent;
|
2051
2090
|
border: none;
|
2052
2091
|
line-height: calc(3 * var(--base-unit, 8px));
|
2053
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
2092
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2054
2093
|
font-family: var(--font-family, var(--font-family));
|
2055
2094
|
font-weight: 600;
|
2056
2095
|
padding: calc(1 * var(--base-unit, 8px)) 0;
|
@@ -2069,7 +2108,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2069
2108
|
width: calc(2 * var(--base-unit, 8px));
|
2070
2109
|
border: 1px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
2071
2110
|
box-sizing: border-box;
|
2072
|
-
border-radius:
|
2111
|
+
border-radius: calc(1.25 * var(--base-unit, 8px));
|
2073
2112
|
}
|
2074
2113
|
|
2075
2114
|
.sd-matrixdynamic__placeholder .sd-matrixdynamic__add-btn {
|
@@ -2121,7 +2160,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2121
2160
|
|
2122
2161
|
.sd-table__cell {
|
2123
2162
|
font-weight: normal;
|
2124
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
2163
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2125
2164
|
line-height: calc(3 * var(--base-unit, 8px));
|
2126
2165
|
padding: calc(1 * var(--base-unit, 8px));
|
2127
2166
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
@@ -2326,6 +2365,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2326
2365
|
table-layout: fixed;
|
2327
2366
|
}
|
2328
2367
|
|
2368
|
+
.sd-table__cell--detail-panel .sd-panel__content {
|
2369
|
+
padding-top: calc(1 * var(--base-unit, 8px));
|
2370
|
+
}
|
2371
|
+
|
2329
2372
|
.sd-body--responsive .sd-page {
|
2330
2373
|
padding: calc(5 * var(--base-unit, 8px)) var(--sd-page-vertical-padding) calc(2 * var(--base-unit, 8px));
|
2331
2374
|
}
|
@@ -2349,7 +2392,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2349
2392
|
|
2350
2393
|
.sd-page .sd-page__title {
|
2351
2394
|
position: static;
|
2352
|
-
font-size: calc(
|
2395
|
+
font-size: calc(1.5 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2353
2396
|
line-height: calc(4 * var(--base-unit, 8px));
|
2354
2397
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
2355
2398
|
font-weight: 700;
|
@@ -2358,7 +2401,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2358
2401
|
|
2359
2402
|
.sd-page .sd-page__description {
|
2360
2403
|
position: static;
|
2361
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
2404
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2362
2405
|
line-height: calc(3 * var(--base-unit, 8px));
|
2363
2406
|
margin: calc(0.5 * var(--base-unit, 8px)) 0px;
|
2364
2407
|
font-weight: 400;
|
@@ -2370,22 +2413,29 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2370
2413
|
flex-direction: row;
|
2371
2414
|
width: 100%;
|
2372
2415
|
box-sizing: border-box;
|
2373
|
-
margin-top:
|
2416
|
+
margin-top: var(--sd-base-vertical-padding);
|
2374
2417
|
}
|
2375
2418
|
|
2376
|
-
.sd-
|
2419
|
+
.sd-row:first-of-type {
|
2420
|
+
margin-top: 0;
|
2421
|
+
}
|
2422
|
+
|
2423
|
+
.sd-row.sd-page__row {
|
2377
2424
|
margin-top: calc(2 * var(--base-unit, 8px));
|
2378
2425
|
}
|
2426
|
+
.sd-row.sd-page__row.sd-row--compact {
|
2427
|
+
margin-top: var(--sd-base-vertical-padding);
|
2428
|
+
}
|
2379
2429
|
|
2380
|
-
.sd-page__row.sd-row--multiple,
|
2430
|
+
.sd-page__row.sd-row--multiple:not(.sd-row--compact),
|
2381
2431
|
.svc-row > .sd-row--multiple {
|
2382
2432
|
background: var(--sjs-question-background, var(--background, #fff));
|
2383
2433
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
2384
|
-
border-radius: calc(
|
2434
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
2385
2435
|
}
|
2386
2436
|
|
2387
2437
|
:not(.svc-row) > .sd-row--multiple {
|
2388
|
-
row-gap:
|
2438
|
+
row-gap: var(--sd-base-vertical-padding);
|
2389
2439
|
margin-left: calc(-1 * var(--sd-base-padding));
|
2390
2440
|
width: calc(100% + var(--sd-base-padding));
|
2391
2441
|
flex-wrap: wrap;
|
@@ -2396,10 +2446,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2396
2446
|
}
|
2397
2447
|
|
2398
2448
|
:not(.svc-row) > .sd-page__row.sd-row--multiple {
|
2399
|
-
padding:
|
2449
|
+
padding: var(--sd-base-vertical-padding) var(--sd-base-padding) var(--sd-base-padding) 0;
|
2400
2450
|
margin-left: 0;
|
2401
2451
|
width: 100%;
|
2402
2452
|
}
|
2453
|
+
:not(.svc-row) > .sd-page__row.sd-row--multiple.sd-row--compact {
|
2454
|
+
padding: 0;
|
2455
|
+
width: calc(100% + var(--sd-base-padding));
|
2456
|
+
margin-left: calc(-1 * var(--sd-base-padding));
|
2457
|
+
}
|
2403
2458
|
|
2404
2459
|
.svc-row .sd-row--multiple {
|
2405
2460
|
overflow: auto;
|
@@ -2410,7 +2465,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2410
2465
|
gap: calc(1 * var(--base-unit, 8px));
|
2411
2466
|
}
|
2412
2467
|
|
2413
|
-
:not(.svc-row--ghost) > .sd-row {
|
2468
|
+
.svc-row:not(.svc-row--ghost) > .sd-row {
|
2414
2469
|
min-height: 50px;
|
2415
2470
|
}
|
2416
2471
|
|
@@ -2460,13 +2515,13 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2460
2515
|
flex-grow: 1;
|
2461
2516
|
}
|
2462
2517
|
.sd-header__text h3 {
|
2463
|
-
font-size: calc(
|
2518
|
+
font-size: calc(2 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2464
2519
|
font-weight: 700;
|
2465
2520
|
line-height: calc(5 * var(--base-unit, 8px));
|
2466
2521
|
color: var(--primary, #19b394);
|
2467
2522
|
}
|
2468
2523
|
.sd-header__text h5 {
|
2469
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
2524
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2470
2525
|
font-weight: 400;
|
2471
2526
|
line-height: calc(3 * var(--base-unit, 8px));
|
2472
2527
|
}
|
@@ -2517,11 +2572,17 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2517
2572
|
font-family: var(--font-family, var(--font-family));
|
2518
2573
|
font-style: normal;
|
2519
2574
|
font-weight: normal;
|
2575
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2576
|
+
line-height: calc(3 * var(--base-unit, 8px));
|
2520
2577
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2521
2578
|
white-space: normal;
|
2522
2579
|
word-break: break-word;
|
2523
2580
|
}
|
2524
2581
|
|
2582
|
+
.sd-element__header .sd-description {
|
2583
|
+
margin-top: calc(0.5 * var(--base-unit, 8px));
|
2584
|
+
}
|
2585
|
+
|
2525
2586
|
.sd-item {
|
2526
2587
|
padding: calc(1.5 * var(--base-unit, 8px)) 0;
|
2527
2588
|
}
|
@@ -2564,7 +2625,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2564
2625
|
font-style: normal;
|
2565
2626
|
font-weight: normal;
|
2566
2627
|
line-height: calc(3 * var(--base-unit, 8px));
|
2567
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
2628
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2568
2629
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2569
2630
|
white-space: normal;
|
2570
2631
|
word-break: break-word;
|
@@ -2634,7 +2695,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2634
2695
|
}
|
2635
2696
|
|
2636
2697
|
.sd-checkbox__decorator {
|
2637
|
-
border-radius:
|
2698
|
+
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
2638
2699
|
}
|
2639
2700
|
|
2640
2701
|
.sd-checkbox__svg {
|
@@ -2717,6 +2778,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2717
2778
|
text-align: left;
|
2718
2779
|
}
|
2719
2780
|
|
2781
|
+
:root {
|
2782
|
+
--sd-rating-bad-color: var(--red, #e60a3e);
|
2783
|
+
--sd-rating-normal-color: var(--yellow, #ff9814);
|
2784
|
+
--sd-rating-good-color: var(--green, #19b394);
|
2785
|
+
--sd-rating-bad-color-light: var(--red-light, rgba(230, 10, 62, 0.1));
|
2786
|
+
--sd-rating-normal-color-light: var(--yellow-light, rgba(255, 152, 20, 0.1));
|
2787
|
+
--sd-rating-good-color-light: var(--green-light, rgba(25, 179, 148, 0.1));
|
2788
|
+
}
|
2789
|
+
|
2720
2790
|
.sd-rating {
|
2721
2791
|
overflow-x: auto;
|
2722
2792
|
min-height: calc(8 * var(--base-unit, 8px));
|
@@ -2751,7 +2821,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2751
2821
|
border: 2px solid var(--background, #fff);
|
2752
2822
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2753
2823
|
fill: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2754
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
2824
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2755
2825
|
}
|
2756
2826
|
|
2757
2827
|
.sd-rating__item--fixed-size {
|
@@ -2832,6 +2902,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2832
2902
|
.sd-rating__item-smiley--error {
|
2833
2903
|
background-color: var(--red-light, rgba(230, 10, 62, 0.1));
|
2834
2904
|
border-color: transparent;
|
2905
|
+
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
2906
|
+
}
|
2907
|
+
.sd-rating__item-smiley--error.sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected) {
|
2908
|
+
opacity: initial;
|
2835
2909
|
}
|
2836
2910
|
|
2837
2911
|
.sd-rating__item-smiley.sd-rating__item-smiley--disabled {
|
@@ -2845,6 +2919,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2845
2919
|
|
2846
2920
|
.sd-rating__item-smiley--allowhover:hover {
|
2847
2921
|
background-color: var(--sjs-general-backcolor-dark, rgb(248, 248, 248));
|
2922
|
+
border-color: var(--sjs-border-default, var(--border, #d6d6d6));
|
2848
2923
|
}
|
2849
2924
|
|
2850
2925
|
.sd-rating__item-smiley:focus-within {
|
@@ -2862,6 +2937,21 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2862
2937
|
box-shadow: inset 0 0 0 2px var(--background, #fff);
|
2863
2938
|
}
|
2864
2939
|
|
2940
|
+
.sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected) {
|
2941
|
+
opacity: 0.25;
|
2942
|
+
}
|
2943
|
+
.sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected).sd-rating__item-smiley--allowhover:hover {
|
2944
|
+
opacity: 0.5;
|
2945
|
+
}
|
2946
|
+
|
2947
|
+
.sd-rating__item-smiley--rate-colored:not(.sd-rating__item-smiley--selected).sd-rating__item-smiley--allowhover:hover {
|
2948
|
+
opacity: 0.5;
|
2949
|
+
}
|
2950
|
+
|
2951
|
+
.sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected):focus-within {
|
2952
|
+
opacity: 1;
|
2953
|
+
}
|
2954
|
+
|
2865
2955
|
.sd-rating__item-star {
|
2866
2956
|
position: relative;
|
2867
2957
|
background: var(--background, #fff);
|
@@ -2942,7 +3032,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
2942
3032
|
}
|
2943
3033
|
|
2944
3034
|
.sd-rating__item-text.sd-rating__item-text {
|
2945
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3035
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
2946
3036
|
line-height: calc(3 * var(--base-unit, 8px));
|
2947
3037
|
display: inline-block;
|
2948
3038
|
}
|
@@ -3020,7 +3110,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3020
3110
|
.sd-dropdown option {
|
3021
3111
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3022
3112
|
font-family: var(--font-family, var(--font-family));
|
3023
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3113
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3024
3114
|
}
|
3025
3115
|
|
3026
3116
|
.sd-dropdown__value {
|
@@ -3030,7 +3120,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3030
3120
|
text-overflow: ellipsis;
|
3031
3121
|
white-space: nowrap;
|
3032
3122
|
font-family: var(--font-family, var(--font-family));
|
3033
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3123
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3034
3124
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3035
3125
|
position: relative;
|
3036
3126
|
}
|
@@ -3067,7 +3157,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3067
3157
|
outline: none;
|
3068
3158
|
padding: 0;
|
3069
3159
|
font-family: var(--font-family, var(--font-family));
|
3070
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3160
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3071
3161
|
background-color: transparent;
|
3072
3162
|
overflow: hidden;
|
3073
3163
|
text-overflow: ellipsis;
|
@@ -3083,7 +3173,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3083
3173
|
|
3084
3174
|
.sd-dropdown__filter-string-input::placeholder {
|
3085
3175
|
font-family: var(--font-family, var(--font-family));
|
3086
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3176
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3087
3177
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3088
3178
|
width: 100%;
|
3089
3179
|
max-width: 100%;
|
@@ -3145,7 +3235,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3145
3235
|
height: calc(3 * var(--base-unit, 8px));
|
3146
3236
|
padding: calc(1 * var(--base-unit, 8px)) calc(1.5 * var(--base-unit, 8px));
|
3147
3237
|
background-color: var(--primary, #19b394);
|
3148
|
-
border-radius: calc(0.
|
3238
|
+
border-radius: calc(0.5 * var(--sjs-corner-radius, 4px));
|
3149
3239
|
}
|
3150
3240
|
|
3151
3241
|
.sv-tagbox__item-text {
|
@@ -3246,7 +3336,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3246
3336
|
}
|
3247
3337
|
.sd-imagepicker__item img,
|
3248
3338
|
.sd-imagepicker__item .sd-imagepicker__image-container > div {
|
3249
|
-
border-radius: calc(
|
3339
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
3250
3340
|
background-color: var(--background-dim-light, #f9f9f9);
|
3251
3341
|
}
|
3252
3342
|
|
@@ -3294,7 +3384,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3294
3384
|
width: 100%;
|
3295
3385
|
height: 100%;
|
3296
3386
|
background-color: var(--red-light, rgba(230, 10, 62, 0.1));
|
3297
|
-
border-radius: calc(
|
3387
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
3298
3388
|
background: linear-gradient(0deg, var(--red-light, rgba(230, 10, 62, 0.1)), var(--red-light, rgba(230, 10, 62, 0.1)));
|
3299
3389
|
}
|
3300
3390
|
|
@@ -3310,7 +3400,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3310
3400
|
}
|
3311
3401
|
|
3312
3402
|
.sd-imagepicker__text {
|
3313
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3403
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3314
3404
|
line-height: calc(3 * var(--base-unit, 8px));
|
3315
3405
|
margin-top: calc(1 * var(--base-unit, 8px));
|
3316
3406
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
@@ -3346,7 +3436,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3346
3436
|
.sd-image__image {
|
3347
3437
|
display: block;
|
3348
3438
|
max-width: 100%;
|
3349
|
-
border-radius: calc(
|
3439
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
3350
3440
|
}
|
3351
3441
|
|
3352
3442
|
.sd-image__image--adaptive {
|
@@ -3378,7 +3468,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3378
3468
|
|
3379
3469
|
.sd-expression {
|
3380
3470
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3381
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3471
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3382
3472
|
}
|
3383
3473
|
|
3384
3474
|
.sd-progress {
|
@@ -3399,7 +3489,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3399
3489
|
margin-top: calc(1 * var(--base-unit, 8px));
|
3400
3490
|
right: calc(3 * var(--base-unit, 8px));
|
3401
3491
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3402
|
-
font-size: calc(
|
3492
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3403
3493
|
line-height: calc(2 * var(--base-unit, 8px));
|
3404
3494
|
font-weight: 600;
|
3405
3495
|
}
|
@@ -3424,16 +3514,12 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3424
3514
|
border-radius: calc(12.5 * var(--base-unit, 8px));
|
3425
3515
|
}
|
3426
3516
|
|
3427
|
-
.sd-boolean.sd-boolean--indeterminate:hover {
|
3428
|
-
background-color: var(--sjs-general-dim-backcolor-dark, rgb(243, 243, 243));
|
3429
|
-
}
|
3430
|
-
|
3431
3517
|
.sd-boolean__thumb,
|
3432
3518
|
.sd-boolean__label {
|
3433
3519
|
display: block;
|
3434
3520
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3435
3521
|
font-family: var(--font-family, var(--font-family));
|
3436
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3522
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3437
3523
|
line-height: calc(3 * var(--base-unit, 8px));
|
3438
3524
|
padding: calc(1 * var(--base-unit, 8px)) calc(3 * var(--base-unit, 8px));
|
3439
3525
|
}
|
@@ -3455,6 +3541,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3455
3541
|
box-shadow: inset 0 0 0 2px var(--primary, #19b394);
|
3456
3542
|
}
|
3457
3543
|
|
3544
|
+
.sd-boolean.sd-boolean--indeterminate .sd-boolean__switch {
|
3545
|
+
display: none;
|
3546
|
+
}
|
3547
|
+
|
3458
3548
|
.sd-boolean--indeterminate .sd-boolean__thumb {
|
3459
3549
|
display: none;
|
3460
3550
|
}
|
@@ -3470,6 +3560,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3470
3560
|
font-weight: 600;
|
3471
3561
|
margin-left: 0%;
|
3472
3562
|
transform: translateX(0);
|
3563
|
+
z-index: 2;
|
3473
3564
|
}
|
3474
3565
|
|
3475
3566
|
.sd-boolean--checked .sd-boolean__thumb {
|
@@ -3477,12 +3568,24 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3477
3568
|
transform: translateX(-100%);
|
3478
3569
|
}
|
3479
3570
|
|
3571
|
+
.sd-boolean--disabled {
|
3572
|
+
pointer-events: none;
|
3573
|
+
}
|
3480
3574
|
.sd-boolean--disabled .sd-boolean__thumb,
|
3481
3575
|
.sd-boolean--disabled .sd-boolean__label {
|
3482
3576
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3483
3577
|
opacity: 0.25;
|
3484
3578
|
}
|
3485
3579
|
|
3580
|
+
.sd-boolean__thumb-ghost {
|
3581
|
+
z-index: 1;
|
3582
|
+
}
|
3583
|
+
|
3584
|
+
.sd-boolean.sd-boolean--allowhover .sd-boolean__thumb-ghost:hover {
|
3585
|
+
background-color: var(--sjs-general-dim-backcolor-dark, rgb(243, 243, 243));
|
3586
|
+
border-radius: calc(12.5 * var(--base-unit, 8px));
|
3587
|
+
}
|
3588
|
+
|
3486
3589
|
.svc-question__content .sd-boolean:not(.sd-boolean--checked):not(.sd-boolean--indeterminate) .sd-boolean__label:nth-of-type(1),
|
3487
3590
|
.svc-question__content .sd-boolean--checked .sd-boolean__label:nth-of-type(2) {
|
3488
3591
|
color: var(--primary, #19b394);
|
@@ -3586,7 +3689,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3586
3689
|
}
|
3587
3690
|
|
3588
3691
|
.sd-paneldynamic__progress-text {
|
3589
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3692
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3590
3693
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3591
3694
|
margin: 0;
|
3592
3695
|
margin-right: calc(3 * var(--base-unit, 8px));
|
@@ -3676,7 +3779,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3676
3779
|
background-color: transparent;
|
3677
3780
|
cursor: pointer;
|
3678
3781
|
font-family: var(--font-family, var(--font-family));
|
3679
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3782
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3680
3783
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3681
3784
|
overflow-x: hidden;
|
3682
3785
|
white-space: nowrap;
|
@@ -3705,7 +3808,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3705
3808
|
.sd-file {
|
3706
3809
|
min-height: calc(36 * var(--base-unit, 8px));
|
3707
3810
|
position: relative;
|
3708
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
3811
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3709
3812
|
line-height: calc(3 * var(--base-unit, 8px));
|
3710
3813
|
}
|
3711
3814
|
.sd-file .sv-action-bar {
|
@@ -3841,7 +3944,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3841
3944
|
.sd-file__sign {
|
3842
3945
|
margin-top: calc(1 * var(--base-unit, 8px));
|
3843
3946
|
text-align: center;
|
3844
|
-
font-size: calc(
|
3947
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3845
3948
|
line-height: calc(2 * var(--base-unit, 8px));
|
3846
3949
|
}
|
3847
3950
|
.sd-file__sign a {
|
@@ -3965,12 +4068,12 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3965
4068
|
padding: calc(2 * var(--base-unit, 8px)) calc(6 * var(--base-unit, 8px));
|
3966
4069
|
background: var(--background, #fff);
|
3967
4070
|
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
|
3968
|
-
border-radius: calc(
|
4071
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
3969
4072
|
cursor: pointer;
|
3970
4073
|
font-family: var(--font-family, var(--font-family));
|
3971
4074
|
font-style: normal;
|
3972
4075
|
font-weight: 600;
|
3973
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
4076
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
3974
4077
|
line-height: calc(3 * var(--base-unit, 8px));
|
3975
4078
|
text-align: center;
|
3976
4079
|
color: var(--primary, #19b394);
|
@@ -4154,7 +4257,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4154
4257
|
font-weight: 600;
|
4155
4258
|
font-family: var(--font-family, var(--font-family));
|
4156
4259
|
font-style: normal;
|
4157
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
4260
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
4158
4261
|
line-height: calc(3 * var(--base-unit, 8px));
|
4159
4262
|
outline: none;
|
4160
4263
|
}
|
@@ -4264,7 +4367,7 @@ svg.sd-action--icon {
|
|
4264
4367
|
height: auto;
|
4265
4368
|
}
|
4266
4369
|
.sd-completedpage h3 {
|
4267
|
-
font-size: calc(
|
4370
|
+
font-size: calc(1.5 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
4268
4371
|
}
|
4269
4372
|
|
4270
4373
|
.sd-completedpage:before,
|
@@ -4331,14 +4434,14 @@ svg.sd-action--icon {
|
|
4331
4434
|
|
4332
4435
|
.sd-progress-buttons__page-title {
|
4333
4436
|
width: 100%;
|
4334
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
4437
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
4335
4438
|
font-weight: 600;
|
4336
4439
|
line-height: calc(3 * var(--base-unit, 8px));
|
4337
4440
|
}
|
4338
4441
|
|
4339
4442
|
.sd-progress-buttons__page-description {
|
4340
4443
|
width: 100%;
|
4341
|
-
font-size: calc(
|
4444
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
4342
4445
|
line-height: calc(2 * var(--base-unit, 8px));
|
4343
4446
|
font-weight: 600;
|
4344
4447
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
@@ -4363,7 +4466,7 @@ svg.sd-action--icon {
|
|
4363
4466
|
.sv_progress-toc .sv-list__item-body {
|
4364
4467
|
padding-inline-start: calc(2 * var(--base-unit, 8px));
|
4365
4468
|
padding-inline-end: calc(2 * var(--base-unit, 8px));
|
4366
|
-
border-radius:
|
4469
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
4367
4470
|
padding-top: calc(1.5 * var(--base-unit, 8px));
|
4368
4471
|
padding-bottom: calc(1.5 * var(--base-unit, 8px));
|
4369
4472
|
}
|
@@ -4385,12 +4488,17 @@ svg.sd-action--icon {
|
|
4385
4488
|
padding: 0;
|
4386
4489
|
}
|
4387
4490
|
.sd-list__item.sd-list__item .sd-list__item-body {
|
4388
|
-
padding-
|
4389
|
-
|
4390
|
-
|
4391
|
-
font-size: calc(2 * var(--base-unit, 8px));
|
4491
|
+
padding-block: calc(1.5 * var(--base-unit, 8px));
|
4492
|
+
border-radius: calc(1 * var(--sjs-corner-radius, 4px));
|
4493
|
+
font-size: calc(1 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
4392
4494
|
line-height: calc(3 * var(--base-unit, 8px));
|
4393
|
-
|
4495
|
+
}
|
4496
|
+
|
4497
|
+
.sd-list__item.sd-list__item--focused:not(.sd-list__item--selected) {
|
4498
|
+
outline: none;
|
4499
|
+
}
|
4500
|
+
.sd-list__item.sd-list__item--focused:not(.sd-list__item--selected) .sd-list__item-body {
|
4501
|
+
padding-block: calc(1.25 * var(--base-unit, 8px));
|
4394
4502
|
}
|
4395
4503
|
|
4396
4504
|
.sd-timer {
|
@@ -4462,7 +4570,7 @@ svg.sd-action--icon {
|
|
4462
4570
|
.sd-timer__text--minor {
|
4463
4571
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4464
4572
|
font-weight: 600;
|
4465
|
-
font-size: calc(
|
4573
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
4466
4574
|
}
|
4467
4575
|
|
4468
4576
|
sv-components-container,
|
@@ -4560,9 +4668,9 @@ sv-components-container,
|
|
4560
4668
|
flex-direction: column;
|
4561
4669
|
}
|
4562
4670
|
.sd-root-modern.sd-root-modern--mobile .sd-multipletext__item-title {
|
4563
|
-
font-size:
|
4564
|
-
line-height:
|
4565
|
-
height:
|
4671
|
+
font-size: calc(0.75 * var(--sjs-font-size, calc(2 * var(--base-unit, 8px))));
|
4672
|
+
line-height: calc(2 * var(--base-unit, 8px));
|
4673
|
+
height: calc(2 * var(--base-unit, 8px));
|
4566
4674
|
padding-right: 0;
|
4567
4675
|
border-right: none;
|
4568
4676
|
margin-bottom: 0;
|