survey-react 1.11.4 → 1.11.6

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * surveyjs - Survey JavaScript library v1.11.4
2
+ * surveyjs - Survey JavaScript library v1.11.6
3
3
  * Copyright (c) 2015-2024 Devsoft Baltic OÜ - http://surveyjs.io/
4
4
  * License: MIT (http://www.opensource.org/licenses/mit-license.php)
5
5
  */
@@ -460,6 +460,22 @@ button.sv-action-bar-item {
460
460
  visibility: hidden;
461
461
  }
462
462
 
463
+ .sv-drag-drop-choices-shortcut {
464
+ cursor: grabbing;
465
+ position: absolute;
466
+ z-index: 10000;
467
+ font-family: var(--sjs-font-family, var(--font-family, var(--sjs-default-font-family)));
468
+ }
469
+
470
+ .sv-drag-drop-choices-shortcut__content.sv-drag-drop-choices-shortcut__content {
471
+ min-width: 100px;
472
+ box-shadow: var(--sjs-shadow-large, 0px 8px 16px 0px rgba(0, 0, 0, 0.1)), var(--sjs-shadow-medium, 0px 2px 6px 0px rgba(0, 0, 0, 0.1));
473
+ background-color: var(--sjs-general-backcolor, var(--background, #fff));
474
+ border-radius: calc(4.5 * var(--sjs-base-unit, var(--base-unit, 8px)));
475
+ padding-right: calc(2 * var(--sjs-base-unit, var(--base-unit, 8px)));
476
+ margin-left: 0;
477
+ }
478
+
463
479
  :root {
464
480
  --sjs-transition-duration: 150ms;
465
481
  }
@@ -1875,6 +1891,15 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
1875
1891
  font-weight: 400;
1876
1892
  }
1877
1893
 
1894
+ .sv-list__item.sv-list__item--selected.sv-list__item--group > .sv-list__item-body {
1895
+ background-color: var(--sjs-primary-backcolor-light, var(--primary-light, rgba(25, 179, 148, 0.1)));
1896
+ color: var(--sjs-font-questiontitle-color, var(--sjs-general-forecolor, var(--foreground, #161616)));
1897
+ font-weight: 400;
1898
+ }
1899
+ .sv-list__item.sv-list__item--selected.sv-list__item--group > .sv-list__item-body use {
1900
+ fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
1901
+ }
1902
+
1878
1903
  .sv-list__item.sv-list__item--disabled .sv-list__item-body {
1879
1904
  cursor: default;
1880
1905
  color: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
@@ -2109,6 +2134,10 @@ li:focus .sv-list__item.sv-list__item--selected .sv-list-item__marker-icon use {
2109
2134
  opacity: 0.25;
2110
2135
  }
2111
2136
 
2137
+ .sd-element__title.sd-element__title--hidden {
2138
+ display: none;
2139
+ }
2140
+
2112
2141
  .sd-root--readonly .sd-element__title.sd-element__title--disabled {
2113
2142
  opacity: 1;
2114
2143
  }
@@ -4320,7 +4349,7 @@ textarea.sd-input:disabled:not(.sd-input--disabled) {
4320
4349
  fill: var(--sjs-general-forecolor, var(--foreground, #161616));
4321
4350
  font-size: var(--sjs-font-size, 16px);
4322
4351
  box-shadow: var(--sjs-shadow-small, 0px 1px 2px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 0px var(--sjs-general-backcolor, var(--background, #fff));
4323
- transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
4352
+ transition: box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
4324
4353
  }
4325
4354
 
4326
4355
  .sd-rating__item--fixed-size {
@@ -4377,6 +4406,9 @@ legend + sv-ng-rating-item + .sd-rating__item {
4377
4406
  box-shadow: none;
4378
4407
  transform: none;
4379
4408
  }
4409
+ .sd-rating__item.sd-rating__item--preview:focus-within {
4410
+ box-shadow: none;
4411
+ }
4380
4412
  .sd-rating__item.sd-rating__item--preview .sd-rating__item-text.sd-rating__item-text {
4381
4413
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
4382
4414
  }
@@ -4398,19 +4430,18 @@ legend + sv-ng-rating-item + .sd-rating__item {
4398
4430
  }
4399
4431
 
4400
4432
  .sd-rating__item:focus-within {
4401
- border: 2px solid var(--sjs-primary-backcolor, var(--primary, #19b394));
4433
+ box-shadow: 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
4402
4434
  }
4403
4435
 
4404
4436
  .sd-rating__item--selected {
4405
4437
  background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
4406
- border: 2px solid var(--sjs-primary-backcolor, var(--primary, #19b394));
4407
4438
  color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
4408
4439
  font-weight: 600;
4409
- box-shadow: 0px 1px 2px transparent;
4440
+ box-shadow: 0 0 0 0px var(--sjs-primary-backcolor, var(--primary, #19b394));
4410
4441
  }
4411
4442
 
4412
4443
  .sd-rating__item--selected:focus-within {
4413
- box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
4444
+ box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 4px var(--sjs-general-backcolor, var(--background, #fff)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
4414
4445
  }
4415
4446
 
4416
4447
  .sd-rating__item-smiley {
@@ -4420,12 +4451,16 @@ legend + sv-ng-rating-item + .sd-rating__item {
4420
4451
  padding: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4421
4452
  box-sizing: border-box;
4422
4453
  min-width: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4454
+ min-height: calc(6 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4455
+ display: flex;
4456
+ justify-content: center;
4457
+ align-items: center;
4423
4458
  text-align: center;
4424
4459
  border: 2px solid var(--sjs-border-default, var(--border, #d6d6d6));
4425
4460
  color: var(--sjs-general-forecolor, var(--foreground, #161616));
4426
4461
  fill: var(--sjs-border-default, var(--border, #d6d6d6));
4427
4462
  box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 0px var(--sjs-general-backcolor, var(--background, #fff));
4428
- transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
4463
+ transition: box-shadow var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
4429
4464
  }
4430
4465
  .sd-rating__item-smiley svg {
4431
4466
  display: block;
@@ -4436,6 +4471,7 @@ legend + sv-ng-rating-item + .sd-rating__item {
4436
4471
  .sd-rating__item-smiley--small {
4437
4472
  padding: calc(0.625 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4438
4473
  min-width: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4474
+ min-height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4439
4475
  border-width: 1px;
4440
4476
  }
4441
4477
  .sd-rating__item-smiley--small svg {
@@ -4443,8 +4479,16 @@ legend + sv-ng-rating-item + .sd-rating__item {
4443
4479
  height: calc(1.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4444
4480
  }
4445
4481
 
4482
+ .sd-rating__item-smiley--small:not(.sd-rating__item-smiley--selected):focus-within {
4483
+ box-shadow: 0 0 0 1px var(--sjs-primary-backcolor, var(--primary, #19b394));
4484
+ }
4485
+
4486
+ .sd-rating__item-smiley--colored.sd-rating__item-smiley--small:not(.sd-rating__item-smiley--selected):focus-within {
4487
+ box-shadow: 0 0 0 1px var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4488
+ }
4489
+
4446
4490
  .sd-rating__item-smiley--small.sd-rating__item-smiley--selected:focus-within {
4447
- box-shadow: inset 0 0 0 1px var(--sjs-general-backcolor, var(--background, #fff));
4491
+ box-shadow: inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff)), 0 0 0 1px var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4448
4492
  }
4449
4493
 
4450
4494
  legend + .sd-rating__item-smiley,
@@ -4453,7 +4497,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4453
4497
  }
4454
4498
 
4455
4499
  .sd-rating__item-smiley--scale-colored {
4456
- transition: border var(--sjs-transition-duration, 150ms), box-shadow var(--sjs-transition-duration, 150ms), opacity var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
4500
+ border-color: var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4501
+ fill: var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4502
+ transition: box-shadow var(--sjs-transition-duration, 150ms), opacity var(--sjs-transition-duration, 150ms), background-color var(--sjs-transition-duration, 150ms);
4457
4503
  }
4458
4504
 
4459
4505
  .sd-rating__item-smiley--error {
@@ -4461,6 +4507,9 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4461
4507
  border-color: transparent;
4462
4508
  fill: var(--sjs-general-forecolor-light, var(--foreground-light, #909090));
4463
4509
  }
4510
+ .sd-rating__item-smiley--error.sd-rating__item-smiley--scale-colored:hover {
4511
+ fill: var(--sd-rating-item-color, var(--sjs-general-forecolor-light, var(--foreground-light, #909090)));
4512
+ }
4464
4513
  .sd-rating__item-smiley--error.sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected) {
4465
4514
  opacity: initial;
4466
4515
  }
@@ -4474,22 +4523,29 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4474
4523
  fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
4475
4524
  }
4476
4525
 
4526
+ .sd-rating__item-smiley.sd-rating__item-smiley--readonly {
4527
+ fill: var(--sjs-border-default, var(--border, #d6d6d6));
4528
+ border-color: var(--sjs-border-default, var(--border, #d6d6d6));
4529
+ }
4530
+
4477
4531
  .sd-rating__item-smiley.sd-rating__item-smiley--selected.sd-rating__item-smiley--readonly {
4478
4532
  fill: var(--sjs-general-forecolor, var(--foreground, #161616));
4479
4533
  border-color: var(--sjs-general-forecolor, var(--foreground, #161616));
4480
4534
  background-color: unset;
4481
4535
  }
4482
4536
 
4483
- .sd-rating__item-smiley.sd-rating__item-smiley--preview {
4484
- border-color: var(--sjs-general-forecolor, var(--foreground, #161616));
4485
- border-width: 1px;
4537
+ .sd-rating__item-smiley.sd-rating__item-smiley--preview.sd-rating__item-smiley--preview.sd-rating__item-smiley--preview {
4538
+ border: 1px solid var(--sjs-general-forecolor, var(--foreground, #161616));
4486
4539
  fill: var(--sjs-general-forecolor, var(--foreground, #161616));
4487
4540
  }
4488
- .sd-rating__item-smiley.sd-rating__item-smiley--preview svg {
4541
+ .sd-rating__item-smiley.sd-rating__item-smiley--preview.sd-rating__item-smiley--preview.sd-rating__item-smiley--preview:focus-within {
4542
+ box-shadow: none;
4543
+ }
4544
+ .sd-rating__item-smiley.sd-rating__item-smiley--preview.sd-rating__item-smiley--preview.sd-rating__item-smiley--preview svg {
4489
4545
  margin: 1px;
4490
4546
  }
4491
4547
 
4492
- .sd-rating__item-smiley.sd-rating__item-smiley--selected.sd-rating__item-smiley--preview {
4548
+ .sd-rating__item-smiley.sd-rating__item-smiley--selected.sd-rating__item-smiley--preview.sd-rating__item-smiley--preview {
4493
4549
  fill: var(--sjs-general-backcolor, var(--background, #fff));
4494
4550
  background-color: var(--sjs-general-forecolor, var(--foreground, #161616));
4495
4551
  }
@@ -4500,24 +4556,33 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4500
4556
  }
4501
4557
 
4502
4558
  .sd-rating__item-smiley:focus-within {
4503
- border-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
4559
+ border: none;
4560
+ box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
4561
+ }
4562
+
4563
+ .sd-rating__item-smiley:focus-within {
4564
+ border: none;
4565
+ box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sjs-primary-backcolor, var(--primary, #19b394));
4504
4566
  }
4505
4567
 
4506
4568
  .sd-rating__item-smiley--selected {
4507
- background-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
4508
- border-color: var(--sjs-primary-backcolor, var(--primary, #19b394));
4569
+ background-color: var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4570
+ border-color: var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4509
4571
  fill: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
4510
4572
  font-weight: 600;
4511
4573
  }
4512
4574
 
4513
4575
  .sd-rating__item-smiley--selected:focus-within {
4514
- box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 2px var(--sjs-general-backcolor, var(--background, #fff));
4576
+ border: 0px solid var(--sjs-general-backcolor, var(--background, #fff));
4577
+ box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), inset 0 0 0 4px var(--sjs-general-backcolor, var(--background, #fff)), 0 0 0 2px var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4515
4578
  }
4516
4579
 
4517
4580
  .sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected) {
4518
4581
  opacity: 0.25;
4519
4582
  }
4520
4583
  .sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected).sd-rating__item-smiley--allowhover:hover {
4584
+ background-color: var(--sd-rating-item-color-light, var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248))));
4585
+ border-color: var(--sd-rating-item-color, var(--sjs-border-default, var(--border, #d6d6d6)));
4521
4586
  opacity: 0.5;
4522
4587
  }
4523
4588
 
@@ -4527,6 +4592,12 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4527
4592
 
4528
4593
  .sd-rating__item-smiley--scale-colored:not(.sd-rating__item-smiley--selected):focus-within {
4529
4594
  opacity: 1;
4595
+ box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 2px var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4596
+ }
4597
+
4598
+ .sd-rating__item-smiley--scale-colored.sd-rating__item-smiley--small:not(.sd-rating__item-smiley--selected):focus-within {
4599
+ opacity: 1;
4600
+ box-shadow: var(--sjs-shadow-small-reset, 0px 0px 0px 0px rgba(0, 0, 0, 0.15)), 0 0 0 1px var(--sd-rating-item-color, var(--sjs-primary-backcolor, var(--primary, #19b394)));
4530
4601
  }
4531
4602
 
4532
4603
  .sd-rating__item-smiley--scale-colored.sd-rating__item-smiley--selected, .sd-rating__item-smiley--scale-colored.sd-rating__item-smiley--readonly, .sd-rating__item-smiley--scale-colored.sd-rating__item-smiley--preview {
@@ -4695,7 +4766,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4695
4766
  fill: var(--sjs-general-forecolor, var(--foreground, #161616));
4696
4767
  }
4697
4768
 
4698
- .sd-rating__item-star:focus-within svg {
4769
+ .sd-rating__item-star:not(.sd-rating__item-star--preview):focus-within svg {
4699
4770
  stroke: var(--sjs-primary-backcolor, var(--primary, #19b394));
4700
4771
  fill: transparent;
4701
4772
  }
@@ -4710,19 +4781,19 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4710
4781
  fill: var(--sjs-questionpanel-hovercolor, var(--sjs-general-backcolor-dark, rgb(248, 248, 248)));
4711
4782
  }
4712
4783
 
4713
- .sd-rating__item-star--selected.sd-rating__item-star--unhighlighted:focus-within svg {
4784
+ .sd-rating__item-star--selected:not(.sd-rating__item-star--preview).sd-rating__item-star--unhighlighted:focus-within svg {
4714
4785
  stroke: var(--sjs-border-default, var(--border, #d6d6d6));
4715
4786
  fill: var(--sjs-border-default, var(--border, #d6d6d6));
4716
4787
  }
4717
4788
 
4718
- .sd-rating__item-star--selected:focus-within svg {
4789
+ .sd-rating__item-star--selected:not(.sd-rating__item-star--preview):focus-within svg {
4719
4790
  stroke: var(--sjs-primary-backcolor, var(--primary, #19b394));
4720
4791
  fill: var(--sjs-primary-backcolor, var(--primary, #19b394));
4721
4792
  }
4722
- .sd-rating__item-star--selected:focus-within .sv-star {
4793
+ .sd-rating__item-star--selected:not(.sd-rating__item-star--preview):focus-within .sv-star {
4723
4794
  opacity: 0;
4724
4795
  }
4725
- .sd-rating__item-star--selected:focus-within .sv-star-2 {
4796
+ .sd-rating__item-star--selected:not(.sd-rating__item-star--preview):focus-within .sv-star-2 {
4726
4797
  opacity: 1;
4727
4798
  }
4728
4799
 
@@ -4734,7 +4805,6 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4734
4805
  font-size: var(--sjs-internal-font-editorfont-size);
4735
4806
  line-height: calc(1.5 * (var(--sjs-internal-font-editorfont-size)));
4736
4807
  display: inline-block;
4737
- border: 2px solid transparent;
4738
4808
  box-sizing: border-box;
4739
4809
  transition: color var(--sjs-transition-duration, 150ms);
4740
4810
  }
@@ -4742,6 +4812,7 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4742
4812
  margin-top: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4743
4813
  margin-bottom: calc(1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4744
4814
  color: var(--sjs-font-questiondescription-color, var(--sjs-general-forecolor-light, rgba(0, 0, 0, 0.45)));
4815
+ border: 2px solid rgba(0, 0, 0, 0);
4745
4816
  }
4746
4817
  .sd-rating__item-text.sd-rating__item-text.sd-rating__min-text {
4747
4818
  margin-right: var(--sjs-base-unit, var(--base-unit, 8px));
@@ -4757,6 +4828,15 @@ legend + sv-ng-rating-item + .sd-rating__item-smiley {
4757
4828
  .sd-rating__item-text.sd-rating__item-text.sd-rating__item--fixed-size {
4758
4829
  min-width: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
4759
4830
  }
4831
+ .sd-rating__item-text.sd-rating__item-text::after {
4832
+ display: block;
4833
+ content: attr(data-text);
4834
+ font-weight: 600;
4835
+ height: 0;
4836
+ color: transparent;
4837
+ overflow: hidden;
4838
+ visibility: hidden;
4839
+ }
4760
4840
 
4761
4841
  .sd-rating--wrappable .sd-rating__item-text {
4762
4842
  max-width: 100%;
@@ -7382,12 +7462,12 @@ svg.sd-action--icon {
7382
7462
  padding: calc(4 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7383
7463
  display: flex;
7384
7464
  flex-direction: column;
7385
- transition: 0.25s padding ease-out;
7386
7465
  }
7387
7466
 
7388
7467
  .sd-progress-buttons__list-container {
7389
7468
  display: flex;
7390
7469
  overflow: hidden;
7470
+ margin: 0 calc(-0.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7391
7471
  }
7392
7472
 
7393
7473
  .sd-progress-buttons__connector {
@@ -7443,14 +7523,12 @@ svg.sd-action--icon {
7443
7523
  }
7444
7524
  .sd-progress-buttons__list li .sd-progress-buttons__button .sd-progress-buttons__button-background {
7445
7525
  position: absolute;
7446
- width: 100%;
7447
- height: 100%;
7526
+ width: calc(2.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7527
+ height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7448
7528
  top: calc(-0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7449
- left: calc(-0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7529
+ left: calc(-1.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7450
7530
  background-color: var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
7451
7531
  z-index: -2;
7452
- border: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid var(--sjs-general-backcolor-dim, var(--background-dim, #f3f3f3));
7453
- border-radius: 50%;
7454
7532
  }
7455
7533
  .sd-progress-buttons__list li .sd-progress-buttons__button .sd-progress-buttons__button-content {
7456
7534
  position: absolute;
@@ -7467,11 +7545,14 @@ svg.sd-action--icon {
7467
7545
  }
7468
7546
  .sd-progress-buttons__list li:hover .sd-progress-buttons__button {
7469
7547
  color: var(--sjs-primary-backcolor, var(--primary, #19b394));
7470
- padding: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7548
+ padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7471
7549
  margin: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7472
- border: calc(0.75 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid var(--sjs-primary-backcolor, var(--primary, #19b394));
7550
+ border: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid var(--sjs-primary-backcolor, var(--primary, #19b394));
7473
7551
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
7474
7552
  }
7553
+ .sd-progress-buttons__list li:hover .sd-progress-buttons__button .sd-progress-buttons__button-background {
7554
+ left: calc(-0.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7555
+ }
7475
7556
  .sd-progress-buttons__list li:hover .sd-progress-buttons__button .sd-progress-buttons__button-content {
7476
7557
  top: calc(-0.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7477
7558
  left: calc(-0.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
@@ -7498,8 +7579,11 @@ svg.sd-action--icon {
7498
7579
  border: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid var(--sjs-primary-backcolor, var(--primary, #19b394));
7499
7580
  background-color: var(--sjs-primary-forecolor, var(--primary-foreground, #fff));
7500
7581
  color: var(--sjs-primary-backcolor, var(--primary, #19b394));
7501
- padding: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7502
- margin: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7582
+ padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7583
+ margin: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7584
+ }
7585
+ .sd-progress-buttons__list .sd-progress-buttons__list-element--current .sd-progress-buttons__button .sd-progress-buttons__button-background {
7586
+ left: calc(-0.75 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7503
7587
  }
7504
7588
  .sd-progress-buttons__list .sd-progress-buttons__list-element--current .sd-progress-buttons__button .sd-progress-buttons__button-content {
7505
7589
  border: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px)))) solid var(--sjs-primary-backcolor, var(--primary, #19b394));
@@ -7555,6 +7639,9 @@ svg.sd-action--icon {
7555
7639
  margin-bottom: var(--sjs-base-unit, var(--base-unit, 8px));
7556
7640
  }
7557
7641
 
7642
+ .sd-progress-buttons--numbered .sd-progress-buttons__list-container {
7643
+ margin: 0 calc(-1 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7644
+ }
7558
7645
  .sd-progress-buttons--numbered .sd-progress-buttons__list li:not(:first-child) > .sd-progress-buttons__connector {
7559
7646
  bottom: calc(2.175 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7560
7647
  right: calc(50% + 8px);
@@ -7564,8 +7651,16 @@ svg.sd-action--icon {
7564
7651
  width: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7565
7652
  height: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7566
7653
  }
7654
+ .sd-progress-buttons--numbered .sd-progress-buttons__list li .sd-progress-buttons__button .sd-progress-buttons__button-background {
7655
+ height: calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7656
+ width: calc(4.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7657
+ }
7567
7658
  .sd-progress-buttons--numbered .sd-progress-buttons__list li:hover .sd-progress-buttons__button {
7568
- padding: calc(0.25 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7659
+ padding: calc(0.5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7660
+ }
7661
+
7662
+ .sd-progress-buttons--with-titles .sd-progress-buttons__list-container {
7663
+ margin: 0;
7569
7664
  }
7570
7665
 
7571
7666
  .sd-root-modern--mobile .sd-progress-buttons__list,
@@ -7586,10 +7681,6 @@ svg.sd-action--icon {
7586
7681
  padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(3 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7587
7682
  }
7588
7683
 
7589
- .sv-root--sticky-top .sd-progress-buttons {
7590
- padding: calc(2 * (var(--sjs-base-unit, var(--base-unit, 8px)))) calc(5 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7591
- }
7592
-
7593
7684
  .sd-progress-buttons--fit-survey-width {
7594
7685
  max-width: calc(90 * (var(--sjs-base-unit, var(--base-unit, 8px))));
7595
7686
  box-sizing: border-box;