survey-react 1.9.112 → 1.9.114
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 +533 -436
- package/defaultV2.css.map +1 -1
- package/defaultV2.min.css +2 -2
- package/modern.css +304 -163
- package/modern.css.map +1 -1
- package/modern.min.css +2 -2
- package/package.json +1 -1
- package/survey.css +36 -9
- package/survey.css.map +1 -1
- package/survey.min.css +2 -2
- package/survey.react.d.ts +488 -256
- package/survey.react.js +1260 -956
- 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.114
|
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
|
*/
|
@@ -262,7 +262,7 @@
|
|
262
262
|
background-color: transparent;
|
263
263
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
264
264
|
cursor: pointer;
|
265
|
-
font-family: var(--font-family, var(--font-family));
|
265
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
266
266
|
overflow-x: hidden;
|
267
267
|
white-space: nowrap;
|
268
268
|
}
|
@@ -355,7 +355,7 @@ button.sv-action-bar-item {
|
|
355
355
|
cursor: pointer;
|
356
356
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
357
357
|
font-size: var(--sjs-font-size, 16px);
|
358
|
-
font-family: var(--font-family, var(--font-family));
|
358
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
359
359
|
}
|
360
360
|
|
361
361
|
.sv-expand-action:before {
|
@@ -422,7 +422,7 @@ button.sv-action-bar-item {
|
|
422
422
|
position: absolute;
|
423
423
|
z-index: 10000;
|
424
424
|
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
|
425
|
-
font-family: var(--font-family, var(--font-family));
|
425
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
426
426
|
font-size: var(--sjs-font-size, 16px);
|
427
427
|
padding-left: calc(2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
428
428
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
@@ -472,6 +472,7 @@ sv-popup {
|
|
472
472
|
}
|
473
473
|
|
474
474
|
.sv-popup__container {
|
475
|
+
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
475
476
|
box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
|
476
477
|
border-radius: var(--sjs-corner-radius, 4px);
|
477
478
|
position: absolute;
|
@@ -496,7 +497,7 @@ sv-popup {
|
|
496
497
|
max-width: 100vw;
|
497
498
|
}
|
498
499
|
|
499
|
-
.sv-popup
|
500
|
+
.sv-popup--modal {
|
500
501
|
display: flex;
|
501
502
|
align-items: center;
|
502
503
|
justify-content: center;
|
@@ -504,10 +505,20 @@ sv-popup {
|
|
504
505
|
padding: calc(11 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(15 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
505
506
|
box-sizing: border-box;
|
506
507
|
}
|
507
|
-
|
508
|
+
|
509
|
+
.sv-popup--modal > .sv-popup__container {
|
510
|
+
position: static;
|
511
|
+
}
|
512
|
+
|
513
|
+
.sv-popup--modal > .sv-popup__container > .sv-popup__shadow > .sv-popup__body-content {
|
514
|
+
box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
|
515
|
+
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
508
516
|
padding: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
509
517
|
height: auto;
|
510
518
|
}
|
519
|
+
.sv-popup--modal > .sv-popup__container > .sv-popup__shadow > .sv-popup__body-content .sv-popup__body-footer {
|
520
|
+
padding-bottom: 2px;
|
521
|
+
}
|
511
522
|
|
512
523
|
.sv-popup--confirm-delete .sv-popup__shadow {
|
513
524
|
height: initial;
|
@@ -522,11 +533,12 @@ sv-popup {
|
|
522
533
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
|
523
534
|
margin-bottom: 0;
|
524
535
|
/* UI/Default */
|
525
|
-
font-family: var(--font-family);
|
536
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
526
537
|
font-size: var(--sjs-font-size, 16px);
|
527
538
|
font-style: normal;
|
528
539
|
font-weight: 400;
|
529
|
-
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
540
|
+
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
541
|
+
/* 150% */
|
530
542
|
}
|
531
543
|
.sv-popup--confirm-delete .sv-popup__scrolling-content {
|
532
544
|
display: none;
|
@@ -538,15 +550,11 @@ sv-popup {
|
|
538
550
|
gap: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
539
551
|
}
|
540
552
|
|
541
|
-
.sv-popup
|
542
|
-
position: static;
|
543
|
-
}
|
544
|
-
|
545
|
-
.sv-popup--overlay.sv-popup--overlay {
|
553
|
+
.sv-popup--overlay {
|
546
554
|
width: 100%;
|
547
555
|
height: var(--sv-popup-overlay-height, 100vh);
|
548
556
|
}
|
549
|
-
.sv-popup--overlay
|
557
|
+
.sv-popup--overlay .sv-popup__container {
|
550
558
|
background: var(--background-semitransparent, rgba(144, 144, 144, 0.5));
|
551
559
|
max-width: 100vw;
|
552
560
|
max-height: calc(var(--sv-popup-overlay-height, 100vh) - 1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
@@ -555,7 +563,7 @@ sv-popup {
|
|
555
563
|
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
556
564
|
border: unset;
|
557
565
|
}
|
558
|
-
.sv-popup--overlay
|
566
|
+
.sv-popup--overlay .sv-popup__body-content {
|
559
567
|
max-height: var(--sv-popup-overlay-height, 100vh);
|
560
568
|
max-width: 100vw;
|
561
569
|
border-radius: calc(4 * (var(--sjs-corner-radius, 4px))) calc(4 * (var(--sjs-corner-radius, 4px))) 0px 0px;
|
@@ -564,25 +572,25 @@ sv-popup {
|
|
564
572
|
padding: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
565
573
|
height: calc(100% - 1 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
566
574
|
}
|
567
|
-
.sv-popup--overlay
|
575
|
+
.sv-popup--overlay .sv-popup__scrolling-content {
|
568
576
|
height: calc(100% - 10 * var(--base-unit, 8px));
|
569
577
|
}
|
570
|
-
.sv-popup--overlay
|
578
|
+
.sv-popup--overlay .sv-popup__body-footer {
|
571
579
|
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
572
580
|
}
|
573
|
-
.sv-popup--overlay
|
581
|
+
.sv-popup--overlay .sv-popup__body-footer .sv-action-bar {
|
574
582
|
width: 100%;
|
575
583
|
}
|
576
|
-
.sv-popup--overlay
|
584
|
+
.sv-popup--overlay .sv-popup__body-footer-item {
|
577
585
|
width: 100%;
|
578
586
|
}
|
579
|
-
.sv-popup--overlay.sv-
|
587
|
+
.sv-popup--overlay .sv-popup__button.sv-popup__button {
|
580
588
|
background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
581
589
|
border: 2px solid var(--sjs-primary-backcolor, var(--primary, #19b394));
|
582
590
|
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
583
591
|
}
|
584
592
|
|
585
|
-
.sv-popup--overlay
|
593
|
+
.sv-popup--overlay .sv-popup__body-footer .sv-action {
|
586
594
|
flex: 1 0 0;
|
587
595
|
}
|
588
596
|
|
@@ -685,66 +693,93 @@ sv-popup {
|
|
685
693
|
top: calc(2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
686
694
|
}
|
687
695
|
|
688
|
-
.sv-dropdown
|
696
|
+
.sv-popup--dropdown .sv-list__filter {
|
697
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
698
|
+
}
|
699
|
+
.sv-popup--dropdown .sv-popup__shadow {
|
700
|
+
box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
|
701
|
+
}
|
702
|
+
.sv-popup--dropdown .sv-popup__body-content {
|
703
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
704
|
+
padding: var(--sjs-base-unit, var(--base-unit, 8px)) 0;
|
705
|
+
height: 100%;
|
706
|
+
}
|
707
|
+
|
708
|
+
.sv-popup--dropdown > .sv-popup__container > .sv-popup__shadow > .sv-popup__body-content .sv-list {
|
709
|
+
background-color: transparent;
|
710
|
+
}
|
711
|
+
|
712
|
+
.sv-dropdown-popup .sv-popup__body-content {
|
713
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0;
|
714
|
+
}
|
715
|
+
.sv-dropdown-popup .sv-list__filter {
|
716
|
+
margin-bottom: 0;
|
717
|
+
}
|
718
|
+
|
719
|
+
.sv-popup--overlay .sv-popup__body-content {
|
720
|
+
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
721
|
+
}
|
722
|
+
|
723
|
+
.sv-popup--dropdown-overlay {
|
689
724
|
z-index: 2001;
|
690
725
|
padding: 0;
|
691
726
|
}
|
692
|
-
.sv-dropdown-
|
727
|
+
.sv-popup--dropdown-overlay .sv-popup__body-content {
|
693
728
|
padding: 0;
|
694
729
|
border-radius: 0;
|
695
730
|
}
|
696
|
-
.sv-dropdown-
|
697
|
-
|
731
|
+
.sv-popup--dropdown-overlay .sv-popup__body-footer .sv-action-bar .sv-action {
|
732
|
+
flex: 0 0 auto;
|
698
733
|
}
|
699
|
-
.sv-dropdown-
|
734
|
+
.sv-popup--dropdown-overlay .sv-popup__button.sv-popup__button {
|
700
735
|
background-color: transparent;
|
701
736
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
702
737
|
border: none;
|
703
738
|
box-shadow: none;
|
704
|
-
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
739
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
705
740
|
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
706
741
|
margin: 0;
|
707
742
|
}
|
708
|
-
.sv-dropdown-
|
743
|
+
.sv-popup--dropdown-overlay .sv-popup__container {
|
709
744
|
max-height: calc(var(--sv-popup-overlay-height, 100vh));
|
710
745
|
height: calc(var(--sv-popup-overlay-height, 100vh));
|
711
746
|
padding-top: 0;
|
712
747
|
}
|
713
|
-
.sv-dropdown-
|
748
|
+
.sv-popup--dropdown-overlay .sv-popup__body-content {
|
714
749
|
height: calc(var(--sv-popup-overlay-height, 100vh));
|
715
750
|
}
|
716
|
-
.sv-dropdown-
|
717
|
-
background-color: var(--sjs-general-backcolor-dim
|
751
|
+
.sv-popup--dropdown-overlay .sv-popup__body-footer {
|
752
|
+
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
718
753
|
margin-top: 0;
|
719
|
-
padding-top:
|
720
|
-
padding-bottom:
|
754
|
+
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
755
|
+
padding-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
721
756
|
border-top: 1px solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
722
757
|
}
|
723
|
-
.sv-dropdown-
|
758
|
+
.sv-popup--dropdown-overlay .sv-popup__scrolling-content {
|
724
759
|
height: calc(100% - 6 * var(--base-unit, 8px));
|
725
760
|
}
|
726
|
-
.sv-dropdown-
|
727
|
-
width: calc(
|
728
|
-
height: calc(
|
761
|
+
.sv-popup--dropdown-overlay .sv-list__filter-icon .sv-svg-icon {
|
762
|
+
width: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
763
|
+
height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
729
764
|
}
|
730
|
-
.sv-dropdown-
|
765
|
+
.sv-popup--dropdown-overlay .sv-list__container {
|
731
766
|
padding: 0;
|
732
767
|
}
|
733
|
-
.sv-dropdown-
|
768
|
+
.sv-popup--dropdown-overlay .sv-list {
|
734
769
|
flex-grow: 1;
|
735
|
-
padding:
|
770
|
+
padding: var(--sjs-base-unit, var(--base-unit, 8px)) 0;
|
736
771
|
}
|
737
|
-
.sv-dropdown-
|
772
|
+
.sv-popup--dropdown-overlay .sv-list__filter {
|
738
773
|
display: flex;
|
739
774
|
align-items: center;
|
740
|
-
|
775
|
+
margin-bottom: 0;
|
776
|
+
padding: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sjs-base-unit, var(--base-unit, 8px)) calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
741
777
|
}
|
742
|
-
.sv-dropdown-
|
778
|
+
.sv-popup--dropdown-overlay .sv-list__filter-icon {
|
743
779
|
position: static;
|
744
|
-
|
745
|
-
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
780
|
+
height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
746
781
|
}
|
747
|
-
.sv-dropdown-
|
782
|
+
.sv-popup--dropdown-overlay .sv-list__empty-container {
|
748
783
|
display: flex;
|
749
784
|
flex-direction: column;
|
750
785
|
justify-content: center;
|
@@ -752,12 +787,12 @@ sv-popup {
|
|
752
787
|
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
753
788
|
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
754
789
|
}
|
755
|
-
.sv-dropdown-
|
790
|
+
.sv-popup--dropdown-overlay .sv-popup__button:disabled {
|
756
791
|
pointer-events: none;
|
757
792
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
758
793
|
opacity: 0.25;
|
759
794
|
}
|
760
|
-
.sv-dropdown-
|
795
|
+
.sv-popup--dropdown-overlay .sv-list__filter-clear-button {
|
761
796
|
height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
762
797
|
width: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
763
798
|
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -766,42 +801,70 @@ sv-popup {
|
|
766
801
|
border-radius: 100%;
|
767
802
|
background-color: transparent;
|
768
803
|
}
|
769
|
-
.sv-dropdown-
|
804
|
+
.sv-popup--dropdown-overlay .sv-list__filter-clear-button svg {
|
770
805
|
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
771
806
|
width: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
772
807
|
}
|
773
|
-
.sv-dropdown-
|
808
|
+
.sv-popup--dropdown-overlay .sv-list__filter-clear-button svg use {
|
774
809
|
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
775
810
|
}
|
776
|
-
.sv-dropdown-
|
811
|
+
.sv-popup--dropdown-overlay .sv-list__input {
|
777
812
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
778
813
|
font-size: var(--sjs-font-size, 16px);
|
779
814
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
780
|
-
font-family: var(--font-family);
|
781
|
-
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0 calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sjs-base-unit, var(--base-unit, 8px));
|
815
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
816
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0 calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
782
817
|
}
|
783
|
-
.sv-dropdown-
|
784
|
-
.sv-dropdown-
|
785
|
-
.sv-dropdown-
|
818
|
+
.sv-popup--dropdown-overlay .sv-list__item:hover .sv-list__item-body,
|
819
|
+
.sv-popup--dropdown-overlay .sv-list__item:focus .sv-list__item-body,
|
820
|
+
.sv-popup--dropdown-overlay .sv-list__item--focused .sv-list__item-body {
|
786
821
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
787
822
|
}
|
788
|
-
.sv-dropdown-
|
789
|
-
.sv-dropdown-
|
790
|
-
.sv-dropdown-
|
823
|
+
.sv-popup--dropdown-overlay .sv-list__item:hover.sv-list__item--selected .sv-list__item-body,
|
824
|
+
.sv-popup--dropdown-overlay .sv-list__item:focus.sv-list__item--selected .sv-list__item-body,
|
825
|
+
.sv-popup--dropdown-overlay .sv-list__item--focused.sv-list__item--selected .sv-list__item-body {
|
791
826
|
background: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
792
827
|
color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
|
793
828
|
font-weight: 600;
|
794
829
|
}
|
830
|
+
.sv-popup--dropdown-overlay .sv-popup__body-footer .sv-action-bar {
|
831
|
+
justify-content: flex-start;
|
832
|
+
}
|
795
833
|
|
796
|
-
.sv-dropdown-popup.sv-popup--overlay
|
797
|
-
.
|
798
|
-
|
834
|
+
.sv-dropdown-popup.sv-popup--dropdown-overlay .sv-list__filter {
|
835
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sjs-base-unit, var(--base-unit, 8px)) calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
836
|
+
}
|
837
|
+
.sv-dropdown-popup.sv-popup--dropdown-overlay .sv-list {
|
838
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
839
|
+
}
|
840
|
+
.sv-dropdown-popup.sv-popup--dropdown-overlay .sv-popup__button.sv-popup__button {
|
841
|
+
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
842
|
+
}
|
843
|
+
.sv-dropdown-popup.sv-popup--dropdown-overlay .sv-popup__body-footer {
|
844
|
+
padding-top: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
845
|
+
padding-bottom: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
846
|
+
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
847
|
+
}
|
848
|
+
.sv-dropdown-popup.sv-popup--dropdown-overlay .sv-list__filter-icon .sv-svg-icon {
|
849
|
+
width: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
850
|
+
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
851
|
+
}
|
852
|
+
.sv-dropdown-popup.sv-popup--dropdown-overlay .sv-list__filter-icon {
|
853
|
+
height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
854
|
+
}
|
855
|
+
.sv-dropdown-popup.sv-popup--dropdown-overlay .sv-list__input {
|
856
|
+
padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0 calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sjs-base-unit, var(--base-unit, 8px));
|
857
|
+
}
|
858
|
+
|
859
|
+
.sv-popup--dropdown-overlay.sv-multi-select-list .sv-list__item:hover.sv-list__item--selected .sv-list__item-body,
|
860
|
+
.sv-popup--dropdown-overlay.sv-multi-select-list .sv-list__item:focus.sv-list__item--selected .sv-list__item-body,
|
861
|
+
.sv-popup--dropdown-overlay.sv-multi-select-list .sv-list__item--focused.sv-list__item--selected .sv-list__item-body {
|
799
862
|
background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
800
863
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
801
864
|
font-weight: 400;
|
802
865
|
}
|
803
866
|
|
804
|
-
.sv-dropdown-
|
867
|
+
.sv-popup--dropdown-overlay.sv-popup--tablet .sv-popup__body-content {
|
805
868
|
--sv-popup-overlay-max-height: calc(var(--sv-popup-overlay-height, 100vh) - var(--sjs-base-unit, var(--base-unit, 8px)) * 8);
|
806
869
|
--sv-popup-overlay-max-width: calc(100% - var(--sjs-base-unit, var(--base-unit, 8px)) * 8);
|
807
870
|
position: absolute;
|
@@ -809,7 +872,7 @@ sv-popup {
|
|
809
872
|
left: 50%;
|
810
873
|
top: 50%;
|
811
874
|
max-height: var(--sv-popup-overlay-max-height);
|
812
|
-
min-height: min(var(--sv-popup-overlay-max-height),
|
875
|
+
min-height: min(var(--sv-popup-overlay-max-height), 30 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
813
876
|
height: auto;
|
814
877
|
width: auto;
|
815
878
|
min-width: min(40 * (var(--sjs-base-unit, var(--base-unit, 8px))), var(--sv-popup-overlay-max-width));
|
@@ -818,9 +881,9 @@ sv-popup {
|
|
818
881
|
overflow: hidden;
|
819
882
|
margin: 0;
|
820
883
|
}
|
821
|
-
.sv-dropdown-
|
822
|
-
.sv-dropdown-
|
823
|
-
.sv-dropdown-
|
884
|
+
.sv-popup--dropdown-overlay.sv-popup--tablet .sv-popup__content,
|
885
|
+
.sv-popup--dropdown-overlay.sv-popup--tablet .sv-popup__scrolling-content,
|
886
|
+
.sv-popup--dropdown-overlay.sv-popup--tablet .sv-list__container {
|
824
887
|
flex-grow: 1;
|
825
888
|
}
|
826
889
|
|
@@ -968,7 +1031,7 @@ sv-popup {
|
|
968
1031
|
right: 10px;
|
969
1032
|
background-color: cadetblue;
|
970
1033
|
padding: 1px;
|
971
|
-
font-family: var(--font-family, var(--font-family));
|
1034
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
972
1035
|
font-size: calc(0.875 * (var(--sjs-font-size, 16px)));
|
973
1036
|
font-style: normal;
|
974
1037
|
font-weight: 400;
|
@@ -1025,9 +1088,15 @@ sv-popup {
|
|
1025
1088
|
margin: 4px;
|
1026
1089
|
}
|
1027
1090
|
|
1091
|
+
sv-brand-info, .sv-brand-info {
|
1092
|
+
z-index: 1;
|
1093
|
+
position: relative;
|
1094
|
+
margin-top: 1px;
|
1095
|
+
}
|
1096
|
+
|
1028
1097
|
.sv-brand-info {
|
1029
1098
|
width: 100%;
|
1030
|
-
font-family: var(--font-family, var(--font-family));
|
1099
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
1031
1100
|
text-align: center;
|
1032
1101
|
color: #161616;
|
1033
1102
|
background: white;
|
@@ -1140,8 +1209,8 @@ sv-popup {
|
|
1140
1209
|
align-items: center;
|
1141
1210
|
justify-content: center;
|
1142
1211
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
1143
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1144
|
-
font-size: var(--sjs-font-size, 16px);
|
1212
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1213
|
+
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
1145
1214
|
border-radius: 100%;
|
1146
1215
|
border: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid transparent;
|
1147
1216
|
width: calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -1151,11 +1220,10 @@ sv-popup {
|
|
1151
1220
|
font-weight: 600;
|
1152
1221
|
margin-left: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1153
1222
|
}
|
1154
|
-
.sv-ranking-item__index.sv-ranking-item__index
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
background-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
1223
|
+
.sv-ranking-item__index.sv-ranking-item__index svg {
|
1224
|
+
fill: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1225
|
+
width: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
1226
|
+
height: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
1159
1227
|
}
|
1160
1228
|
|
1161
1229
|
.sv-ranking-item__text {
|
@@ -1163,19 +1231,19 @@ sv-popup {
|
|
1163
1231
|
overflow: hidden;
|
1164
1232
|
text-overflow: ellipsis;
|
1165
1233
|
white-space: nowrap;
|
1166
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1234
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1167
1235
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
1168
1236
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
1169
1237
|
margin: 0 calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1170
1238
|
}
|
1171
1239
|
|
1172
1240
|
.sd-ranking--disabled .sv-ranking-item__text {
|
1173
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1241
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1174
1242
|
opacity: 0.25;
|
1175
1243
|
}
|
1176
1244
|
|
1177
1245
|
.sv-ranking-item--disabled .sv-ranking-item__text {
|
1178
|
-
color: var(--sjs-
|
1246
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
1179
1247
|
opacity: 0.25;
|
1180
1248
|
}
|
1181
1249
|
|
@@ -1300,7 +1368,7 @@ sv-popup {
|
|
1300
1368
|
width: 1px;
|
1301
1369
|
}
|
1302
1370
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--to .sv-ranking-item {
|
1303
|
-
left: var(--sjs-base-unit, var(--base-unit, 8px));
|
1371
|
+
left: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1304
1372
|
}
|
1305
1373
|
.sv-ranking--select-to-rank-horizontal .sv-ranking__container--empty.sv-ranking__container--to .sv-ranking-item {
|
1306
1374
|
left: initial;
|
@@ -1313,8 +1381,8 @@ sv-popup {
|
|
1313
1381
|
}
|
1314
1382
|
|
1315
1383
|
.sv-ranking__container-placeholder {
|
1316
|
-
color: var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45));
|
1317
|
-
font-family: var(--font-family, var(--font-family));
|
1384
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
1385
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
1318
1386
|
font-style: normal;
|
1319
1387
|
font-size: var(--sjs-font-size, 16px);
|
1320
1388
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
@@ -1323,6 +1391,8 @@ sv-popup {
|
|
1323
1391
|
justify-content: center;
|
1324
1392
|
align-items: center;
|
1325
1393
|
height: 100%;
|
1394
|
+
padding-top: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1395
|
+
padding-bottom: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1326
1396
|
}
|
1327
1397
|
|
1328
1398
|
.sv-ranking__container {
|
@@ -1335,7 +1405,7 @@ sv-popup {
|
|
1335
1405
|
}
|
1336
1406
|
|
1337
1407
|
.sv-ranking__containers-divider {
|
1338
|
-
background: var(--sjs-border-inside, var(--border-inside, rgba(0, 0, 0, 0.16)));
|
1408
|
+
background: var(--sjs-border-default, var(--sjs-border-inside, var(--border-inside, rgba(0, 0, 0, 0.16))));
|
1339
1409
|
}
|
1340
1410
|
|
1341
1411
|
.sv-ranking__container--from .sv-ranking-item__icon--focus {
|
@@ -1347,18 +1417,15 @@ sv-popup {
|
|
1347
1417
|
margin: 0;
|
1348
1418
|
overflow-y: auto;
|
1349
1419
|
background: var(--sjs-general-backcolor, var(--background, #fff));
|
1350
|
-
font-family: var(--font-family, var(--font-family));
|
1420
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
1351
1421
|
list-style-type: none;
|
1352
1422
|
}
|
1353
1423
|
|
1354
1424
|
.sv-list__empty-container {
|
1355
1425
|
width: 100%;
|
1356
|
-
font-family: var(--font-family, var(--font-family));
|
1426
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
1357
1427
|
box-sizing: border-box;
|
1358
|
-
padding: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))))
|
1359
|
-
overflow: hidden;
|
1360
|
-
text-overflow: ellipsis;
|
1361
|
-
white-space: nowrap;
|
1428
|
+
padding: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1362
1429
|
}
|
1363
1430
|
|
1364
1431
|
.sv-list__empty-text {
|
@@ -1366,6 +1433,9 @@ sv-popup {
|
|
1366
1433
|
font-size: var(--sjs-font-size, 16px);
|
1367
1434
|
font-weight: 400;
|
1368
1435
|
text-align: center;
|
1436
|
+
overflow: hidden;
|
1437
|
+
text-overflow: ellipsis;
|
1438
|
+
white-space: nowrap;
|
1369
1439
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
1370
1440
|
}
|
1371
1441
|
|
@@ -1387,7 +1457,7 @@ sv-popup {
|
|
1387
1457
|
padding-block: var(--sjs-base-unit, var(--base-unit, 8px));
|
1388
1458
|
padding-inline-end: calc(8 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1389
1459
|
padding-inline-start: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1390
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1460
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1391
1461
|
font-weight: normal;
|
1392
1462
|
font-size: var(--sjs-font-size, 16px);
|
1393
1463
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
@@ -1480,7 +1550,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1480
1550
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected .sv-list__item-body,
|
1481
1551
|
.sv-multi-select-list .sv-list__item.sv-list__item--selected:hover .sv-list__item-body {
|
1482
1552
|
background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
1483
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
1553
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1484
1554
|
font-weight: 400;
|
1485
1555
|
}
|
1486
1556
|
|
@@ -1569,7 +1639,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1569
1639
|
min-width: calc(30 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1570
1640
|
text-align: center;
|
1571
1641
|
z-index: 1600;
|
1572
|
-
font-family: var(--font-family, var(--font-family));
|
1642
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
1573
1643
|
font-size: var(--sjs-font-size, 16px);
|
1574
1644
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
1575
1645
|
display: flex;
|
@@ -1662,7 +1732,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1662
1732
|
}
|
1663
1733
|
|
1664
1734
|
.sd-title.sd-element__title {
|
1665
|
-
font-family: var(--sjs-font-questiontitle-family, var(--font-family));
|
1735
|
+
font-family: var(--sjs-font-questiontitle-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
1666
1736
|
font-weight: var(--sjs-font-questiontitle-weight, 600);
|
1667
1737
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
1668
1738
|
}
|
@@ -1768,117 +1838,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1768
1838
|
background: var(--sjs-questionpanel-backcolor, var(--sjs-question-background, var(--sjs-general-backcolor, var(--background, #fff))));
|
1769
1839
|
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
1770
1840
|
}
|
1771
|
-
.sd-element--with-frame.sd-question--paneldynamic {
|
1772
|
-
padding-bottom: 0;
|
1773
|
-
}
|
1774
|
-
.sd-element--with-frame.sd-question--paneldynamic > .sd-question__erbox--below-question {
|
1775
|
-
bottom: 0;
|
1776
|
-
margin-top: 0;
|
1777
|
-
}
|
1778
|
-
|
1779
|
-
.sd-element--complex.sd-element--complex > .sd-question__erbox--above-question {
|
1780
|
-
margin-top: 0;
|
1781
|
-
margin-bottom: 0;
|
1782
|
-
}
|
1783
|
-
.sd-element--complex > .sd-element__header--location-top {
|
1784
|
-
margin-top: 0;
|
1785
|
-
}
|
1786
|
-
.sd-element--complex > .sd-element__header--location-top:after {
|
1787
|
-
content: " ";
|
1788
|
-
display: block;
|
1789
|
-
position: relative;
|
1790
|
-
height: 1px;
|
1791
|
-
background: var(--sjs-border-light, var(--border-light, #eaeaea));
|
1792
|
-
bottom: 0;
|
1793
|
-
}
|
1794
|
-
.sd-element--complex.sd-element--with-frame {
|
1795
|
-
padding-top: 0;
|
1796
|
-
}
|
1797
|
-
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top {
|
1798
|
-
margin-top: 0;
|
1799
|
-
padding-top: var(--sd-base-vertical-padding);
|
1800
|
-
padding-bottom: var(--sd-base-vertical-padding);
|
1801
|
-
}
|
1802
|
-
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top:after {
|
1803
|
-
bottom: calc(-1 * var(--sd-base-vertical-padding));
|
1804
|
-
left: calc(-1 * var(--sd-base-padding));
|
1805
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1806
|
-
}
|
1807
|
-
|
1808
|
-
.sd-element--expanded > .sd-element__header,
|
1809
|
-
.sd-element--collapsed > .sd-element__header {
|
1810
|
-
cursor: pointer;
|
1811
|
-
}
|
1812
|
-
|
1813
|
-
.sd-element--collapsed > .sd-element__header {
|
1814
|
-
padding: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sd-base-padding);
|
1815
|
-
box-sizing: border-box;
|
1816
|
-
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
1817
|
-
}
|
1818
|
-
.sd-element--collapsed.sd-element--complex > .sd-element__header--location-top:after {
|
1819
|
-
display: none;
|
1820
|
-
}
|
1821
|
-
.sd-element--collapsed > .sd-element__header--location-top {
|
1822
|
-
margin-top: 0;
|
1823
|
-
}
|
1824
|
-
.sd-element--collapsed.sd-element--with-frame {
|
1825
|
-
padding-top: 0;
|
1826
|
-
padding-bottom: 0;
|
1827
|
-
}
|
1828
|
-
.sd-element--collapsed.sd-element--with-frame > .sd-element__header {
|
1829
|
-
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1830
|
-
padding-bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1831
|
-
border-radius: var(--sjs-questionpanel-cornerRadius, var(--sjs-corner-radius, 4px));
|
1832
|
-
}
|
1833
|
-
.sd-element--collapsed > .sd-element__header:focus-within, .sd-element--collapsed > .sd-element__header:hover {
|
1834
|
-
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
1835
|
-
}
|
1836
|
-
|
1837
|
-
.sd-element--collapsed > .sd-element__header {
|
1838
|
-
margin-left: calc(-1 * var(--sd-base-padding));
|
1839
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1840
|
-
}
|
1841
|
-
|
1842
|
-
.sd-element--nested.sd-element--complex > .sd-element__header--location-top:after {
|
1843
|
-
bottom: calc(-0.5 * var(--sd-base-vertical-padding));
|
1844
|
-
}
|
1845
|
-
.sd-element--nested.sd-element--collapsed > .sd-element__header:hover, .sd-element--nested.sd-element--collapsed > .sd-element__header:focus-within {
|
1846
|
-
box-shadow: 0 calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0 0 var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9)), 0 calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0 var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
1847
|
-
}
|
1848
|
-
.sd-element--nested.sd-panel, .sd-element--nested.sd-question--paneldynamic {
|
1849
|
-
border: 1px solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
1850
|
-
border-radius: calc(var(--sjs-corner-radius, 4px) - 4px);
|
1851
|
-
box-sizing: border-box;
|
1852
|
-
padding-left: var(--sd-base-padding);
|
1853
|
-
padding-right: var(--sd-base-padding);
|
1854
|
-
}
|
1855
|
-
.sd-element--nested.sd-panel > .sd-element__header--location-top, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top {
|
1856
|
-
padding-top: calc(0.5 * var(--sd-base-vertical-padding));
|
1857
|
-
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1858
|
-
}
|
1859
|
-
.sd-element--nested.sd-panel > .sd-element__header--location-top:after, .sd-element--nested.sd-question--paneldynamic > .sd-element__header--location-top:after {
|
1860
|
-
left: calc(-1 * var(--sd-base-padding));
|
1861
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1862
|
-
bottom: calc(-0.5 * var(--sd-base-vertical-padding));
|
1863
|
-
}
|
1864
|
-
.sd-element--nested.sd-panel > .sd-question__erbox--outside-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--outside-question {
|
1865
|
-
margin-left: calc(-1 * var(--sd-base-padding));
|
1866
|
-
margin-right: calc(-1 * var(--sd-base-padding));
|
1867
|
-
width: calc(100% + 2 * var(--sd-base-padding));
|
1868
|
-
}
|
1869
|
-
.sd-element--nested.sd-panel > .sd-question__erbox--below-question, .sd-element--nested.sd-question--paneldynamic > .sd-question__erbox--below-question {
|
1870
|
-
bottom: 0;
|
1871
|
-
margin-top: 0;
|
1872
|
-
}
|
1873
|
-
.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 {
|
1874
|
-
display: none;
|
1875
|
-
}
|
1876
|
-
.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 {
|
1877
|
-
box-shadow: none;
|
1878
|
-
}
|
1879
|
-
.sd-element--nested > .sd-panel__content {
|
1880
|
-
padding-bottom: var(--sd-base-padding);
|
1881
|
-
}
|
1882
1841
|
|
1883
1842
|
.sd-element--with-frame.sd-element--compact {
|
1884
1843
|
border: 1px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
@@ -1892,13 +1851,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1892
1851
|
}
|
1893
1852
|
|
1894
1853
|
.sd-question__erbox {
|
1854
|
+
display: block;
|
1895
1855
|
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1896
1856
|
border-radius: var(--sjs-corner-radius, 4px);
|
1897
|
-
font-weight: 600;
|
1898
1857
|
line-height: var(--sjs-font-size, 16px);
|
1899
1858
|
font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
|
1900
|
-
white-space: normal;
|
1901
1859
|
text-align: left;
|
1860
|
+
color: var(--sjs-special-red, var(--red, #e60a3e));
|
1861
|
+
font-weight: 600;
|
1862
|
+
white-space: normal;
|
1902
1863
|
}
|
1903
1864
|
|
1904
1865
|
.sd-question__erbox--outside-question {
|
@@ -1909,26 +1870,39 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1909
1870
|
}
|
1910
1871
|
|
1911
1872
|
.sd-question__erbox--above-question {
|
1912
|
-
margin-bottom: var(--
|
1873
|
+
margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
1913
1874
|
}
|
1914
1875
|
|
1915
1876
|
.sd-question__erbox--below-question {
|
1916
1877
|
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
1917
1878
|
}
|
1918
1879
|
|
1880
|
+
.sd-question--title-top > .sd-question__erbox--above-question {
|
1881
|
+
margin-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1882
|
+
}
|
1883
|
+
|
1884
|
+
.sd-question--description-under-input > .sd-question__erbox--below-question,
|
1885
|
+
.sd-question--title-bottom > .sd-question__erbox--below-question {
|
1886
|
+
margin-top: calc(0.25 * var(--sd-base-vertical-padding) + 0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
1887
|
+
}
|
1888
|
+
|
1919
1889
|
.sd-element--with-frame > .sd-question__erbox--above-question {
|
1890
|
+
margin-bottom: var(--sd-base-padding);
|
1920
1891
|
border-radius: var(--sjs-corner-radius, 4px) var(--sjs-corner-radius, 4px) 0 0;
|
1921
1892
|
}
|
1922
1893
|
|
1923
1894
|
.sd-element--with-frame > .sd-question__erbox--below-question {
|
1924
|
-
|
1925
|
-
margin-top: 0;
|
1926
|
-
bottom: calc(-1 * var(--sd-base-padding));
|
1895
|
+
margin-top: var(--sd-base-padding);
|
1927
1896
|
border-radius: 0 0 var(--sjs-corner-radius, 4px) var(--sjs-corner-radius, 4px);
|
1928
1897
|
}
|
1929
1898
|
|
1930
|
-
.sd-
|
1931
|
-
margin-
|
1899
|
+
.sd-element--with-frame.sd-question--title-top > .sd-question__erbox--above-question {
|
1900
|
+
margin-bottom: calc(0.5 * var(--sd-base-vertical-padding) + var(--sjs-base-unit, var(--base-unit, 8px)));
|
1901
|
+
}
|
1902
|
+
|
1903
|
+
.sd-element--with-frame.sd-question--description-under-input > .sd-question__erbox--below-question,
|
1904
|
+
.sd-element--with-frame.sd-question--title-bottom > .sd-question__erbox--below-question {
|
1905
|
+
margin-top: calc(0.5 * var(--sd-base-vertical-padding) + var(--sjs-base-unit, var(--base-unit, 8px)));
|
1932
1906
|
}
|
1933
1907
|
|
1934
1908
|
.sd-question__header {
|
@@ -1936,25 +1910,27 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1936
1910
|
}
|
1937
1911
|
|
1938
1912
|
.sd-question__header--location-top {
|
1939
|
-
margin-top: calc(-0.25 * var(--sd-base-vertical-padding));
|
1940
1913
|
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
1941
1914
|
}
|
1942
1915
|
|
1943
1916
|
.sd-question__header--location--bottom {
|
1944
|
-
padding-top: calc(0.
|
1917
|
+
padding-top: calc(0.375 * var(--sd-base-vertical-padding));
|
1945
1918
|
}
|
1946
1919
|
|
1920
|
+
.sd-element--with-frame.sd-question--title-top {
|
1921
|
+
padding-top: var(--sd-base-vertical-padding);
|
1922
|
+
}
|
1923
|
+
.sd-element--with-frame.sd-question--error-top {
|
1924
|
+
padding-top: 0;
|
1925
|
+
}
|
1926
|
+
.sd-element--with-frame.sd-question--error-bottom {
|
1927
|
+
padding-bottom: 0;
|
1928
|
+
}
|
1947
1929
|
.sd-element--with-frame > .sd-question__erbox--outside-question {
|
1948
1930
|
margin-left: calc(-1 * var(--sd-base-padding));
|
1949
1931
|
margin-right: calc(-1 * var(--sd-base-padding));
|
1950
1932
|
width: calc(100% + 2 * var(--sd-base-padding));
|
1951
1933
|
}
|
1952
|
-
.sd-element--with-frame > .sd-question__erbox--above-question {
|
1953
|
-
margin-top: calc(-1 * var(--sd-base-padding));
|
1954
|
-
}
|
1955
|
-
.sd-element--with-frame > .sd-question__content > .sd-question__header--location--bottom {
|
1956
|
-
margin-bottom: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
1957
|
-
}
|
1958
1934
|
|
1959
1935
|
.sd-scrollable .sd-question__content {
|
1960
1936
|
overflow-x: auto;
|
@@ -1995,39 +1971,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
1995
1971
|
white-space: normal;
|
1996
1972
|
}
|
1997
1973
|
|
1998
|
-
.sd-question__erbox--tooltip {
|
1999
|
-
display: none;
|
2000
|
-
position: fixed;
|
2001
|
-
height: auto;
|
2002
|
-
width: auto;
|
2003
|
-
max-width: calc(29 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2004
|
-
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2005
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2006
|
-
opacity: 0.75;
|
2007
|
-
box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
|
2008
|
-
z-index: 1000;
|
2009
|
-
}
|
2010
|
-
|
2011
|
-
.sd-question__content:hover:not(:focus-within) > .sd-question__erbox--tooltip {
|
2012
|
-
display: block;
|
2013
|
-
}
|
2014
|
-
|
2015
|
-
.sd-question__erbox--location--top,
|
2016
|
-
.sd-question__erbox--location--bottom {
|
2017
|
-
display: block;
|
2018
|
-
color: var(--sjs-special-red, var(--red, #e60a3e));
|
2019
|
-
padding-left: 0;
|
2020
|
-
padding-right: 0;
|
2021
|
-
text-align: left;
|
2022
|
-
}
|
2023
|
-
|
2024
|
-
.sd-question--empty.sd-question--complex > .sd-question__header--location-top {
|
2025
|
-
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
2026
|
-
}
|
2027
|
-
.sd-question--empty.sd-question--complex > .sd-question__header--location-top:after {
|
2028
|
-
display: none;
|
2029
|
-
}
|
2030
|
-
|
2031
1974
|
.sd-question__placeholder {
|
2032
1975
|
display: flex;
|
2033
1976
|
flex-direction: column;
|
@@ -2044,14 +1987,6 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2044
1987
|
white-space: pre-line;
|
2045
1988
|
}
|
2046
1989
|
|
2047
|
-
.sd-question--empty.sd-question--complex > .sd-question__content {
|
2048
|
-
padding-top: 0;
|
2049
|
-
padding-bottom: 0;
|
2050
|
-
}
|
2051
|
-
.sd-question--empty.sd-question--complex > .sd-question__content:first-child {
|
2052
|
-
padding-top: var(--sd-base-padding);
|
2053
|
-
}
|
2054
|
-
|
2055
1990
|
.sd-scrollable-container:not(.sd-scrollable-container--compact) {
|
2056
1991
|
width: max-content;
|
2057
1992
|
overflow: visible;
|
@@ -2060,7 +1995,117 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2060
1995
|
|
2061
1996
|
.sd-question__title--empty .sv-string-viewer {
|
2062
1997
|
display: inline-block;
|
2063
|
-
height: calc(
|
1998
|
+
height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
1999
|
+
}
|
2000
|
+
|
2001
|
+
.sd-element--expanded > .sd-element__header,
|
2002
|
+
.sd-element--collapsed > .sd-element__header {
|
2003
|
+
cursor: pointer;
|
2004
|
+
}
|
2005
|
+
|
2006
|
+
.sd-element--collapsed > .sd-element__header {
|
2007
|
+
padding: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px)))) var(--sd-base-padding);
|
2008
|
+
box-sizing: border-box;
|
2009
|
+
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
2010
|
+
margin-left: calc(-1 * var(--sd-base-padding));
|
2011
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
2012
|
+
}
|
2013
|
+
.sd-element--collapsed.sd-element--with-frame {
|
2014
|
+
padding-top: 0;
|
2015
|
+
padding-bottom: 0;
|
2016
|
+
}
|
2017
|
+
.sd-element--collapsed.sd-element--with-frame > .sd-element__header {
|
2018
|
+
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2019
|
+
padding-bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2020
|
+
border-radius: var(--sjs-questionpanel-cornerRadius, var(--sjs-corner-radius, 4px));
|
2021
|
+
}
|
2022
|
+
.sd-element--collapsed > .sd-element__header:focus-within, .sd-element--collapsed > .sd-element__header:hover {
|
2023
|
+
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2024
|
+
}
|
2025
|
+
.sd-element--collapsed.sd-element--nested > .sd-element__header:hover, .sd-element--collapsed.sd-element--nested > .sd-element__header:focus-within {
|
2026
|
+
box-shadow: 0 calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0 0 var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9)), 0 calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0 var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.sd-element--complex.sd-element--with-frame {
|
2030
|
+
padding-top: 0;
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
.sd-element--complex.sd-element--nested-with-borders > .sd-question__erbox--outside-question,
|
2034
|
+
.sd-element--complex.sd-element--with-frame > .sd-question__erbox--outside-question {
|
2035
|
+
margin-top: 0;
|
2036
|
+
margin-bottom: 0;
|
2037
|
+
}
|
2038
|
+
|
2039
|
+
.sd-element--complex > .sd-element__header:after {
|
2040
|
+
content: " ";
|
2041
|
+
display: block;
|
2042
|
+
position: relative;
|
2043
|
+
height: 1px;
|
2044
|
+
background: var(--sjs-border-light, var(--border-light, #eaeaea));
|
2045
|
+
bottom: 0;
|
2046
|
+
}
|
2047
|
+
|
2048
|
+
.sd-element--complex.sd-element--with-frame > .sd-element__header {
|
2049
|
+
padding-top: var(--sd-base-vertical-padding);
|
2050
|
+
padding-bottom: var(--sd-base-vertical-padding);
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
.sd-element--collapsed.sd-element--complex > .sd-element__header {
|
2054
|
+
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2055
|
+
padding-bottom: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2056
|
+
}
|
2057
|
+
|
2058
|
+
.sd-element--nested.sd-element--complex > .sd-element__header--location-top:after {
|
2059
|
+
bottom: calc(-0.5 * var(--sd-base-vertical-padding));
|
2060
|
+
}
|
2061
|
+
|
2062
|
+
.sd-element--nested-with-borders {
|
2063
|
+
border: 1px solid var(--sjs-border-light, var(--border-light, #eaeaea));
|
2064
|
+
border-radius: calc(var(--sjs-corner-radius, 4px) - 4px);
|
2065
|
+
box-sizing: border-box;
|
2066
|
+
padding-left: var(--sd-base-padding);
|
2067
|
+
padding-right: var(--sd-base-padding);
|
2068
|
+
}
|
2069
|
+
.sd-element--nested-with-borders > .sd-element__header--location-top {
|
2070
|
+
padding-top: calc(0.5 * var(--sd-base-vertical-padding));
|
2071
|
+
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
2072
|
+
}
|
2073
|
+
.sd-element--nested-with-borders > .sd-question__erbox--outside-question {
|
2074
|
+
margin-left: calc(-1 * var(--sd-base-padding));
|
2075
|
+
margin-right: calc(-1 * var(--sd-base-padding));
|
2076
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
2077
|
+
}
|
2078
|
+
.sd-element--nested-with-borders > .sd-question__erbox--below-question {
|
2079
|
+
bottom: 0;
|
2080
|
+
margin-top: 0;
|
2081
|
+
}
|
2082
|
+
.sd-element--nested-with-borders.sd-element--collapsed > .sd-element__header--location-top:hover, .sd-element--nested-with-borders.sd-element--collapsed > .sd-element__header--location-top:focus-within {
|
2083
|
+
box-shadow: none;
|
2084
|
+
}
|
2085
|
+
|
2086
|
+
.sd-element--nested-with-borders > .sd-element__header--location-top:after,
|
2087
|
+
.sd-element--complex.sd-element--with-frame > .sd-element__header--location-top:after {
|
2088
|
+
bottom: calc(-1 * var(--sd-base-vertical-padding));
|
2089
|
+
left: calc(-1 * var(--sd-base-padding));
|
2090
|
+
width: calc(100% + 2 * var(--sd-base-padding));
|
2091
|
+
}
|
2092
|
+
|
2093
|
+
.sd-element--collapsed.sd-element--complex > .sd-element__header--location-top:after {
|
2094
|
+
display: none;
|
2095
|
+
}
|
2096
|
+
|
2097
|
+
.sd-question--empty.sd-question--complex > .sd-question__content {
|
2098
|
+
padding-top: 0;
|
2099
|
+
padding-bottom: 0;
|
2100
|
+
}
|
2101
|
+
.sd-question--empty.sd-question--complex > .sd-question__content:first-child {
|
2102
|
+
padding-top: var(--sd-base-padding);
|
2103
|
+
}
|
2104
|
+
.sd-question--empty.sd-question--complex > .sd-question__header--location-top {
|
2105
|
+
padding-bottom: calc(0.5 * var(--sd-base-vertical-padding));
|
2106
|
+
}
|
2107
|
+
.sd-question--empty.sd-question--complex > .sd-question__header--location-top:after {
|
2108
|
+
display: none;
|
2064
2109
|
}
|
2065
2110
|
|
2066
2111
|
.sd-input {
|
@@ -2072,7 +2117,7 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list__item-icon use {
|
|
2072
2117
|
box-sizing: border-box;
|
2073
2118
|
padding: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2074
2119
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
2075
|
-
font-family: var(--sjs-font-editorfont-family, var(--font-family));
|
2120
|
+
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2076
2121
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
2077
2122
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
|
2078
2123
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
@@ -2137,7 +2182,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2137
2182
|
justify-content: flex-end;
|
2138
2183
|
align-items: flex-end;
|
2139
2184
|
padding: 0px;
|
2140
|
-
font-family: var(--font-family);
|
2185
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
2141
2186
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
2142
2187
|
font-size: var(--sjs-font-size, 16px);
|
2143
2188
|
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
@@ -2220,20 +2265,20 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2220
2265
|
|
2221
2266
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header {
|
2222
2267
|
padding-top: 0;
|
2223
|
-
padding-bottom:
|
2268
|
+
padding-bottom: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2224
2269
|
}
|
2225
2270
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header:after {
|
2226
2271
|
content: none;
|
2227
2272
|
}
|
2228
2273
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__title {
|
2229
2274
|
--page-title-font-size: var(--sjs-font-pagetitle-size, calc(1.5 * (var(--sjs-font-size, 16px))));
|
2230
|
-
font-family: var(--sjs-font-pagetitle-family, var(--font-family));
|
2275
|
+
font-family: var(--sjs-font-pagetitle-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2231
2276
|
font-weight: var(--sjs-font-pagetitle-weight, 700);
|
2232
2277
|
font-size: var(--page-title-font-size);
|
2233
2278
|
color: var(--sjs-font-pagetitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
2234
2279
|
position: static;
|
2235
2280
|
line-height: calc(1.33 * (var(--page-title-font-size)));
|
2236
|
-
margin: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0px;
|
2281
|
+
margin: 0 0 calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0px;
|
2237
2282
|
}
|
2238
2283
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__title span {
|
2239
2284
|
font-family: inherit;
|
@@ -2243,7 +2288,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2243
2288
|
line-height: inherit;
|
2244
2289
|
}
|
2245
2290
|
.sd-panel.sd-panel--as-page > .sd-panel__header.sd-panel__header .sd-panel__description {
|
2246
|
-
font-family: var(--sjs-font-pagedescription-family, var(--font-family));
|
2291
|
+
font-family: var(--sjs-font-pagedescription-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2247
2292
|
font-weight: var(--sjs-font-pagedescription-weight, 400);
|
2248
2293
|
font-size: var(--sjs-font-pagedescription-size, var(--sjs-font-size, 16px));
|
2249
2294
|
color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
@@ -2251,15 +2296,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2251
2296
|
line-height: calc(1.5 * (var(--sjs-font-pagedescription-size, var(--sjs-font-size, 16px))));
|
2252
2297
|
margin: 0 0 calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0;
|
2253
2298
|
}
|
2254
|
-
.sd-panel.sd-panel--as-page .sd-panel__header + .sd-panel__content {
|
2255
|
-
margin-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2256
|
-
}
|
2257
2299
|
.sd-panel.sd-panel--as-page > .sd-panel__content {
|
2258
2300
|
padding-top: 0;
|
2259
2301
|
}
|
2260
2302
|
|
2261
2303
|
.sd-row ~ .sd-row .sd-panel--as-page {
|
2262
|
-
padding-top: calc(
|
2304
|
+
padding-top: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2263
2305
|
}
|
2264
2306
|
|
2265
2307
|
.sd-panel__required-text {
|
@@ -2281,6 +2323,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2281
2323
|
padding-top: var(--sd-base-padding);
|
2282
2324
|
}
|
2283
2325
|
|
2326
|
+
.sd-panel.sd-element--nested > .sd-panel__content {
|
2327
|
+
padding-bottom: var(--sd-base-padding);
|
2328
|
+
}
|
2329
|
+
|
2284
2330
|
.sjs_sp_placeholder {
|
2285
2331
|
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2286
2332
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
@@ -2369,7 +2415,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2369
2415
|
border: none;
|
2370
2416
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
2371
2417
|
font-size: var(--sjs-font-size, 16px);
|
2372
|
-
font-family: var(--font-family, var(--font-family));
|
2418
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
2373
2419
|
font-weight: 600;
|
2374
2420
|
padding: var(--sjs-base-unit, var(--base-unit, 8px)) 0;
|
2375
2421
|
}
|
@@ -2441,28 +2487,37 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2441
2487
|
padding-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2442
2488
|
}
|
2443
2489
|
|
2444
|
-
.sd-panel__content .sd-table--no-header {
|
2490
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-table--no-header {
|
2445
2491
|
padding-top: 0;
|
2446
2492
|
}
|
2447
|
-
.sd-panel__content .sd-question--table .sd-question__content {
|
2448
|
-
padding-
|
2493
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table .sd-question__content {
|
2494
|
+
padding-bottom: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2495
|
+
margin-bottom: calc(-0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2496
|
+
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2497
|
+
margin-top: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2449
2498
|
}
|
2450
|
-
.sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content {
|
2499
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content {
|
2451
2500
|
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2452
2501
|
}
|
2453
|
-
.sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content .sd-table--no-header {
|
2502
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content .sd-table--no-header {
|
2454
2503
|
padding-top: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2455
2504
|
}
|
2456
|
-
.sd-panel__content .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2505
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2457
2506
|
margin-top: calc(-3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2458
2507
|
}
|
2459
|
-
.sd-
|
2508
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table.sd-question--error-top > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2509
|
+
margin-top: 0;
|
2510
|
+
}
|
2511
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2460
2512
|
margin-top: calc(-2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2461
2513
|
}
|
2462
|
-
.sd-panel__content .sd-question--table
|
2514
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table.sd-question--error-top > .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2515
|
+
margin-top: calc(0 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2516
|
+
}
|
2517
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content .sd-question--table > .sd-question__header + .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2463
2518
|
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2464
2519
|
}
|
2465
|
-
.sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__header + .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2520
|
+
.sd-panel:not(.sd-panel--as-page) > .sd-panel__content > .sd-row:not(:first-of-type) .sd-question--table > .sd-question__header + .sd-question__content .sd-table-wrapper .sd-table:not(.sd-table--no-header) {
|
2466
2521
|
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2467
2522
|
}
|
2468
2523
|
|
@@ -2556,6 +2611,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2556
2611
|
.sd-table__cell--header span {
|
2557
2612
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
2558
2613
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
2614
|
+
font-weight: var(--sjs-font-questiontitle-weight, 600);
|
2559
2615
|
}
|
2560
2616
|
|
2561
2617
|
.sd-table__cell--header {
|
@@ -2617,7 +2673,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2617
2673
|
display: block;
|
2618
2674
|
width: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
2619
2675
|
height: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
2620
|
-
fill: var(--sjs-
|
2676
|
+
fill: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2621
2677
|
}
|
2622
2678
|
.sd-table__cell--detail-button:hover {
|
2623
2679
|
background: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
|
@@ -2634,7 +2690,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2634
2690
|
}
|
2635
2691
|
|
2636
2692
|
.sd-table__cell--row-text {
|
2637
|
-
font-weight: 600;
|
2693
|
+
font-weight: var(--sjs-font-questiontitle-weight, 600);
|
2638
2694
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
2639
2695
|
text-align: left;
|
2640
2696
|
min-width: calc(12 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -2648,9 +2704,6 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2648
2704
|
.sd-table__question-wrapper:not(:focus-within):hover {
|
2649
2705
|
position: relative;
|
2650
2706
|
}
|
2651
|
-
.sd-table__question-wrapper:not(:focus-within):hover .sd-question__erbox--tooltip {
|
2652
|
-
display: inline-block;
|
2653
|
-
}
|
2654
2707
|
|
2655
2708
|
.sd-table__cell--actions:not(.sd-table__cell--vertical),
|
2656
2709
|
.sd-table__cell--empty,
|
@@ -2726,19 +2779,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2726
2779
|
padding-top: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2727
2780
|
min-width: min-content;
|
2728
2781
|
}
|
2729
|
-
.sd-question--table.sd-element--nested > .sd-question__erbox--above-question {
|
2730
|
-
margin-bottom: var(--sd-base-vertical-padding);
|
2731
|
-
}
|
2732
2782
|
.sd-question--table.sd-element--nested > .sd-question__content {
|
2733
2783
|
min-width: auto;
|
2734
2784
|
overflow-x: auto;
|
2735
2785
|
}
|
2736
|
-
.sd-question--table.sd-element--nested > .sd-question__content {
|
2737
|
-
padding-bottom: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2738
|
-
margin-bottom: calc(-0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2739
|
-
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
2740
|
-
margin-top: calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2741
|
-
}
|
2742
2786
|
.sd-question--table.sd-element--nested > .sd-question__content, .sd-question--table:not(.sd-element--with-frame):not(.sd-element--nested) {
|
2743
2787
|
padding-right: var(--sd-base-padding);
|
2744
2788
|
margin-right: calc(-1 * var(--sd-base-padding));
|
@@ -2759,6 +2803,10 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2759
2803
|
margin: auto;
|
2760
2804
|
}
|
2761
2805
|
|
2806
|
+
.sd-root-modern--mobile .sd-table__question-wrapper .sd-boolean-root {
|
2807
|
+
margin: initial;
|
2808
|
+
}
|
2809
|
+
|
2762
2810
|
.sd-table.sd-matrixdynamic {
|
2763
2811
|
table-layout: auto;
|
2764
2812
|
}
|
@@ -2779,18 +2827,17 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2779
2827
|
|
2780
2828
|
.sd-page .sd-page__title {
|
2781
2829
|
--page-title-font-size: var(--sjs-font-pagetitle-size, calc(1.5 * (var(--sjs-font-size, 16px))));
|
2782
|
-
font-family: var(--sjs-font-pagetitle-family, var(--font-family));
|
2830
|
+
font-family: var(--sjs-font-pagetitle-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2783
2831
|
font-weight: var(--sjs-font-pagetitle-weight, 700);
|
2784
2832
|
font-size: var(--page-title-font-size);
|
2785
2833
|
color: var(--sjs-font-pagetitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
2786
2834
|
position: static;
|
2787
2835
|
line-height: calc(1.33 * (var(--page-title-font-size)));
|
2788
|
-
margin: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0px;
|
2789
|
-
margin-top: 0;
|
2836
|
+
margin: 0 0 calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0px;
|
2790
2837
|
}
|
2791
2838
|
|
2792
2839
|
.sd-page .sd-page__description {
|
2793
|
-
font-family: var(--sjs-font-pagedescription-family, var(--font-family));
|
2840
|
+
font-family: var(--sjs-font-pagedescription-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2794
2841
|
font-weight: var(--sjs-font-pagedescription-weight, 400);
|
2795
2842
|
font-size: var(--sjs-font-pagedescription-size, var(--sjs-font-size, 16px));
|
2796
2843
|
color: var(--sjs-font-pagedescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
@@ -2879,7 +2926,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2879
2926
|
|
2880
2927
|
.sd-title {
|
2881
2928
|
display: block;
|
2882
|
-
font-family: var(--font-family, var(--font-family));
|
2929
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
2883
2930
|
font-style: normal;
|
2884
2931
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
2885
2932
|
flex-direction: row;
|
@@ -2892,7 +2939,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2892
2939
|
align-items: center;
|
2893
2940
|
padding: var(--sd-page-vertical-padding) var(--sd-page-vertical-padding);
|
2894
2941
|
overflow: auto;
|
2895
|
-
font-family: var(--font-family, var(--font-family));
|
2942
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
2896
2943
|
gap: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
2897
2944
|
box-shadow: 0px 2px 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
|
2898
2945
|
}
|
@@ -2907,11 +2954,11 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2907
2954
|
flex-grow: 1;
|
2908
2955
|
}
|
2909
2956
|
.sd-header__text .sd-title {
|
2910
|
-
--
|
2911
|
-
font-size: var(--
|
2912
|
-
line-height: calc(1.25 * (var(--
|
2913
|
-
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
2914
|
-
font-family: var(--sjs-font-surveytitle-family, var(--font-family));
|
2957
|
+
--survey-title-font-size: var(--sjs-font-surveytitle-size, calc(2 * (var(--sjs-font-size, 16px))));
|
2958
|
+
font-size: var(--survey-title-font-size);
|
2959
|
+
line-height: calc(1.25 * (var(--survey-title-font-size)));
|
2960
|
+
color: var(--sjs-font-surveytitle-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
|
2961
|
+
font-family: var(--sjs-font-surveytitle-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2915
2962
|
font-weight: var(--sjs-font-surveytitle-weight, 700);
|
2916
2963
|
}
|
2917
2964
|
.sd-header__text h3 {
|
@@ -2922,6 +2969,14 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2922
2969
|
font-weight: 400;
|
2923
2970
|
line-height: calc(1.5 * (var(--sjs-font-size, 16px)));
|
2924
2971
|
}
|
2972
|
+
.sd-header__text .sd-description {
|
2973
|
+
--survey-description-font-size: var(--sjs-font-surveydescription-size, var(--sjs-font-size, 16px));
|
2974
|
+
font-size: var(--survey-description-font-size);
|
2975
|
+
line-height: calc(1.5 * (var(--survey-description-font-size)));
|
2976
|
+
color: var(--sjs-font-surveydescription-color, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
2977
|
+
font-family: var(--sjs-font-surveydescription-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2978
|
+
font-weight: var(--sjs-font-surveydescription-weight, 400);
|
2979
|
+
}
|
2925
2980
|
|
2926
2981
|
.sd-title .sv-title-actions {
|
2927
2982
|
width: 100%;
|
@@ -2968,7 +3023,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2968
3023
|
|
2969
3024
|
.sd-description {
|
2970
3025
|
font-style: normal;
|
2971
|
-
font-family: var(--sjs-font-questiondescription-family, var(--font-family));
|
3026
|
+
font-family: var(--sjs-font-questiondescription-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
2972
3027
|
font-weight: var(--sjs-font-questiondescription-weight, 400);
|
2973
3028
|
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
2974
3029
|
font-size: var(--sjs-font-questiondescription-size, var(--sjs-font-size, 16px));
|
@@ -2978,11 +3033,11 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
2978
3033
|
}
|
2979
3034
|
|
2980
3035
|
.sd-description.sd-question__description--under-input {
|
2981
|
-
padding-top: calc(
|
3036
|
+
padding-top: calc(0.375 * var(--sd-base-vertical-padding));
|
2982
3037
|
}
|
2983
3038
|
|
2984
3039
|
.sd-element__header .sd-description {
|
2985
|
-
margin-top: calc(0.5 *
|
3040
|
+
margin-top: calc(0.25 * var(--sd-base-vertical-padding) - 0.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
2986
3041
|
}
|
2987
3042
|
|
2988
3043
|
.sd-item {
|
@@ -3024,12 +3079,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3024
3079
|
}
|
3025
3080
|
|
3026
3081
|
.sd-item__control-label {
|
3027
|
-
font-family: var(--sjs-font-editorfont-family, var(--font-family));
|
3082
|
+
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
3028
3083
|
font-style: normal;
|
3029
3084
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3030
3085
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
3031
3086
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
3032
|
-
color: var(--sjs-font-
|
3087
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3033
3088
|
white-space: normal;
|
3034
3089
|
word-break: break-word;
|
3035
3090
|
width: 100%;
|
@@ -3037,12 +3092,12 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3037
3092
|
}
|
3038
3093
|
|
3039
3094
|
.sd-item--disabled .sd-item__control-label {
|
3040
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3095
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3041
3096
|
opacity: 0.25;
|
3042
3097
|
}
|
3043
3098
|
|
3044
3099
|
.sd-root--readonly .sd-item--disabled .sd-item__control-label {
|
3045
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3100
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3046
3101
|
}
|
3047
3102
|
|
3048
3103
|
.sd-item--error .sd-item__decorator {
|
@@ -3177,7 +3232,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
|
|
3177
3232
|
}
|
3178
3233
|
|
3179
3234
|
.sd-matrix__cell:first-of-type {
|
3180
|
-
font-weight: 600;
|
3235
|
+
font-weight: var(--sjs-font-questiontitle-weight, 600);
|
3181
3236
|
text-align: left;
|
3182
3237
|
}
|
3183
3238
|
|
@@ -3468,9 +3523,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3468
3523
|
}
|
3469
3524
|
|
3470
3525
|
.sd-rating__item-text.sd-rating__item-text {
|
3471
|
-
font-family: var(--sjs-font-editorfont-family, var(--font-family));
|
3526
|
+
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
3472
3527
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3473
|
-
color: var(--sjs-font-
|
3528
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3474
3529
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
3475
3530
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
3476
3531
|
display: inline-block;
|
@@ -3479,7 +3534,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3479
3534
|
margin-top: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3480
3535
|
margin-bottom: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3481
3536
|
border: 2px solid transparent;
|
3482
|
-
color: var(--sjs-
|
3537
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
3483
3538
|
}
|
3484
3539
|
.sd-rating__item-text.sd-rating__item-text.sd-rating__min-text {
|
3485
3540
|
margin-right: var(--sjs-base-unit, var(--base-unit, 8px));
|
@@ -3556,7 +3611,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3556
3611
|
}
|
3557
3612
|
|
3558
3613
|
.sv-dropdown_select-wrapper use {
|
3559
|
-
fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
3614
|
+
fill: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
3560
3615
|
}
|
3561
3616
|
|
3562
3617
|
.sd-dropdown {
|
@@ -3585,7 +3640,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3585
3640
|
|
3586
3641
|
.sd-dropdown option {
|
3587
3642
|
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3588
|
-
font-family: var(--font-family, var(--font-family));
|
3643
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
3589
3644
|
font-size: var(--sjs-font-size, 16px);
|
3590
3645
|
}
|
3591
3646
|
|
@@ -3600,7 +3655,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3600
3655
|
text-overflow: ellipsis;
|
3601
3656
|
white-space: nowrap;
|
3602
3657
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
3603
|
-
font-family: var(--sjs-font-editorfont-family, var(--font-family));
|
3658
|
+
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
3604
3659
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3605
3660
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
|
3606
3661
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
@@ -3650,7 +3705,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3650
3705
|
border: none;
|
3651
3706
|
outline: none;
|
3652
3707
|
padding: 0;
|
3653
|
-
font-family: var(--sjs-font-editorfont-family, var(--font-family));
|
3708
|
+
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
3654
3709
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3655
3710
|
color: var(--sjs-font-editorfont-color, var(--sjs-general-forecolor, rgba(0, 0, 0, 0.91)));
|
3656
3711
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
@@ -3700,9 +3755,12 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3700
3755
|
text-overflow: ellipsis;
|
3701
3756
|
}
|
3702
3757
|
|
3703
|
-
.sv-
|
3758
|
+
.sv-dropdown-popup .sd-list__item-body {
|
3704
3759
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
3705
3760
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
3761
|
+
font-weight: var(--sjs-font-editorfont-weight, 400);
|
3762
|
+
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
3763
|
+
padding-inline-end: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
3706
3764
|
}
|
3707
3765
|
|
3708
3766
|
[dir=rtl] .sd-dropdown,
|
@@ -3930,7 +3988,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3930
3988
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
3931
3989
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
3932
3990
|
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
3933
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
3991
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3934
3992
|
}
|
3935
3993
|
|
3936
3994
|
.sd-imagepicker__no-image {
|
@@ -3992,11 +4050,24 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
3992
4050
|
white-space: initial;
|
3993
4051
|
}
|
3994
4052
|
|
4053
|
+
.sd-html {
|
4054
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4055
|
+
font-size: var(--sjs-article-font-default-fontSize, var(--sjs-font-size, 16px));
|
4056
|
+
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
4057
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4058
|
+
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
4059
|
+
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
4060
|
+
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
4061
|
+
letter-spacing: var(--sjs-article-font-default-letterSpacing, 0);
|
4062
|
+
line-height: var(--sjs-article-font-default-lineHeight, 28px);
|
4063
|
+
text-indent: var(--sjs-article-font-default-paragraphIndent, 0px);
|
4064
|
+
text-transform: var(--sjs-article-font-default-textCase, "none");
|
4065
|
+
}
|
3995
4066
|
.sd-html h1 {
|
3996
4067
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
3997
|
-
font-size: var(--sjs-article-font-xx-large-fontSize,
|
4068
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, calc(4 * (var(--sjs-font-size, 16px))));
|
3998
4069
|
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
3999
|
-
font-family: var(--font-family);
|
4070
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4000
4071
|
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
4001
4072
|
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
4002
4073
|
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
@@ -4007,9 +4078,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4007
4078
|
}
|
4008
4079
|
.sd-html h2 {
|
4009
4080
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4010
|
-
font-size: var(--sjs-article-font-x-large-fontSize,
|
4081
|
+
font-size: var(--sjs-article-font-x-large-fontSize, calc(3 * (var(--sjs-font-size, 16px))));
|
4011
4082
|
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
4012
|
-
font-family: var(--font-family);
|
4083
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4013
4084
|
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
4014
4085
|
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
4015
4086
|
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
@@ -4020,9 +4091,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4020
4091
|
}
|
4021
4092
|
.sd-html h3 {
|
4022
4093
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4023
|
-
font-size: var(--sjs-article-font-large-fontSize,
|
4094
|
+
font-size: var(--sjs-article-font-large-fontSize, calc(2 * (var(--sjs-font-size, 16px))));
|
4024
4095
|
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
4025
|
-
font-family: var(--font-family);
|
4096
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4026
4097
|
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
4027
4098
|
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
4028
4099
|
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
@@ -4035,9 +4106,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4035
4106
|
.sd-html h5,
|
4036
4107
|
.sd-html h6 {
|
4037
4108
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4038
|
-
font-size: var(--sjs-article-font-medium-fontSize,
|
4109
|
+
font-size: var(--sjs-article-font-medium-fontSize, calc(1.5 * (var(--sjs-font-size, 16px))));
|
4039
4110
|
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
4040
|
-
font-family: var(--font-family);
|
4111
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4041
4112
|
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
4042
4113
|
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
4043
4114
|
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
@@ -4051,9 +4122,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4051
4122
|
.sd-html div,
|
4052
4123
|
.sd-html p {
|
4053
4124
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4054
|
-
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
4125
|
+
font-size: var(--sjs-article-font-default-fontSize, var(--sjs-font-size, 16px));
|
4055
4126
|
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
4056
|
-
font-family: var(--font-family);
|
4127
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4057
4128
|
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
4058
4129
|
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
4059
4130
|
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
@@ -4093,16 +4164,21 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4093
4164
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
4094
4165
|
font-weight: 600;
|
4095
4166
|
font-style: normal;
|
4096
|
-
font-family: var(--font-family, var(--font-family));
|
4167
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4097
4168
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
4098
4169
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
4099
4170
|
}
|
4100
4171
|
|
4101
4172
|
.sd-expression {
|
4102
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4173
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4103
4174
|
font-size: var(--sjs-font-size, 16px);
|
4104
4175
|
}
|
4105
4176
|
|
4177
|
+
.sd-question__content--left .sd-expression {
|
4178
|
+
line-height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4179
|
+
margin-top: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4180
|
+
}
|
4181
|
+
|
4106
4182
|
.sd-progress {
|
4107
4183
|
height: 2px;
|
4108
4184
|
background-color: var(--sjs-border-light, var(--border-light, #eaeaea));
|
@@ -4164,10 +4240,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4164
4240
|
.sd-boolean__thumb,
|
4165
4241
|
.sd-boolean__label {
|
4166
4242
|
display: block;
|
4167
|
-
font-family: var(--sjs-font-editorfont-family, var(--font-family));
|
4243
|
+
font-family: var(--sjs-font-editorfont-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
4168
4244
|
font-weight: var(--sjs-font-editorfont-weight, 400);
|
4169
4245
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
4170
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
4246
|
+
color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
4171
4247
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
4172
4248
|
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4173
4249
|
}
|
@@ -4332,7 +4408,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4332
4408
|
.sd-paneldynamic__progress-text {
|
4333
4409
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
4334
4410
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
4335
|
-
color: var(--sjs-
|
4411
|
+
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
4336
4412
|
margin: 0;
|
4337
4413
|
margin-right: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4338
4414
|
}
|
@@ -4418,7 +4494,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4418
4494
|
border: none;
|
4419
4495
|
background-color: transparent;
|
4420
4496
|
cursor: pointer;
|
4421
|
-
font-family: var(--font-family, var(--font-family));
|
4497
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4422
4498
|
font-size: var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px));
|
4423
4499
|
line-height: calc(1.5 * (var(--sjs-font-editorfont-size, var(--sjs-font-size, 16px))));
|
4424
4500
|
color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
@@ -4485,6 +4561,10 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4485
4561
|
bottom: 0;
|
4486
4562
|
}
|
4487
4563
|
|
4564
|
+
.sd-question--paneldynamic.sd-element--with-frame {
|
4565
|
+
padding-bottom: 0;
|
4566
|
+
}
|
4567
|
+
|
4488
4568
|
.sd-file {
|
4489
4569
|
position: relative;
|
4490
4570
|
font-size: var(--sjs-font-size, 16px);
|
@@ -4648,7 +4728,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4648
4728
|
.sd-file__sign a {
|
4649
4729
|
display: block;
|
4650
4730
|
text-decoration: none;
|
4651
|
-
color: var(--sjs-general-forecolor, var(--foreground, #161616));
|
4731
|
+
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4652
4732
|
white-space: normal;
|
4653
4733
|
word-break: break-all;
|
4654
4734
|
width: calc(12 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
@@ -4835,7 +4915,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4835
4915
|
box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15));
|
4836
4916
|
border-radius: var(--sjs-corner-radius, 4px);
|
4837
4917
|
cursor: pointer;
|
4838
|
-
font-family: var(--font-family, var(--font-family));
|
4918
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4839
4919
|
font-style: normal;
|
4840
4920
|
font-weight: 600;
|
4841
4921
|
font-size: var(--sjs-font-size, 16px);
|
@@ -4933,9 +5013,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4933
5013
|
.sd-body.sd-body--responsive .sd-page {
|
4934
5014
|
padding: 0;
|
4935
5015
|
}
|
4936
|
-
.sd-body.sd-body--responsive .sd-page.sd-page__empty-header {
|
4937
|
-
padding-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
4938
|
-
}
|
4939
5016
|
.sd-body.sd-body--responsive .sd-body__timer,
|
4940
5017
|
.sd-body.sd-body--responsive .sd-body__navigation {
|
4941
5018
|
padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) 0;
|
@@ -4984,9 +5061,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4984
5061
|
.sd-body--empty h1,
|
4985
5062
|
.sd-body--loading h1 {
|
4986
5063
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
4987
|
-
font-size: var(--sjs-article-font-xx-large-fontSize,
|
5064
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, calc(4 * (var(--sjs-font-size, 16px))));
|
4988
5065
|
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
4989
|
-
font-family: var(--font-family);
|
5066
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
4990
5067
|
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
4991
5068
|
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
4992
5069
|
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
@@ -4998,9 +5075,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
4998
5075
|
.sd-body--empty h2,
|
4999
5076
|
.sd-body--loading h2 {
|
5000
5077
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5001
|
-
font-size: var(--sjs-article-font-x-large-fontSize,
|
5078
|
+
font-size: var(--sjs-article-font-x-large-fontSize, calc(3 * (var(--sjs-font-size, 16px))));
|
5002
5079
|
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
5003
|
-
font-family: var(--font-family);
|
5080
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5004
5081
|
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
5005
5082
|
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
5006
5083
|
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
@@ -5012,9 +5089,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5012
5089
|
.sd-body--empty h3,
|
5013
5090
|
.sd-body--loading h3 {
|
5014
5091
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5015
|
-
font-size: var(--sjs-article-font-large-fontSize,
|
5092
|
+
font-size: var(--sjs-article-font-large-fontSize, calc(2 * (var(--sjs-font-size, 16px))));
|
5016
5093
|
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
5017
|
-
font-family: var(--font-family);
|
5094
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5018
5095
|
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
5019
5096
|
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
5020
5097
|
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
@@ -5030,9 +5107,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5030
5107
|
.sd-body--loading h5,
|
5031
5108
|
.sd-body--loading h6 {
|
5032
5109
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5033
|
-
font-size: var(--sjs-article-font-medium-fontSize,
|
5110
|
+
font-size: var(--sjs-article-font-medium-fontSize, calc(1.5 * (var(--sjs-font-size, 16px))));
|
5034
5111
|
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
5035
|
-
font-family: var(--font-family);
|
5112
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5036
5113
|
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
5037
5114
|
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
5038
5115
|
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
@@ -5050,9 +5127,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5050
5127
|
.sd-body--loading div,
|
5051
5128
|
.sd-body--loading p {
|
5052
5129
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5053
|
-
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
5130
|
+
font-size: var(--sjs-article-font-default-fontSize, var(--sjs-font-size, 16px));
|
5054
5131
|
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
5055
|
-
font-family: var(--font-family);
|
5132
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5056
5133
|
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
5057
5134
|
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
5058
5135
|
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
@@ -5097,7 +5174,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5097
5174
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5098
5175
|
font-weight: 600;
|
5099
5176
|
font-style: normal;
|
5100
|
-
font-family: var(--font-family, var(--font-family));
|
5177
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5101
5178
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5102
5179
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
5103
5180
|
}
|
@@ -5167,7 +5244,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5167
5244
|
border-right: 1px solid var(--sjs-border-default, var(--border, #d6d6d6));
|
5168
5245
|
word-break: break-word;
|
5169
5246
|
white-space: normal;
|
5170
|
-
color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
5247
|
+
color: var(--sjs-font-editorfont-placeholdercolor, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
|
5171
5248
|
}
|
5172
5249
|
|
5173
5250
|
.sd-multipletext__item {
|
@@ -5185,10 +5262,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5185
5262
|
background-color: transparent;
|
5186
5263
|
}
|
5187
5264
|
|
5188
|
-
.sd-multipletext__item-container:hover:not(:focus-within) > .sd-question__erbox--tooltip {
|
5189
|
-
display: inline-block;
|
5190
|
-
}
|
5191
|
-
|
5192
5265
|
.sd-multipletext__cell {
|
5193
5266
|
padding-left: 0;
|
5194
5267
|
padding-right: 0;
|
@@ -5218,13 +5291,14 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5218
5291
|
appearance: none;
|
5219
5292
|
border: none;
|
5220
5293
|
display: flex;
|
5294
|
+
align-items: center;
|
5221
5295
|
gap: var(--sjs-base-unit, var(--base-unit, 8px));
|
5222
5296
|
background: transparent;
|
5223
5297
|
padding: var(--sjs-base-unit, var(--base-unit, 8px)) calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5224
5298
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5225
5299
|
border-radius: calc(12.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5226
5300
|
font-weight: 600;
|
5227
|
-
font-family: var(--font-family, var(--font-family));
|
5301
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5228
5302
|
font-style: normal;
|
5229
5303
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5230
5304
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
@@ -5250,11 +5324,11 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
|
|
5250
5324
|
margin-left: 0;
|
5251
5325
|
}
|
5252
5326
|
.sd-action--icon use {
|
5253
|
-
fill: var(--sjs-
|
5327
|
+
fill: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
5254
5328
|
}
|
5255
5329
|
|
5256
5330
|
svg.sd-action--icon {
|
5257
|
-
fill: var(--sjs-
|
5331
|
+
fill: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
|
5258
5332
|
}
|
5259
5333
|
|
5260
5334
|
.sd-action:disabled,
|
@@ -5280,6 +5354,10 @@ svg.sd-action--icon {
|
|
5280
5354
|
.sd-action:not(.sd-action--pressed):focus.sd-action--negative {
|
5281
5355
|
background-color: var(--sjs-special-red-light, var(--red-light, rgba(230, 10, 62, 0.1)));
|
5282
5356
|
}
|
5357
|
+
.sd-action:not(.sd-action--pressed):hover.sd-action--negative.sd-action--icon use,
|
5358
|
+
.sd-action:not(.sd-action--pressed):focus.sd-action--negative.sd-action--icon use {
|
5359
|
+
fill: var(--sjs-special-red, var(--red, #e60a3e));
|
5360
|
+
}
|
5283
5361
|
.sd-action:not(.sd-action--pressed):hover:active,
|
5284
5362
|
.sd-action:not(.sd-action--pressed):focus:active {
|
5285
5363
|
opacity: 0.5;
|
@@ -5338,7 +5416,7 @@ svg.sd-action--icon {
|
|
5338
5416
|
}
|
5339
5417
|
|
5340
5418
|
.sd-completedpage {
|
5341
|
-
font-family: var(--font-family, var(--font-family));
|
5419
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5342
5420
|
font-weight: bold;
|
5343
5421
|
box-sizing: border-box;
|
5344
5422
|
text-align: center;
|
@@ -5348,9 +5426,9 @@ svg.sd-action--icon {
|
|
5348
5426
|
.sd-completedpage h1,
|
5349
5427
|
.sd-completed-before-page h1 {
|
5350
5428
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5351
|
-
font-size: var(--sjs-article-font-xx-large-fontSize,
|
5429
|
+
font-size: var(--sjs-article-font-xx-large-fontSize, calc(4 * (var(--sjs-font-size, 16px))));
|
5352
5430
|
text-decoration: var(--sjs-article-font-xx-large-textDecoration, "none");
|
5353
|
-
font-family: var(--font-family);
|
5431
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5354
5432
|
font-weight: var(--sjs-article-font-xx-large-fontWeight, 700);
|
5355
5433
|
font-style: var(--sjs-article-font-xx-large-fontStyle, "normal");
|
5356
5434
|
font-stretch: var(--sjs-article-font-xx-large-fontStretch, "normal");
|
@@ -5362,9 +5440,9 @@ svg.sd-action--icon {
|
|
5362
5440
|
.sd-completedpage h2,
|
5363
5441
|
.sd-completed-before-page h2 {
|
5364
5442
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5365
|
-
font-size: var(--sjs-article-font-x-large-fontSize,
|
5443
|
+
font-size: var(--sjs-article-font-x-large-fontSize, calc(3 * (var(--sjs-font-size, 16px))));
|
5366
5444
|
text-decoration: var(--sjs-article-font-x-large-textDecoration, "none");
|
5367
|
-
font-family: var(--font-family);
|
5445
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5368
5446
|
font-weight: var(--sjs-article-font-x-large-fontWeight, 700);
|
5369
5447
|
font-style: var(--sjs-article-font-x-large-fontStyle, "normal");
|
5370
5448
|
font-stretch: var(--sjs-article-font-x-large-fontStretch, "normal");
|
@@ -5376,9 +5454,9 @@ svg.sd-action--icon {
|
|
5376
5454
|
.sd-completedpage h3,
|
5377
5455
|
.sd-completed-before-page h3 {
|
5378
5456
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5379
|
-
font-size: var(--sjs-article-font-large-fontSize,
|
5457
|
+
font-size: var(--sjs-article-font-large-fontSize, calc(2 * (var(--sjs-font-size, 16px))));
|
5380
5458
|
text-decoration: var(--sjs-article-font-large-textDecoration, "none");
|
5381
|
-
font-family: var(--font-family);
|
5459
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5382
5460
|
font-weight: var(--sjs-article-font-large-fontWeight, 700);
|
5383
5461
|
font-style: var(--sjs-article-font-large-fontStyle, "normal");
|
5384
5462
|
font-stretch: var(--sjs-article-font-large-fontStretch, "normal");
|
@@ -5394,9 +5472,9 @@ svg.sd-action--icon {
|
|
5394
5472
|
.sd-completed-before-page h5,
|
5395
5473
|
.sd-completed-before-page h6 {
|
5396
5474
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5397
|
-
font-size: var(--sjs-article-font-medium-fontSize,
|
5475
|
+
font-size: var(--sjs-article-font-medium-fontSize, calc(1.5 * (var(--sjs-font-size, 16px))));
|
5398
5476
|
text-decoration: var(--sjs-article-font-medium-textDecoration, "none");
|
5399
|
-
font-family: var(--font-family);
|
5477
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5400
5478
|
font-weight: var(--sjs-article-font-medium-fontWeight, 700);
|
5401
5479
|
font-style: var(--sjs-article-font-medium-fontStyle, "normal");
|
5402
5480
|
font-stretch: var(--sjs-article-font-medium-fontStretch, "normal");
|
@@ -5414,9 +5492,9 @@ svg.sd-action--icon {
|
|
5414
5492
|
.sd-completed-before-page div,
|
5415
5493
|
.sd-completed-before-page p {
|
5416
5494
|
color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
|
5417
|
-
font-size: var(--sjs-article-font-default-fontSize, 16px);
|
5495
|
+
font-size: var(--sjs-article-font-default-fontSize, var(--sjs-font-size, 16px));
|
5418
5496
|
text-decoration: var(--sjs-article-font-default-textDecoration, "none");
|
5419
|
-
font-family: var(--font-family);
|
5497
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5420
5498
|
font-weight: var(--sjs-article-font-default-fontWeight, 400);
|
5421
5499
|
font-style: var(--sjs-article-font-default-fontStyle, "normal");
|
5422
5500
|
font-stretch: var(--sjs-article-font-default-fontStretch, "normal");
|
@@ -5461,7 +5539,7 @@ svg.sd-action--icon {
|
|
5461
5539
|
color: var(--sjs-primary-backcolor, var(--primary, #19b394));
|
5462
5540
|
font-weight: 600;
|
5463
5541
|
font-style: normal;
|
5464
|
-
font-family: var(--font-family, var(--font-family));
|
5542
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
5465
5543
|
font-size: var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px));
|
5466
5544
|
line-height: calc(1.5 * (var(--sjs-font-questiontitle-size, var(--sjs-font-size, 16px))));
|
5467
5545
|
}
|
@@ -5599,10 +5677,11 @@ svg.sd-action--icon {
|
|
5599
5677
|
padding-left: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5600
5678
|
}
|
5601
5679
|
|
5602
|
-
.sd-list__item
|
5680
|
+
.sd-list__item {
|
5603
5681
|
padding: 0;
|
5604
5682
|
}
|
5605
|
-
|
5683
|
+
|
5684
|
+
.sd-list__item-body {
|
5606
5685
|
padding-block: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5607
5686
|
border-radius: var(--sjs-corner-radius, 4px);
|
5608
5687
|
font-size: var(--sjs-font-size, 16px);
|
@@ -5687,27 +5766,29 @@ svg.sd-action--icon {
|
|
5687
5766
|
font-size: calc(0.75 * (var(--sjs-font-size, 16px)));
|
5688
5767
|
}
|
5689
5768
|
|
5690
|
-
.sv-
|
5691
|
-
padding: calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5692
|
-
box-sizing: border-box;
|
5769
|
+
.sv-header {
|
5693
5770
|
position: relative;
|
5694
|
-
background-color: var(--sjs-
|
5771
|
+
background-color: var(--sjs-header-backcolor, var(--sjs-primary-backcolor, var(--primary, #19b394)));
|
5695
5772
|
}
|
5696
5773
|
|
5697
|
-
.sv-
|
5698
|
-
margin-bottom: calc(-
|
5699
|
-
padding-bottom: calc(
|
5774
|
+
.sv-header__overlap {
|
5775
|
+
margin-bottom: calc(-14 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5776
|
+
padding-bottom: calc(8 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5700
5777
|
}
|
5701
5778
|
|
5702
|
-
.sv-
|
5779
|
+
.sv-header__overlap.sv-header__without-background {
|
5703
5780
|
margin-bottom: 0;
|
5781
|
+
padding-bottom: 0;
|
5704
5782
|
}
|
5705
5783
|
|
5706
|
-
.sv-
|
5784
|
+
.sv-header__without-background .sv-header--mobile,
|
5785
|
+
.sv-header__without-background .sv-header__content {
|
5707
5786
|
padding-bottom: 0;
|
5708
5787
|
}
|
5709
5788
|
|
5710
|
-
.sv-
|
5789
|
+
.sv-header__content {
|
5790
|
+
padding: calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5791
|
+
box-sizing: border-box;
|
5711
5792
|
height: 100%;
|
5712
5793
|
position: relative;
|
5713
5794
|
display: grid;
|
@@ -5716,13 +5797,13 @@ svg.sd-action--icon {
|
|
5716
5797
|
grid-auto-rows: 1fr 1fr 1fr;
|
5717
5798
|
}
|
5718
5799
|
|
5719
|
-
.sv-
|
5720
|
-
max-width: calc(
|
5800
|
+
.sv-header__content--static {
|
5801
|
+
max-width: calc(88 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5721
5802
|
margin-left: auto;
|
5722
5803
|
margin-right: auto;
|
5723
5804
|
}
|
5724
5805
|
|
5725
|
-
.sv-
|
5806
|
+
.sv-header__background-image {
|
5726
5807
|
width: 100%;
|
5727
5808
|
height: 100%;
|
5728
5809
|
position: absolute;
|
@@ -5733,68 +5814,97 @@ svg.sd-action--icon {
|
|
5733
5814
|
background-position-x: center;
|
5734
5815
|
}
|
5735
5816
|
|
5736
|
-
.sv-
|
5817
|
+
.sv-header__background-image--contain {
|
5737
5818
|
background-repeat: no-repeat;
|
5738
5819
|
}
|
5739
5820
|
|
5740
|
-
.sv-
|
5821
|
+
.sv-header__cell {
|
5741
5822
|
position: relative;
|
5742
5823
|
}
|
5743
5824
|
|
5744
|
-
.sv-
|
5825
|
+
.sv-header__cell-content {
|
5745
5826
|
display: flex;
|
5746
5827
|
flex-direction: column;
|
5747
5828
|
position: absolute;
|
5748
5829
|
width: max-content;
|
5749
5830
|
top: 0;
|
5750
5831
|
bottom: 0;
|
5751
|
-
gap: var(--sjs-base-unit, var(--base-unit, 8px));
|
5752
5832
|
}
|
5753
5833
|
|
5754
|
-
.sv-
|
5834
|
+
.sv-header__cell--left .sv-header__cell-content {
|
5755
5835
|
left: 0;
|
5756
5836
|
}
|
5757
5837
|
|
5758
|
-
.sv-
|
5838
|
+
.sv-header__cell--center .sv-header__cell-content {
|
5759
5839
|
min-width: 100%;
|
5840
|
+
left: 50%;
|
5841
|
+
transform: translateX(-50%);
|
5760
5842
|
}
|
5761
5843
|
|
5762
|
-
.sv-
|
5844
|
+
.sv-header__cell--right .sv-header__cell-content {
|
5763
5845
|
right: 0;
|
5764
5846
|
}
|
5765
5847
|
|
5766
|
-
.sv-
|
5848
|
+
.sv-header__logo {
|
5767
5849
|
display: flex;
|
5768
|
-
|
5850
|
+
}
|
5851
|
+
.sv-header__logo img {
|
5852
|
+
display: block;
|
5769
5853
|
}
|
5770
5854
|
|
5771
|
-
.sv-
|
5855
|
+
.sv-header__title {
|
5772
5856
|
display: flex;
|
5773
5857
|
}
|
5774
5858
|
|
5775
|
-
.sv-
|
5776
|
-
--
|
5777
|
-
font-size: var(--
|
5778
|
-
line-height: calc(1.25 * (var(--
|
5859
|
+
.sv-header__title .sd-title {
|
5860
|
+
--header-title-font-size: var(--sjs-font-headertitle-size, calc(2 * (var(--sjs-font-size, 16px))));
|
5861
|
+
font-size: var(--header-title-font-size);
|
5862
|
+
line-height: calc(1.25 * (var(--header-title-font-size)));
|
5863
|
+
color: var(--sjs-font-headertitle-color, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
5864
|
+
font-family: var(--sjs-font-headertitle-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
5865
|
+
font-weight: var(--sjs-font-headertitle-weight, 700);
|
5779
5866
|
margin: 0;
|
5780
|
-
color: var(--sjs-cover-title-forecolor, var(--sjs-general-dim-forecolor, rgba(0, 0, 0, 0.91)));
|
5781
|
-
font-family: var(--sjs-font-surveytitle-family, var(--font-family));
|
5782
|
-
font-weight: var(--sjs-font-surveytitle-weight, 700);
|
5783
5867
|
}
|
5784
5868
|
|
5785
|
-
.sv-
|
5869
|
+
.sv-header__logo ~ .sv-header__title {
|
5870
|
+
margin-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5871
|
+
}
|
5872
|
+
|
5873
|
+
.sv-header__logo ~ .sv-header__description {
|
5874
|
+
margin-top: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5875
|
+
}
|
5876
|
+
|
5877
|
+
.sv-header__title ~ .sv-header__description {
|
5878
|
+
margin-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
5879
|
+
}
|
5880
|
+
|
5881
|
+
.sv-header__description {
|
5786
5882
|
display: flex;
|
5787
5883
|
}
|
5788
5884
|
|
5789
|
-
.sv-
|
5885
|
+
.sv-header__description .sd-description {
|
5886
|
+
--header-description-font-size: var(--sjs-font-headerdescription-size, var(--sjs-font-size, 16px));
|
5887
|
+
font-size: var(--header-description-font-size);
|
5888
|
+
line-height: calc(1.5 * (var(--header-description-font-size)));
|
5889
|
+
color: var(--sjs-font-headerdescription-color, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
5890
|
+
font-family: var(--sjs-font-headerdescription-family, var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family))));
|
5891
|
+
font-weight: var(--sjs-font-headerdescription-weight, 400);
|
5790
5892
|
margin: 0;
|
5791
|
-
color: var(--sjs-cover-description-forecolor, var(--sjs-general-dim-forecolor-light, rgba(0, 0, 0, 0.45)));
|
5792
5893
|
}
|
5793
5894
|
|
5794
|
-
.sv-
|
5895
|
+
.sv-header__content .sd-header__text h3 {
|
5795
5896
|
margin: 0;
|
5796
5897
|
}
|
5797
5898
|
|
5899
|
+
.sv-header--mobile {
|
5900
|
+
padding: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
|
5901
|
+
position: relative;
|
5902
|
+
z-index: 1;
|
5903
|
+
}
|
5904
|
+
.sv-header--mobile .sv-header__logo img {
|
5905
|
+
max-width: 100%;
|
5906
|
+
}
|
5907
|
+
|
5798
5908
|
@keyframes rotationAnimation {
|
5799
5909
|
from {
|
5800
5910
|
rotate: 0deg;
|
@@ -5919,6 +6029,8 @@ sv-components-container,
|
|
5919
6029
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell {
|
5920
6030
|
display: flex;
|
5921
6031
|
align-items: flex-start;
|
6032
|
+
border-top: none;
|
6033
|
+
border-bottom: none;
|
5922
6034
|
}
|
5923
6035
|
.sd-root-modern.sd-root-modern--mobile .sd-table__cell.sd-matrix__cell .sd-matrix__responsive-title {
|
5924
6036
|
margin-left: var(--sjs-base-unit, var(--base-unit, 8px));
|
@@ -5934,8 +6046,8 @@ sv-components-container,
|
|
5934
6046
|
.sd-root-modern.sd-root-modern--mobile .sd-table tr {
|
5935
6047
|
display: block;
|
5936
6048
|
}
|
5937
|
-
.sd-root-modern.sd-root-modern--mobile .sd-matrix__table
|
5938
|
-
|
6049
|
+
.sd-root-modern.sd-root-modern--mobile .sd-matrix__table .sd-table__row {
|
6050
|
+
padding-top: var(--sjs-base-unit, var(--base-unit, 8px));
|
5939
6051
|
}
|
5940
6052
|
.sd-root-modern.sd-root-modern--mobile .sd-table:not(.sd-matrix__table) tr {
|
5941
6053
|
padding-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
|
@@ -6058,6 +6170,7 @@ sv-components-container,
|
|
6058
6170
|
}
|
6059
6171
|
.sd-multipletext--mobile .sd-multipletext__item {
|
6060
6172
|
flex-basis: 0;
|
6173
|
+
min-width: 0;
|
6061
6174
|
}
|
6062
6175
|
.sd-multipletext--mobile .sd-multipletext__item .sd-input {
|
6063
6176
|
padding: 0;
|
@@ -6079,6 +6192,11 @@ sv-components-container,
|
|
6079
6192
|
.sd-multipletext--mobile .sd-multipletext__item-container--answered .sd-multipletext__item,
|
6080
6193
|
.sd-multipletext--mobile .sd-multipletext__item-container--allow-focus:focus-within .sd-multipletext__item {
|
6081
6194
|
flex-basis: auto;
|
6195
|
+
min-width: auto;
|
6196
|
+
width: 100%;
|
6197
|
+
}
|
6198
|
+
.sd-multipletext--mobile .sd-multipletext__item-container--answered .sd-multipletext__item .sd-input,
|
6199
|
+
.sd-multipletext--mobile .sd-multipletext__item-container--allow-focus:focus-within .sd-multipletext__item .sd-input {
|
6082
6200
|
width: 100%;
|
6083
6201
|
}
|
6084
6202
|
|
@@ -6098,7 +6216,7 @@ body {
|
|
6098
6216
|
--sd-mobile-width: 600px;
|
6099
6217
|
--sd-timer-size: calc(18 * var(--sjs-base-unit, var(--base-unit, 8px)));
|
6100
6218
|
width: 100%;
|
6101
|
-
font-family: var(--font-family, var(--font-family));
|
6219
|
+
font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
|
6102
6220
|
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
6103
6221
|
position: relative;
|
6104
6222
|
}
|
@@ -6201,25 +6319,4 @@ body {
|
|
6201
6319
|
background-color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
|
6202
6320
|
}
|
6203
6321
|
|
6204
|
-
.sv-popup.sv-popup--dropdown.sv-popup--dropdown .sv-popup__shadow {
|
6205
|
-
box-shadow: var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
|
6206
|
-
}
|
6207
|
-
.sv-popup.sv-popup--dropdown.sv-popup--dropdown .sv-popup__body-content {
|
6208
|
-
background-color: var(--sjs-general-backcolor, var(--background, #fff));
|
6209
|
-
padding: var(--sjs-base-unit, var(--base-unit, 8px)) 0;
|
6210
|
-
height: 100%;
|
6211
|
-
}
|
6212
|
-
|
6213
|
-
.sv-popup.sv-popup--modal .sv-popup__body-content {
|
6214
|
-
box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1));
|
6215
|
-
background-color: var(--sjs-general-backcolor-dim-light, var(--background-dim-light, #f9f9f9));
|
6216
|
-
}
|
6217
|
-
.sv-popup.sv-popup--modal .sv-popup__body-footer {
|
6218
|
-
padding-bottom: 2px;
|
6219
|
-
}
|
6220
|
-
|
6221
|
-
.sv-popup.sv-popup--overlay .sv-popup__body-content {
|
6222
|
-
background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
|
6223
|
-
}
|
6224
|
-
|
6225
6322
|
/*# sourceMappingURL=defaultV2.css.map*/
|