survey-react 1.11.13 → 1.12.1
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 +361 -339
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +27 -41
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +1 -1
- package/survey.min.css +1 -1
- package/survey.react.d.ts +169 -101
- package/survey.react.js +699 -331
- 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.
|
2
|
+
* surveyjs - Survey JavaScript library v1.12.1
|
3
3
|
* Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
|
4
4
|
* License: MIT (http://www.opensource.org/licenses/mit-license.php)
|
5
5
|
*/
|
@@ -542,7 +542,7 @@ sv-popup {
|
|
542
542
|
align-items: center;
|
543
543
|
justify-content: center;
|
544
544
|
background-color: var(--background-semitransparent, rgba(144, 144, 144, 0.5));
|
545
|
-
padding: calc(
|
545
|
+
padding: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(8 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
546
546
|
box-sizing: border-box;
|
547
547
|
}
|
548
548
|
|
@@ -947,24 +947,26 @@ sv-popup {
|
|
947
947
|
opacity: 0;
|
948
948
|
}
|
949
949
|
|
950
|
-
.sv-popup--
|
950
|
+
.sv-popup--enter {
|
951
951
|
animation-name: fadeIn;
|
952
952
|
animation-fill-mode: forwards;
|
953
953
|
animation-duration: 0.15s;
|
954
954
|
}
|
955
955
|
|
956
|
-
.sv-popup--modal.sv-popup--
|
956
|
+
.sv-popup--modal.sv-popup--enter {
|
957
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
957
958
|
animation-duration: 0.25s;
|
958
959
|
}
|
959
960
|
|
960
|
-
.sv-popup--
|
961
|
+
.sv-popup--leave {
|
961
962
|
animation-direction: reverse;
|
962
963
|
animation-name: fadeIn;
|
963
964
|
animation-fill-mode: forwards;
|
964
965
|
animation-duration: 0.15s;
|
965
966
|
}
|
966
967
|
|
967
|
-
.sv-popup--modal.sv-popup--
|
968
|
+
.sv-popup--modal.sv-popup--leave {
|
969
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
968
970
|
animation-duration: 0.25s;
|
969
971
|
}
|
970
972
|
|
@@ -972,14 +974,6 @@ sv-popup {
|
|
972
974
|
opacity: 0;
|
973
975
|
}
|
974
976
|
|
975
|
-
@keyframes modalMoveDown {
|
976
|
-
from {
|
977
|
-
transform: translateY(0);
|
978
|
-
}
|
979
|
-
to {
|
980
|
-
transform: translateY(64px);
|
981
|
-
}
|
982
|
-
}
|
983
977
|
@keyframes modalMoveUp {
|
984
978
|
from {
|
985
979
|
transform: translateY(64px);
|
@@ -988,17 +982,16 @@ sv-popup {
|
|
988
982
|
transform: translateY(0);
|
989
983
|
}
|
990
984
|
}
|
991
|
-
.sv-popup--modal.sv-popup--
|
992
|
-
animation-name: modalMoveDown;
|
993
|
-
animation-fill-mode: forwards;
|
994
|
-
animation-duration: 0.25s;
|
995
|
-
}
|
996
|
-
|
997
|
-
.sv-popup--modal.sv-popup--animate-enter .sv-popup__container {
|
985
|
+
.sv-popup--modal.sv-popup--leave .sv-popup__container, .sv-popup--modal.sv-popup--enter .sv-popup__container {
|
998
986
|
animation-name: modalMoveUp;
|
987
|
+
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
999
988
|
animation-fill-mode: forwards;
|
1000
989
|
animation-duration: 0.25s;
|
1001
990
|
}
|
991
|
+
.sv-popup--modal.sv-popup--leave .sv-popup__container {
|
992
|
+
animation-direction: reverse;
|
993
|
+
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
994
|
+
}
|
1002
995
|
|
1003
996
|
:root {
|
1004
997
|
--sjs-transition-duration: 150ms;
|
@@ -2135,15 +2128,33 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
|
|
2135
2128
|
@keyframes moveInWithOverflow {
|
2136
2129
|
from {
|
2137
2130
|
overflow: hidden;
|
2138
|
-
height:
|
2131
|
+
height: var(--animation-height-from);
|
2132
|
+
margin-top: 0;
|
2133
|
+
margin-bottom: 0;
|
2134
|
+
padding-top: 0;
|
2135
|
+
padding-bottom: 0;
|
2136
|
+
border-top-width: 0;
|
2137
|
+
border-bottom-width: 0;
|
2139
2138
|
}
|
2140
2139
|
99% {
|
2141
2140
|
overflow: hidden;
|
2142
|
-
|
2141
|
+
margin-top: var(--animation-margin-top);
|
2142
|
+
margin-bottom: var(--animation-margin-bottom);
|
2143
|
+
padding-top: var(--animation-padding-top);
|
2144
|
+
padding-bottom: var(--animation-padding-bottom);
|
2145
|
+
border-top-width: var(--animation-border-top-width);
|
2146
|
+
border-bottom-width: var(--animation-border-bottom-width);
|
2147
|
+
height: var(--animation-height-to);
|
2143
2148
|
}
|
2144
2149
|
to {
|
2145
2150
|
overflow: visible;
|
2146
|
-
|
2151
|
+
margin-top: var(--animation-margin-top);
|
2152
|
+
margin-bottom: var(--animation-margin-bottom);
|
2153
|
+
padding-top: var(--animation-padding-top);
|
2154
|
+
padding-bottom: var(--animation-padding-bottom);
|
2155
|
+
border-top-width: var(--animation-border-top-width);
|
2156
|
+
border-bottom-width: var(--animation-border-bottom-width);
|
2157
|
+
height: var(--animation-height-to);
|
2147
2158
|
}
|
2148
2159
|
}
|
2149
2160
|
@keyframes moveIn {
|
@@ -2334,7 +2345,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
|
|
2334
2345
|
overflow: visible;
|
2335
2346
|
}
|
2336
2347
|
}
|
2337
|
-
.sd-element-wrapper--
|
2348
|
+
.sd-element-wrapper--enter {
|
2338
2349
|
animation-name: elementMoveIn, fadeIn;
|
2339
2350
|
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
2340
2351
|
animation-fill-mode: forwards;
|
@@ -2343,7 +2354,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
|
|
2343
2354
|
opacity: 0;
|
2344
2355
|
}
|
2345
2356
|
|
2346
|
-
.sd-element-wrapper--
|
2357
|
+
.sd-element-wrapper--leave {
|
2347
2358
|
animation-name: elementMoveIn, fadeIn;
|
2348
2359
|
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
2349
2360
|
animation-fill-mode: forwards;
|
@@ -2356,29 +2367,29 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
|
|
2356
2367
|
box-sizing: border-box;
|
2357
2368
|
}
|
2358
2369
|
|
2359
|
-
.sd-element__content--
|
2360
|
-
.sd-element__content--
|
2370
|
+
.sd-element__content--enter,
|
2371
|
+
.sd-element__content--leave {
|
2361
2372
|
--animation-padding-top: 0;
|
2362
2373
|
--animation-padding-bottom: 0;
|
2363
2374
|
}
|
2364
2375
|
|
2365
|
-
.sd-element__content--
|
2366
|
-
animation-name: fadeIn, moveInWithOverflow
|
2376
|
+
.sd-element__content--enter {
|
2377
|
+
animation-name: fadeIn, moveInWithOverflow;
|
2367
2378
|
min-height: 0 !important;
|
2368
2379
|
opacity: 0;
|
2369
2380
|
animation-fill-mode: forwards;
|
2370
2381
|
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
2371
|
-
animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms)
|
2382
|
+
animation-duration: var(--sjs-expand-fade-in-duration, 500ms), var(--sjs-expand-move-in-duration, 150ms);
|
2372
2383
|
animation-delay: var(--sjs-expand-fade-in-delay, 150ms), 0s, 0s;
|
2373
2384
|
}
|
2374
2385
|
|
2375
|
-
.sd-element__content--
|
2376
|
-
animation-name: fadeIn, moveInWithOverflow
|
2386
|
+
.sd-element__content--leave {
|
2387
|
+
animation-name: fadeIn, moveInWithOverflow;
|
2377
2388
|
min-height: 0 !important;
|
2378
2389
|
animation-direction: reverse;
|
2379
2390
|
animation-fill-mode: forwards;
|
2380
2391
|
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
2381
|
-
animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms)
|
2392
|
+
animation-duration: var(--sjs-collapse-fade-out-duration, 150ms), var(--sjs-collapse-move-out-duration, 250ms);
|
2382
2393
|
animation-delay: 0s, var(--sjs-collapse-move-out-delay, 100ms), var(--sjs-collapse-move-out-delay, 100ms);
|
2383
2394
|
}
|
2384
2395
|
|
@@ -3195,78 +3206,73 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3195
3206
|
}
|
3196
3207
|
}
|
3197
3208
|
@keyframes empty {}
|
3198
|
-
.sd-table__row--
|
3199
|
-
.sd-table__row--
|
3209
|
+
.sd-table__row--leave,
|
3210
|
+
.sd-table__row--enter {
|
3200
3211
|
animation-name: empty;
|
3201
|
-
animation-
|
3202
|
-
--fade-
|
3203
|
-
animation-duration: max(var(--fade-
|
3212
|
+
--move-whole-animation-duration: calc(var(--move-animation-duration) + var(--move-animation-delay));
|
3213
|
+
--fade-whole-animation-duration: calc(var(--fade-animation-duration) + var(--fade-animation-delay));
|
3214
|
+
animation-duration: max(var(--fade-whole-animation-duration), var(--move-whole-animation-duration));
|
3204
3215
|
}
|
3205
|
-
.sd-table__row--
|
3206
|
-
.sd-table__row--
|
3216
|
+
.sd-table__row--leave > td,
|
3217
|
+
.sd-table__row--enter > td {
|
3207
3218
|
animation-name: borderAnimation;
|
3208
|
-
animation-
|
3209
|
-
animation-
|
3219
|
+
animation-direction: var(--animation-direction);
|
3220
|
+
animation-timing-function: var(--animation-timing-function);
|
3221
|
+
animation-duration: var(--move-animation-duration);
|
3210
3222
|
animation-fill-mode: forwards;
|
3223
|
+
animation-delay: var(--move-animation-delay);
|
3211
3224
|
}
|
3212
|
-
.sd-table__row--
|
3213
|
-
.sd-table__row--
|
3225
|
+
.sd-table__row--leave > td > div,
|
3226
|
+
.sd-table__row--enter > td > div {
|
3214
3227
|
animation-name: fadeIn, moveInWithOverflow;
|
3215
3228
|
opacity: 0;
|
3216
|
-
animation-
|
3229
|
+
animation-direction: var(--animation-direction);
|
3230
|
+
animation-timing-function: var(--animation-timing-function);
|
3217
3231
|
animation-fill-mode: forwards;
|
3218
|
-
animation-duration: var(--
|
3219
|
-
animation-delay: var(--
|
3232
|
+
animation-duration: var(--fade-animation-duration), var(--move-animation-duration);
|
3233
|
+
animation-delay: var(--fade-animation-delay), var(--move-animation-delay);
|
3220
3234
|
}
|
3221
3235
|
|
3222
|
-
.sd-table__row--
|
3223
|
-
animation-
|
3224
|
-
--move-
|
3225
|
-
|
3236
|
+
.sd-table__row--enter {
|
3237
|
+
--move-animation-delay: 0s;
|
3238
|
+
--move-animation-duration: var(--sjs-matrix-row-move-in-duration, 150ms);
|
3239
|
+
--fade-animation-duration: var(--sjs-matrix-row-fade-in-duration, 250ms);
|
3240
|
+
--fade-animation-delay: var(--sjs-matrix-row-fade-in-delay, 150ms);
|
3241
|
+
--animation-direction: normal;
|
3242
|
+
--animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
3226
3243
|
}
|
3227
|
-
|
3228
|
-
|
3229
|
-
animation-delay: var(--sjs-matrix-row-move-out-delay, 100ms);
|
3230
|
-
animation-
|
3231
|
-
animation-
|
3232
|
-
|
3233
|
-
|
3234
|
-
animation-
|
3235
|
-
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3236
|
-
animation-duration: var(--sjs-matrix-row-fade-out-duration, 100ms), var(--sjs-matrix-row-move-out-duration, 250ms);
|
3237
|
-
animation-delay: 0s, var(--sjs-matrix-row-move-out-delay, 100ms);
|
3244
|
+
|
3245
|
+
.sd-table__row--leave {
|
3246
|
+
--move-animation-delay: var(--sjs-matrix-row-move-out-delay, 100ms);
|
3247
|
+
--move-animation-duration: var(--sjs-matrix-row-move-out-duration, 250ms);
|
3248
|
+
--fade-animation-duration: var(--sjs-matrix-row-fade-out-duration, 100ms);
|
3249
|
+
--fade-animation-delay: 0s;
|
3250
|
+
--animation-direction: reverse;
|
3251
|
+
--animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3238
3252
|
}
|
3239
3253
|
|
3240
|
-
.sd-table__row--detail.sd-table__row--
|
3254
|
+
.sd-table__row--detail.sd-table__row--enter > td, .sd-table__row--detail.sd-table__row--leave > td {
|
3241
3255
|
animation-name: borderAnimation, paddingAnimation;
|
3242
|
-
animation-duration: var(--
|
3256
|
+
animation-duration: var(--move-animation-duration);
|
3243
3257
|
animation-fill-mode: forwards;
|
3244
|
-
|
3245
|
-
|
3246
|
-
|
3247
|
-
|
3248
|
-
|
3249
|
-
|
3250
|
-
animation-
|
3251
|
-
animation-
|
3252
|
-
|
3253
|
-
|
3254
|
-
|
3255
|
-
|
3256
|
-
|
3257
|
-
|
3258
|
-
--
|
3259
|
-
|
3260
|
-
|
3261
|
-
|
3262
|
-
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3263
|
-
animation-duration: var(--sjs-matrix-detail-row-move-out-duration, 250ms);
|
3264
|
-
animation-delay: var(--sjs-matrix-detail-row-move-out-delay, 100ms);
|
3265
|
-
animation-direction: reverse;
|
3266
|
-
}
|
3267
|
-
.sd-table__row--detail.sd-table__row--fade-out > td > div {
|
3268
|
-
animation-duration: var(--sjs-matrix-detail-row-fade-out-duration, 150ms), var(--sjs-matrix-detail-row-move-out-duration, 250ms);
|
3269
|
-
animation-delay: 0s, var(--sjs-matrix-detail-row-move-out-delay, 100ms);
|
3258
|
+
animation-direction: var(--animation-direction);
|
3259
|
+
animation-timing-function: var(--animation-timing-function);
|
3260
|
+
}
|
3261
|
+
.sd-table__row--detail.sd-table__row--enter {
|
3262
|
+
--move-animation-delay: 0s;
|
3263
|
+
--move-animation-duration: var(--sjs-matrix-detail-row-move-in-duration, 150ms);
|
3264
|
+
--fade-animation-duration: var(--sjs-matrix-detail-row-fade-in-duration, 500ms);
|
3265
|
+
--fade-animation-delay: var(--sjs-matrix-detail-row-fade-in-delay, 150ms);
|
3266
|
+
--animation-direction: normal;
|
3267
|
+
--animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
3268
|
+
}
|
3269
|
+
.sd-table__row--detail.sd-table__row--leave {
|
3270
|
+
--move-animation-delay: var(--sjs-matrix-detail-row-move-out-delay, 100ms);
|
3271
|
+
--move-animation-duration: var(--sjs-matrix-detail-row-move-out-duration, 250ms);
|
3272
|
+
--fade-animation-duration: var(--sjs-matrix-detail-row-fade-out-duration, 150ms);
|
3273
|
+
--fade-animation-delay: 0s;
|
3274
|
+
--animation-direction: reverse;
|
3275
|
+
--animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3270
3276
|
}
|
3271
3277
|
|
3272
3278
|
.sd-table {
|
@@ -3345,55 +3351,55 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3345
3351
|
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
3346
3352
|
}
|
3347
3353
|
|
3348
|
-
.sd-
|
3354
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows {
|
3349
3355
|
margin-left: var(--sjs-base-unit, var(--base-unit, 8px));
|
3350
3356
|
margin-right: var(--sjs-base-unit, var(--base-unit, 8px));
|
3351
3357
|
width: calc(100% - 2 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3352
3358
|
}
|
3353
|
-
.sd-
|
3359
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__cell:not(.sd-table__cell--header):first-of-type {
|
3354
3360
|
padding-left: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3355
3361
|
}
|
3356
|
-
.sd-
|
3362
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__cell:last-of-type {
|
3357
3363
|
padding-right: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3358
3364
|
}
|
3359
|
-
.sd-
|
3365
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:first-of-type > .sd-table__cell {
|
3360
3366
|
border-top: var(--sjs-base-unit, var(--base-unit, 8px)) solid transparent;
|
3361
3367
|
}
|
3362
|
-
.sd-
|
3368
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:last-of-type > .sd-table__cell {
|
3363
3369
|
border-bottom: var(--sjs-base-unit, var(--base-unit, 8px)) solid transparent;
|
3364
3370
|
}
|
3365
|
-
.sd-
|
3366
|
-
.sd-
|
3371
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions),
|
3372
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type {
|
3367
3373
|
border-top-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
3368
3374
|
border-bottom-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
3369
3375
|
background-color: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
|
3370
3376
|
}
|
3371
|
-
.sd-
|
3372
|
-
.sd-
|
3377
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions).sd-matrix__text--checked,
|
3378
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type.sd-matrix__text--checked {
|
3373
3379
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
3374
3380
|
}
|
3375
|
-
.sd-
|
3376
|
-
.sd-
|
3381
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-input,
|
3382
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-input {
|
3377
3383
|
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3378
3384
|
}
|
3379
|
-
.sd-
|
3380
|
-
.sd-
|
3385
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error) .sd-item__decorator,
|
3386
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error) .sd-item__decorator {
|
3381
3387
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
3382
3388
|
}
|
3383
|
-
.sd-
|
3384
|
-
.sd-
|
3389
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator,
|
3390
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error).sd-item--checked .sd-item__decorator {
|
3385
3391
|
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
3386
3392
|
}
|
3387
|
-
.sd-
|
3388
|
-
.sd-
|
3393
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error).sd-item--readonly.sd-item--checked .sd-item__decorator,
|
3394
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error).sd-item--readonly.sd-item--checked .sd-item__decorator {
|
3389
3395
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
3390
3396
|
}
|
3391
|
-
.sd-
|
3392
|
-
.sd-
|
3397
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error).sd-item--preview.sd-item--preview .sd-item__decorator,
|
3398
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error).sd-item--preview.sd-item--preview .sd-item__decorator {
|
3393
3399
|
background-color: transparent;
|
3394
3400
|
}
|
3395
|
-
.sd-
|
3396
|
-
.sd-
|
3401
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) > td.sd-table__cell:not(.sd-table__cell--actions) .sd-item:not(.sd-item--error).sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after,
|
3402
|
+
.sd-question:not(.sd-question--mobile) .sd-table--alternate-rows .sd-table__row:nth-of-type(odd) td:first-of-type .sd-item:not(.sd-item--error).sd-radio--checked .sd-radio__control:focus + .sd-radio__decorator:after {
|
3397
3403
|
background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
3398
3404
|
}
|
3399
3405
|
|
@@ -3689,6 +3695,189 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3689
3695
|
opacity: 0.25;
|
3690
3696
|
}
|
3691
3697
|
|
3698
|
+
.sd-question--mobile.sd-question.sd-question--table > .sd-question__content {
|
3699
|
+
padding-top: 0;
|
3700
|
+
--animation-padding-top: 0;
|
3701
|
+
}
|
3702
|
+
.sd-question--mobile.sd-question--table, .sd-question--mobile.sd-question--scroll {
|
3703
|
+
overflow-x: visible;
|
3704
|
+
}
|
3705
|
+
.sd-question--mobile .sd-table__cell.sd-matrix__cell {
|
3706
|
+
display: flex;
|
3707
|
+
align-items: flex-start;
|
3708
|
+
border-top: none;
|
3709
|
+
border-bottom: none;
|
3710
|
+
}
|
3711
|
+
.sd-question--mobile .sd-table__cell.sd-matrix__cell .sd-matrix__responsive-title {
|
3712
|
+
margin-left: var(--sjs-base-unit, var(--base-unit, 8px));
|
3713
|
+
text-align: start;
|
3714
|
+
}
|
3715
|
+
.sd-question--mobile .sd-table__cell.sd-matrix__cell:first-of-type {
|
3716
|
+
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3717
|
+
padding-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
3718
|
+
}
|
3719
|
+
.sd-question--mobile .sd-table thead {
|
3720
|
+
display: none;
|
3721
|
+
}
|
3722
|
+
.sd-question--mobile .sd-table tr {
|
3723
|
+
display: flex;
|
3724
|
+
flex-direction: column;
|
3725
|
+
}
|
3726
|
+
.sd-question--mobile .sd-matrix__table .sd-table__row {
|
3727
|
+
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
3728
|
+
}
|
3729
|
+
.sd-question--mobile .sd-table__row {
|
3730
|
+
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3731
|
+
}
|
3732
|
+
.sd-question--mobile .sd-table__row--expanded .sd-table__cell-action--show-detail-mobile {
|
3733
|
+
display: none;
|
3734
|
+
}
|
3735
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) .sd-table__row {
|
3736
|
+
padding-bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3737
|
+
}
|
3738
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) .sd-table__row.sd-table__row--has-end-actions {
|
3739
|
+
padding-bottom: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3740
|
+
}
|
3741
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--has-end-actions) {
|
3742
|
+
padding-bottom: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3743
|
+
}
|
3744
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--has-end-actions):not(:last-of-type) {
|
3745
|
+
padding-bottom: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3746
|
+
}
|
3747
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--has-end-actions):not(:last-of-type)::after {
|
3748
|
+
bottom: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3749
|
+
}
|
3750
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tfoot tr::before,
|
3751
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--expanded)::after {
|
3752
|
+
z-index: 12;
|
3753
|
+
content: " ";
|
3754
|
+
display: block;
|
3755
|
+
position: relative;
|
3756
|
+
height: 1px;
|
3757
|
+
background-color: var(--sjs-border-light, var(--border-light, #eaeaea));
|
3758
|
+
left: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3759
|
+
width: calc(100% + 4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
3760
|
+
z-index: 12;
|
3761
|
+
}
|
3762
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--expanded)::after {
|
3763
|
+
bottom: 0;
|
3764
|
+
}
|
3765
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tfoot tr {
|
3766
|
+
padding-top: calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3767
|
+
}
|
3768
|
+
.sd-question--mobile .sd-table:not(.sd-matrix__table) tfoot tr::before {
|
3769
|
+
background-color: transparent;
|
3770
|
+
}
|
3771
|
+
.sd-question--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--show-detail-mobile,
|
3772
|
+
.sd-question--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--remove-row {
|
3773
|
+
margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3774
|
+
}
|
3775
|
+
.sd-question--mobile .sd-matrix__label {
|
3776
|
+
justify-content: flex-start;
|
3777
|
+
}
|
3778
|
+
.sd-question--mobile .sd-table__cell {
|
3779
|
+
border-top: none;
|
3780
|
+
border-bottom: none;
|
3781
|
+
display: block;
|
3782
|
+
padding-top: 0;
|
3783
|
+
padding-bottom: 0;
|
3784
|
+
text-align: start;
|
3785
|
+
}
|
3786
|
+
.sd-question--mobile .sd-table__cell {
|
3787
|
+
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3788
|
+
}
|
3789
|
+
.sd-question--mobile .sd-table__cell--error {
|
3790
|
+
margin-top: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3791
|
+
}
|
3792
|
+
.sd-question--mobile .sd-table__cell--error.sd-table__cell--error-bottom .sd-question__erbox {
|
3793
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
3794
|
+
}
|
3795
|
+
.sd-question--mobile .sd-table__cell:first-of-type,
|
3796
|
+
.sd-question--mobile .sd-matrix__cell {
|
3797
|
+
margin-top: 0;
|
3798
|
+
}
|
3799
|
+
.sd-question--mobile .sd-table__cell--footer:not(.sd-question--answered) {
|
3800
|
+
display: none;
|
3801
|
+
}
|
3802
|
+
.sd-question--mobile .sd-table__responsive-title {
|
3803
|
+
padding-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
3804
|
+
font-weight: 600;
|
3805
|
+
display: block;
|
3806
|
+
text-align: start;
|
3807
|
+
}
|
3808
|
+
.sd-question--mobile .sd-table__responsive-title .sv-string-viewer {
|
3809
|
+
white-space: normal;
|
3810
|
+
}
|
3811
|
+
.sd-question--mobile .sd-table--no-header {
|
3812
|
+
padding-top: 0;
|
3813
|
+
}
|
3814
|
+
.sd-question--mobile .sd-table--no-header .sd-table__responsive-title {
|
3815
|
+
display: none;
|
3816
|
+
}
|
3817
|
+
.sd-question--mobile .sd-table__cell--detail-panel {
|
3818
|
+
padding-top: 0;
|
3819
|
+
padding-bottom: 0;
|
3820
|
+
border-top: 0;
|
3821
|
+
border-bottom: 0;
|
3822
|
+
}
|
3823
|
+
.sd-question--mobile .sd-table__cell--detail-panel .sd-panel__content {
|
3824
|
+
padding-top: 0;
|
3825
|
+
}
|
3826
|
+
.sd-question--mobile .sd-table__cell.sd-table__cell--actions {
|
3827
|
+
width: auto;
|
3828
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
3829
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
3830
|
+
}
|
3831
|
+
.sd-question--mobile .sd-table__cell.sd-table__cell--actions .sd-action-bar {
|
3832
|
+
margin-right: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3833
|
+
margin-left: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3834
|
+
background: var(--sjs-general-backcolor, var(--background, #fff));
|
3835
|
+
}
|
3836
|
+
.sd-question--mobile .sd-table__cell.sd-table__cell--actions #show-detail-mobile {
|
3837
|
+
flex-grow: 1;
|
3838
|
+
}
|
3839
|
+
.sd-question--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn {
|
3840
|
+
opacity: 1;
|
3841
|
+
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3842
|
+
}
|
3843
|
+
.sd-question--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn .sd-action__icon {
|
3844
|
+
display: none;
|
3845
|
+
}
|
3846
|
+
.sd-question--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn:after {
|
3847
|
+
content: attr(title);
|
3848
|
+
}
|
3849
|
+
.sd-question--mobile .sd-matrixdynamic__footer {
|
3850
|
+
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
3851
|
+
margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3852
|
+
}
|
3853
|
+
.sd-question--mobile .sd-table__cell--footer-total:not(.sd-matrix__cell),
|
3854
|
+
.sd-question--mobile .sd-table__cell--row-text:not(.sd-matrix__cell) {
|
3855
|
+
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3856
|
+
}
|
3857
|
+
.sd-question--mobile .sd-matrixdropdown.sd-table tr::after {
|
3858
|
+
bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3859
|
+
}
|
3860
|
+
.sd-question--mobile .sd-matrixdropdown.sd-table tr:last-child:after {
|
3861
|
+
content: none;
|
3862
|
+
}
|
3863
|
+
.sd-question--mobile .sd-table__cell.sd-table__cell--error-top {
|
3864
|
+
margin-top: 0;
|
3865
|
+
}
|
3866
|
+
.sd-question--mobile .sd-table__cell--error-top:first-of-type ~ .sd-table__cell:nth-of-type(2) {
|
3867
|
+
margin-top: 0;
|
3868
|
+
}
|
3869
|
+
.sd-question--mobile .sd-table__cell--error-top .sd-question__erbox {
|
3870
|
+
margin-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3871
|
+
margin-bottom: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3872
|
+
}
|
3873
|
+
.sd-question--mobile .sd-table__cell--error-top:first-of-type .sd-question__erbox {
|
3874
|
+
margin-top: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3875
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
3876
|
+
}
|
3877
|
+
.sd-question--mobile .sd-table__question-wrapper .sd-boolean-root {
|
3878
|
+
margin: initial;
|
3879
|
+
}
|
3880
|
+
|
3692
3881
|
.sd-table__cell--detail-panel .sd-panel__content {
|
3693
3882
|
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
3694
3883
|
}
|
@@ -3697,10 +3886,6 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3697
3886
|
margin: auto;
|
3698
3887
|
}
|
3699
3888
|
|
3700
|
-
.sd-root-modern--mobile .sd-table__question-wrapper .sd-boolean-root {
|
3701
|
-
margin: initial;
|
3702
|
-
}
|
3703
|
-
|
3704
3889
|
.sd-table__cell--footer .sd-table__question-wrapper--expression .sd-expression {
|
3705
3890
|
padding: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3706
3891
|
border-bottom: 1px solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
@@ -3777,45 +3962,38 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3777
3962
|
flex-direction: row;
|
3778
3963
|
width: 100%;
|
3779
3964
|
box-sizing: border-box;
|
3780
|
-
--animate-margin: var(--sd-base-vertical-padding);
|
3781
3965
|
margin-top: var(--sd-base-vertical-padding);
|
3782
3966
|
}
|
3783
3967
|
|
3784
3968
|
.sd-row.sd-page__row {
|
3785
3969
|
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3786
|
-
--animate-margin: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3787
3970
|
}
|
3788
3971
|
|
3789
3972
|
.sd-page__row.sd-row--compact {
|
3790
3973
|
margin-top: var(--sd-base-vertical-padding);
|
3791
|
-
--animate-margin: var(--sd-base-vertical-padding);
|
3792
3974
|
}
|
3793
3975
|
|
3794
3976
|
.sd-row:first-of-type {
|
3795
3977
|
margin-top: 0;
|
3796
|
-
--animate-margin: 0;
|
3797
3978
|
}
|
3798
3979
|
|
3799
3980
|
.sd-page__title ~ .sd-row.sd-page__row:not(.sd-row--compact),
|
3800
3981
|
.sd-page__description ~ .sd-row.sd-page__row:not(.sd-row--compact) {
|
3801
3982
|
margin-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3802
|
-
--animate-margin: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3803
3983
|
}
|
3804
3984
|
.sd-page__title ~ .sd-page__row.sd-row--compact,
|
3805
3985
|
.sd-page__description ~ .sd-page__row.sd-row--compact {
|
3806
3986
|
margin-top: var(--sd-base-vertical-padding);
|
3807
|
-
--animate-margin: var(--sd-base-vertical-padding);
|
3808
3987
|
}
|
3809
|
-
.sd-page__title ~ .sd-page__row.sd-row.sd-row--
|
3810
|
-
.sd-page__description ~ .sd-page__row.sd-row.sd-row--
|
3988
|
+
.sd-page__title ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter,
|
3989
|
+
.sd-page__description ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter {
|
3811
3990
|
margin-top: 0;
|
3812
3991
|
}
|
3813
3992
|
|
3814
3993
|
.sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-row.sd-page__row:not(.sd-row--compact) {
|
3815
3994
|
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3816
|
-
--animate-margin: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3817
3995
|
}
|
3818
|
-
.sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-page__row.sd-row.sd-row--
|
3996
|
+
.sd-row.sd-page__row:not(.sd-row--compact) ~ .sd-page__row.sd-row.sd-row--enter.sd-row-delayed-enter {
|
3819
3997
|
margin-top: 0;
|
3820
3998
|
}
|
3821
3999
|
|
@@ -3873,21 +4051,13 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3873
4051
|
white-space: nowrap;
|
3874
4052
|
}
|
3875
4053
|
|
3876
|
-
|
3877
|
-
from {
|
3878
|
-
margin-top: 0;
|
3879
|
-
}
|
3880
|
-
to {
|
3881
|
-
margin-top: var(--animate-margin);
|
3882
|
-
}
|
3883
|
-
}
|
3884
|
-
.sd-row.sd-row--fade-in {
|
4054
|
+
.sd-row.sd-row--enter {
|
3885
4055
|
margin-top: 0;
|
3886
4056
|
}
|
3887
4057
|
|
3888
|
-
.sd-row--
|
4058
|
+
.sd-row--enter {
|
3889
4059
|
animation-fill-mode: forwards;
|
3890
|
-
animation-name: fadeIn, moveInWithOverflow
|
4060
|
+
animation-name: fadeIn, moveInWithOverflow;
|
3891
4061
|
min-height: 0 !important;
|
3892
4062
|
opacity: 0;
|
3893
4063
|
height: 0;
|
@@ -3896,12 +4066,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3896
4066
|
animation-duration: var(--sjs-row-fade-in-duration, 500ms), var(--sjs-row-move-in-duration, 150ms), var(--sjs-row-move-in-duration, 150ms);
|
3897
4067
|
}
|
3898
4068
|
|
3899
|
-
.sd-row--delayed-
|
4069
|
+
.sd-row--delayed-enter {
|
3900
4070
|
animation-delay: calc(var(--sjs-row-fade-in-delay, 150ms) + var(--sjs-row-fade-in-animation-delay, 400ms)), var(--sjs-row-fade-in-animation-delay, 400ms), var(--sjs-row-fade-in-animation-delay, 400ms);
|
3901
4071
|
}
|
3902
4072
|
|
3903
|
-
.sd-row--
|
3904
|
-
animation-name: fadeIn, moveInWithOverflow
|
4073
|
+
.sd-row--leave {
|
4074
|
+
animation-name: fadeIn, moveInWithOverflow;
|
3905
4075
|
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
3906
4076
|
animation-fill-mode: forwards;
|
3907
4077
|
animation-direction: reverse;
|
@@ -3910,11 +4080,11 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3910
4080
|
animation-duration: var(--sjs-row-fade-out-duration, 150ms), var(--sjs-row-move-out-duration, 250ms), var(--sjs-row-move-out-duration, 250ms);
|
3911
4081
|
}
|
3912
4082
|
|
3913
|
-
.sd-row--
|
4083
|
+
.sd-row--enter .sd-element-wrapper--enter {
|
3914
4084
|
animation: none;
|
3915
4085
|
}
|
3916
4086
|
|
3917
|
-
.sd-row--
|
4087
|
+
.sd-row--leave .sd-element-wrapper--leave {
|
3918
4088
|
animation: none;
|
3919
4089
|
}
|
3920
4090
|
|
@@ -4177,6 +4347,38 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
4177
4347
|
width: 100%;
|
4178
4348
|
}
|
4179
4349
|
|
4350
|
+
.sd-item--enter,
|
4351
|
+
.sd-item--leave {
|
4352
|
+
animation-name: moveInWithOverflow, fadeIn;
|
4353
|
+
opacity: 0;
|
4354
|
+
animation-fill-mode: forwards;
|
4355
|
+
animation-timing-function: linear;
|
4356
|
+
animation-direction: var(--animation-direction);
|
4357
|
+
animation-duration: var(--move-animation-duration), var(--fade-animation-duration);
|
4358
|
+
animation-delay: var(--move-animation-delay), var(--fade-animation-delay);
|
4359
|
+
}
|
4360
|
+
|
4361
|
+
.sd-item--enter {
|
4362
|
+
--animation-direction: normal;
|
4363
|
+
--move-animation-duration: var(--sjs-ranking-move-in-duration, 150ms);
|
4364
|
+
--move-animation-delay: 0s;
|
4365
|
+
--fade-animation-duration: var(--sjs-ranking-fade-in-duration, 100ms);
|
4366
|
+
--fade-animation-delay: var(--sjs-ranking-fade-in-delay, 150ms);
|
4367
|
+
}
|
4368
|
+
|
4369
|
+
.sd-item--leave {
|
4370
|
+
--animation-direction: reverse;
|
4371
|
+
--move-animation-duration: var(--sjs-ranking-move-out-duration, 150ms);
|
4372
|
+
--move-animation-delay: var(--sjs-ranking-move-out-delay, 0ms);
|
4373
|
+
--fade-animation-duration: var(--sjs-ranking-fade-out-duration, 100ms);
|
4374
|
+
--fade-animation-delay: 0s;
|
4375
|
+
}
|
4376
|
+
|
4377
|
+
div[class*=sv-q-column-]:not(:first-of-type) .sd-item--enter {
|
4378
|
+
--move-animation-duration: 0s;
|
4379
|
+
--fade-animation-delay: 0s;
|
4380
|
+
}
|
4381
|
+
|
4180
4382
|
.sd-checkbox__decorator {
|
4181
4383
|
border-radius: calc(0.5 * (var(--sjs-corner-radius, 4px)));
|
4182
4384
|
}
|
@@ -5236,7 +5438,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5236
5438
|
margin-inline-start: calc(-0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5237
5439
|
}
|
5238
5440
|
|
5239
|
-
.sv-dropdown-popup.sv-single-select-list.sv-popup--
|
5441
|
+
.sv-dropdown-popup.sv-single-select-list.sv-popup--leave .sd-list__item.sv-list__item--selected .sv-list__item-body {
|
5240
5442
|
font-weight: normal;
|
5241
5443
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5242
5444
|
background-color: transparent;
|
@@ -6220,8 +6422,8 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6220
6422
|
transform: translateX(0);
|
6221
6423
|
}
|
6222
6424
|
}
|
6223
|
-
.sd-paneldynamic__panel-wrapper--
|
6224
|
-
.sd-paneldynamic__panel-wrapper--
|
6425
|
+
.sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-left,
|
6426
|
+
.sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-right {
|
6225
6427
|
--sjs-pd-tab-animation-delay: 0ms;
|
6226
6428
|
animation-name: movePanel, changeHeight, paddingFadeIn, fadeIn;
|
6227
6429
|
animation-duration: var(--sjs-pd-tab-move-in-duration, 250ms), var(--sjs-pd-tab-height-change-duration, 250ms), var(--sjs-pd-tab-height-change-duration, 250ms), var(--sjs-pd-tab-fade-in-duration, 250ms);
|
@@ -6236,16 +6438,16 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6236
6438
|
--animation-padding-bottom: calc(1 * var(--sd-base-padding));
|
6237
6439
|
}
|
6238
6440
|
|
6239
|
-
.sd-paneldynamic__panel-wrapper--
|
6441
|
+
.sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-left {
|
6240
6442
|
--sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-in-margin, 50%));
|
6241
6443
|
}
|
6242
6444
|
|
6243
|
-
.sd-paneldynamic__panel-wrapper--
|
6445
|
+
.sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-right {
|
6244
6446
|
--sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-in-margin, 50%));
|
6245
6447
|
}
|
6246
6448
|
|
6247
|
-
.sd-paneldynamic__panel-wrapper--
|
6248
|
-
.sd-paneldynamic__panel-wrapper--
|
6449
|
+
.sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-left,
|
6450
|
+
.sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-right {
|
6249
6451
|
animation-name: fadeIn, movePanel;
|
6250
6452
|
animation-duration: var(--sjs-pd-tab-fade-out-duration, 250ms), var(--sjs-pd-tab-move-out-duration, 250ms);
|
6251
6453
|
animation-delay: var(--sjs-pd-tab-fade-out-delay, 0ms), var(--sjs-pd-tab-move-out-delay, 0ms);
|
@@ -6258,15 +6460,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6258
6460
|
width: calc(100% - 2 * var(--sd-base-padding));
|
6259
6461
|
}
|
6260
6462
|
|
6261
|
-
.sd-paneldynamic__panel-wrapper--
|
6463
|
+
.sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-left {
|
6262
6464
|
--sjs-pd-tab-move-margin: calc(-1 * var(--sjs-pd-tab-move-out-margin, 50%));
|
6263
6465
|
}
|
6264
6466
|
|
6265
|
-
.sd-paneldynamic__panel-wrapper--
|
6467
|
+
.sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-right {
|
6266
6468
|
--sjs-pd-tab-move-margin: calc(1 * var(--sjs-pd-tab-move-out-margin, 50%));
|
6267
6469
|
}
|
6268
6470
|
|
6269
|
-
.sd-paneldynamic__panel-wrapper--
|
6471
|
+
.sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-adding {
|
6270
6472
|
animation-name: fadeIn, changeHeight, paddingFadeIn;
|
6271
6473
|
animation-duration: var(--sjs-pd-tab-add-fade-in-duration, 500ms), var(--sjs-pd-tab-height-change-duration, 250ms), var(--sjs-pd-tab-height-change-duration, 250ms);
|
6272
6474
|
animation-delay: calc(var(--sjs-pd-tab-add-fade-in-delay, 250ms) + var(--sjs-pd-tab-animation-delay)), calc(var(--sjs-pd-tab-height-change-delay, 0ms) + var(--sjs-pd-tab-animation-delay)), calc(var(--sjs-pd-tab-height-change-delay, 0ms) + var(--sjs-pd-tab-animation-delay));
|
@@ -6275,11 +6477,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6275
6477
|
transform: translateX(0);
|
6276
6478
|
}
|
6277
6479
|
|
6278
|
-
.sd-paneldynamic__panel-wrapper--
|
6480
|
+
.sd-paneldynamic__panel-wrapper--enter.sv-pd-animation-removing {
|
6279
6481
|
--sjs-pd-tab-animation-delay: var(--sjs-pd-tab-remove-fade-in-delay, 150ms);
|
6280
6482
|
}
|
6281
6483
|
|
6282
|
-
.sd-paneldynamic__panel-wrapper--
|
6484
|
+
.sd-paneldynamic__panel-wrapper--leave.sv-pd-animation-removing {
|
6283
6485
|
animation-name: fadeIn;
|
6284
6486
|
animation-duration: var(--sjs-pd-tab-remove-fade-out-duration, 150ms);
|
6285
6487
|
animation-delay: var(--sjs-pd-tab-remove-fade-out-delay, 0ms);
|
@@ -6292,23 +6494,23 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
6292
6494
|
width: calc(100% - 2 * var(--sd-base-padding));
|
6293
6495
|
}
|
6294
6496
|
|
6295
|
-
.sd-paneldynamic__panel-wrapper--
|
6296
|
-
.sd-paneldynamic__panel-wrapper--
|
6297
|
-
animation-name: fadeIn, moveInWithOverflow
|
6497
|
+
.sd-paneldynamic__panel-wrapper--enter,
|
6498
|
+
.sd-paneldynamic__panel-wrapper--leave {
|
6499
|
+
animation-name: fadeIn, moveInWithOverflow;
|
6298
6500
|
animation-fill-mode: forwards;
|
6299
6501
|
--animation-padding-top: 0;
|
6300
6502
|
--animation-padding-bottom: calc(1 * var(--sd-base-padding));
|
6301
6503
|
min-height: 0 !important;
|
6302
6504
|
}
|
6303
6505
|
|
6304
|
-
.sd-paneldynamic__panel-wrapper--
|
6506
|
+
.sd-paneldynamic__panel-wrapper--enter {
|
6305
6507
|
opacity: 0;
|
6306
6508
|
animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
|
6307
6509
|
animation-duration: var(--sjs-pd-list-fade-in-duration, 500ms), var(--sjs-pd-list-move-in-duration, 250ms), var(--sjs-pd-list-move-in-duration, 250ms);
|
6308
6510
|
animation-delay: var(--sjs-pd-list-fade-in-delay, 250ms), 0s, 0s;
|
6309
6511
|
}
|
6310
6512
|
|
6311
|
-
.sd-paneldynamic__panel-wrapper--
|
6513
|
+
.sd-paneldynamic__panel-wrapper--leave {
|
6312
6514
|
animation-direction: reverse;
|
6313
6515
|
animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
|
6314
6516
|
animation-duration: var(--sjs-pd-list-fade-out-duration, 150ms), var(--sjs-pd-list-move-out-duration, 250ms), var(--sjs-pd-list-move-out-duration, 250ms);
|
@@ -8214,186 +8416,6 @@ sv-components-container,
|
|
8214
8416
|
.sd-root-modern.sd-root-modern--mobile .sd-header__text {
|
8215
8417
|
min-width: 100%;
|
8216
8418
|
}
|
8217
|
-
.sd-root-modern.sd-root-modern--mobile .sd-question.sd-question--table > .sd-question__content {
|
8218
|
-
padding-top: 0;
|
8219
|
-
--animation-padding-top: 0;
|
8220
|
-
}
|
8221
|
-
.sd-root-modern.sd-root-modern--mobile .sd-question--table,
|
8222
|
-
.sd-root-modern.sd-root-modern--mobile .sd-question--scroll {
|
8223
|
-
overflow-x: visible;
|
8224
|
-
}
|
8225
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell {
|
8226
|
-
display: flex;
|
8227
|
-
align-items: flex-start;
|
8228
|
-
border-top: none;
|
8229
|
-
border-bottom: none;
|
8230
|
-
}
|
8231
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell .sd-matrix__responsive-title {
|
8232
|
-
margin-left: var(--sjs-base-unit, var(--base-unit, 8px));
|
8233
|
-
text-align: start;
|
8234
|
-
}
|
8235
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell:first-of-type {
|
8236
|
-
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8237
|
-
padding-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
8238
|
-
}
|
8239
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table thead {
|
8240
|
-
display: none;
|
8241
|
-
}
|
8242
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table tr {
|
8243
|
-
display: flex;
|
8244
|
-
flex-direction: column;
|
8245
|
-
}
|
8246
|
-
.sd-root-modern.sd-root-modern--mobile .sd-matrix__table .sd-table__row {
|
8247
|
-
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
8248
|
-
}
|
8249
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__row {
|
8250
|
-
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8251
|
-
}
|
8252
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__row--expanded .sd-table__cell-action--show-detail-mobile {
|
8253
|
-
display: none;
|
8254
|
-
}
|
8255
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) .sd-table__row {
|
8256
|
-
padding-bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8257
|
-
}
|
8258
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) .sd-table__row.sd-table__row--has-end-actions {
|
8259
|
-
padding-bottom: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8260
|
-
}
|
8261
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--has-end-actions) {
|
8262
|
-
padding-bottom: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8263
|
-
}
|
8264
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--has-end-actions):not(:last-of-type) {
|
8265
|
-
padding-bottom: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8266
|
-
}
|
8267
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--has-end-actions):not(:last-of-type)::after {
|
8268
|
-
bottom: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8269
|
-
}
|
8270
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tfoot tr::before,
|
8271
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--expanded)::after {
|
8272
|
-
z-index: 12;
|
8273
|
-
content: " ";
|
8274
|
-
display: block;
|
8275
|
-
position: relative;
|
8276
|
-
height: 1px;
|
8277
|
-
background-color: var(--sjs-border-light, var(--border-light, #eaeaea));
|
8278
|
-
left: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8279
|
-
width: calc(100% + 4 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
8280
|
-
z-index: 12;
|
8281
|
-
}
|
8282
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr:not(.sd-table__row--expanded)::after {
|
8283
|
-
bottom: 0;
|
8284
|
-
}
|
8285
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tfoot tr {
|
8286
|
-
padding-top: calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8287
|
-
}
|
8288
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tfoot tr::before {
|
8289
|
-
background-color: transparent;
|
8290
|
-
}
|
8291
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--show-detail-mobile,
|
8292
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-table--has-footer) .sd-table__row:last-of-type .sd-table__cell-action--remove-row {
|
8293
|
-
margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8294
|
-
}
|
8295
|
-
.sd-root-modern.sd-root-modern--mobile .sd-matrix__label {
|
8296
|
-
justify-content: flex-start;
|
8297
|
-
}
|
8298
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell {
|
8299
|
-
border-top: none;
|
8300
|
-
border-bottom: none;
|
8301
|
-
display: block;
|
8302
|
-
padding-top: 0;
|
8303
|
-
padding-bottom: 0;
|
8304
|
-
text-align: start;
|
8305
|
-
}
|
8306
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell {
|
8307
|
-
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8308
|
-
}
|
8309
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--error {
|
8310
|
-
margin-top: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8311
|
-
}
|
8312
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--error.sd-table__cell--error-bottom .sd-question__erbox {
|
8313
|
-
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
8314
|
-
}
|
8315
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell:first-of-type,
|
8316
|
-
.sd-root-modern.sd-root-modern--mobile .sd-matrix__cell {
|
8317
|
-
margin-top: 0;
|
8318
|
-
}
|
8319
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--footer:not(.sd-question--answered) {
|
8320
|
-
display: none;
|
8321
|
-
}
|
8322
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__responsive-title {
|
8323
|
-
padding-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
8324
|
-
font-weight: 600;
|
8325
|
-
display: block;
|
8326
|
-
text-align: start;
|
8327
|
-
}
|
8328
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__responsive-title .sv-string-viewer {
|
8329
|
-
white-space: normal;
|
8330
|
-
}
|
8331
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table--no-header {
|
8332
|
-
padding-top: 0;
|
8333
|
-
}
|
8334
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table--no-header .sd-table__responsive-title {
|
8335
|
-
display: none;
|
8336
|
-
}
|
8337
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--detail-panel {
|
8338
|
-
padding-top: 0;
|
8339
|
-
padding-bottom: 0;
|
8340
|
-
border-top: 0;
|
8341
|
-
border-bottom: 0;
|
8342
|
-
}
|
8343
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--detail-panel .sd-panel__content {
|
8344
|
-
padding-top: 0;
|
8345
|
-
}
|
8346
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-table__cell--actions {
|
8347
|
-
width: auto;
|
8348
|
-
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
8349
|
-
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
8350
|
-
}
|
8351
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-table__cell--actions .sd-action-bar {
|
8352
|
-
margin-right: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8353
|
-
margin-left: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8354
|
-
background: var(--sjs-general-backcolor, var(--background, #fff));
|
8355
|
-
}
|
8356
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-table__cell--actions #show-detail-mobile {
|
8357
|
-
flex-grow: 1;
|
8358
|
-
}
|
8359
|
-
.sd-root-modern.sd-root-modern--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn {
|
8360
|
-
opacity: 1;
|
8361
|
-
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8362
|
-
}
|
8363
|
-
.sd-root-modern.sd-root-modern--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn .sd-action__icon {
|
8364
|
-
display: none;
|
8365
|
-
}
|
8366
|
-
.sd-root-modern.sd-root-modern--mobile .sd-action.sd-action.sd-matrixdynamic__remove-btn:after {
|
8367
|
-
content: attr(title);
|
8368
|
-
}
|
8369
|
-
.sd-root-modern.sd-root-modern--mobile .sd-matrixdynamic__footer {
|
8370
|
-
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
8371
|
-
margin-bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8372
|
-
}
|
8373
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--footer-total:not(.sd-matrix__cell),
|
8374
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--row-text:not(.sd-matrix__cell) {
|
8375
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
8376
|
-
}
|
8377
|
-
.sd-root-modern.sd-root-modern--mobile .sd-matrixdropdown.sd-table tr::after {
|
8378
|
-
bottom: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8379
|
-
}
|
8380
|
-
.sd-root-modern.sd-root-modern--mobile .sd-matrixdropdown.sd-table tr:last-child:after {
|
8381
|
-
content: none;
|
8382
|
-
}
|
8383
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-table__cell--error-top {
|
8384
|
-
margin-top: 0;
|
8385
|
-
}
|
8386
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--error-top:first-of-type ~ .sd-table__cell:nth-of-type(2) {
|
8387
|
-
margin-top: 0;
|
8388
|
-
}
|
8389
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--error-top .sd-question__erbox {
|
8390
|
-
margin-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8391
|
-
margin-bottom: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8392
|
-
}
|
8393
|
-
.sd-root-modern.sd-root-modern--mobile .sd-table__cell--error-top:first-of-type .sd-question__erbox {
|
8394
|
-
margin-top: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
8395
|
-
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
8396
|
-
}
|
8397
8419
|
.sd-root-modern.sd-root-modern--mobile .sv-ranking-item__icon-container {
|
8398
8420
|
margin-left: 0;
|
8399
8421
|
margin-right: 0;
|