@duffel/components 2.0.3 → 2.1.2
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/README.md +2 -1
- package/dist/AdditionalBaggage.esm.js +1 -0
- package/dist/AdditionalBaggage.js +1 -0
- package/dist/AdditionalBaggage.min.css +408 -0
- package/dist/AdditionalBaggage.umd.min.js +2 -0
- package/dist/AdditionalBaggage.umd.min.js.LICENSE.txt +54 -0
- package/dist/AdditionalBaggageSelection.esm.js +1 -0
- package/dist/AdditionalBaggageSelection.js +1 -0
- package/dist/AdditionalBaggageSelection.min.css +743 -0
- package/dist/AdditionalBaggageSelection.umd.min.js +2 -0
- package/dist/AdditionalBaggageSelection.umd.min.js.LICENSE.txt +54 -0
- package/dist/CardPayment.esm.js +1 -1
- package/dist/CardPayment.js +1 -1
- package/dist/CardPayment.min.css +7 -7
- package/dist/CardPayment.umd.min.js +1 -1
- package/dist/SeatSelection.esm.js +1 -1
- package/dist/SeatSelection.js +1 -1
- package/dist/SeatSelection.min.css +289 -193
- package/dist/SeatSelection.umd.min.js +1 -1
- package/dist/duffel-components.d.ts +57 -6
- package/dist/duffel-components.esm.js +1 -1
- package/dist/duffel-components.js +1 -1
- package/dist/duffel-components.min.css +382 -187
- package/dist/duffel-components.umd.min.js +1 -1
- package/package.json +45 -43
- package/CHANGELOG.md +0 -0
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
.duffel-components .duffel-button {
|
|
8
8
|
--BUTTON-BASE-COLOR: rgb(var(--ACCENT));
|
|
9
9
|
--BUTTON-HOVER-COLOR: rgba(var(--ACCENT), var(--ACCENT-LIGHT-300));
|
|
10
|
-
--BUTTON-FONT-SIZE: var(--FONT-SIZES-
|
|
10
|
+
--BUTTON-FONT-SIZE: var(--FONT-SIZES-C1);
|
|
11
11
|
--BUTTON-ICON-SIZE: 24px;
|
|
12
12
|
--BUTTON-RADIUS: 5px;
|
|
13
|
-
--BUTTON-SPACING:
|
|
13
|
+
--BUTTON-SPACING: 2px 40px;
|
|
14
14
|
--BUTTON-ICON-SPACING: 8px;
|
|
15
15
|
--BUTTON-ICON-MARGIN: 12px;
|
|
16
16
|
--TRANSITION-CUBIC-BEZIER: cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
|
|
42
42
|
.duffel-components .duffel-button.duffel-button--icon-only {
|
|
43
43
|
padding: var(--BUTTON-ICON-SPACING);
|
|
44
|
-
height:
|
|
45
|
-
width:
|
|
44
|
+
height: 40px;
|
|
45
|
+
width: 40px;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.duffel-components .duffel-button.duffel-button--icon-only > svg {
|
|
@@ -123,13 +123,13 @@
|
|
|
123
123
|
line-height: 24px
|
|
124
124
|
}
|
|
125
125
|
.duffel-components .duffel-button:not(.duffel-button--icon-only) {
|
|
126
|
-
height:
|
|
126
|
+
height: 40px;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
.duffel-components .duffel-button.duffel-button--icon-only {
|
|
130
130
|
padding: var(--BUTTON-ICON-SPACING);
|
|
131
|
-
height:
|
|
132
|
-
width:
|
|
131
|
+
height: 40px;
|
|
132
|
+
width: 40px;
|
|
133
133
|
}
|
|
134
134
|
}
|
|
135
135
|
|
|
@@ -498,118 +498,6 @@
|
|
|
498
498
|
text-transform: uppercase;
|
|
499
499
|
}
|
|
500
500
|
|
|
501
|
-
.duffel-components .passenger-selection-passenger {
|
|
502
|
-
-webkit-appearance: none;
|
|
503
|
-
-moz-appearance: none;
|
|
504
|
-
appearance: none;
|
|
505
|
-
border: none;
|
|
506
|
-
background: none;
|
|
507
|
-
cursor: pointer;
|
|
508
|
-
font-size: var(--FONT-SIZES-C2);
|
|
509
|
-
font-family: var(--FONT-FAMILY);
|
|
510
|
-
margin-top: var(--SPACING-XS-2);
|
|
511
|
-
height: 32px;
|
|
512
|
-
display: flex;
|
|
513
|
-
align-items: center;
|
|
514
|
-
padding: var(--SPACING-SM-1) var(--SPACING-LG-1);
|
|
515
|
-
width: 100%;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
.duffel-components .passenger-selection-passenger:first-child {
|
|
519
|
-
margin-top: 0;
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
.duffel-components .passenger-selection-passenger:hover,
|
|
523
|
-
.duffel-components .passenger-selection-passenger:focus,
|
|
524
|
-
.duffel-components .passenger-selection-passenger:active {
|
|
525
|
-
background-color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-100));
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.duffel-components .passenger-selection-passenger__identifier,
|
|
529
|
-
.duffel-components .passenger-selection-passenger__action {
|
|
530
|
-
line-height: 1;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
.duffel-components .passenger-selection-passenger__identifier {
|
|
534
|
-
flex-grow: 1;
|
|
535
|
-
margin-right: var(--SPACING-LG-1);
|
|
536
|
-
text-align: left;
|
|
537
|
-
color: var(--GREY-900);
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.duffel-components .passenger-selection-passenger__action {
|
|
541
|
-
color: var(--GREY-600);
|
|
542
|
-
margin-right: var(--SPACING-XS-2);
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
.duffel-components .passenger-selection-passenger__seat-designator {
|
|
546
|
-
color: var(--GREY-900);
|
|
547
|
-
font-weight: 600;
|
|
548
|
-
margin-right: var(--SPACING-SM-3);
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
.duffel-components .passenger-selection-passenger__seat-price {
|
|
552
|
-
text-align: right;
|
|
553
|
-
display: inline-block;
|
|
554
|
-
width: 70px;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.duffel-components .passenger-selection-passenger--selected {
|
|
558
|
-
box-shadow: 4px 0px 0px 0px rgba(var(--ACCENT), var(--ACCENT-LIGHT-1000))
|
|
559
|
-
inset;
|
|
560
|
-
background-color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-100));
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
.duffel-components .passenger-segment__title {
|
|
564
|
-
color: var(--GREY-900);
|
|
565
|
-
font-style: normal;
|
|
566
|
-
font-size: var(--FONT-SIZES-C1);
|
|
567
|
-
font-weight: 600;
|
|
568
|
-
line-height: var(--SPACING-MD-3);
|
|
569
|
-
padding: 0 0 0 var(--SPACING-LG-1);
|
|
570
|
-
margin: 0 0 var(--SPACING-SM-1);
|
|
571
|
-
display: flex;
|
|
572
|
-
align-items: center;
|
|
573
|
-
}
|
|
574
|
-
.duffel-components .passenger-segment__chevron {
|
|
575
|
-
margin: 0 var(--SPACING-SM-1);
|
|
576
|
-
color: var(--GREY-400);
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
.duffel-components .passenger-selection-segment {
|
|
580
|
-
margin: var(--SPACING-LG-1) 0 0;
|
|
581
|
-
padding: 0 0 var(--SPACING-LG-1);
|
|
582
|
-
border-bottom: 1px solid var(--GREY-200);
|
|
583
|
-
font-family: var(--FONT-FAMILY);
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.duffel-components .passenger-selection-segment:first-child {
|
|
587
|
-
margin-top: 0;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
.duffel-components .passenger-selection {
|
|
591
|
-
display: flex;
|
|
592
|
-
flex-direction: column;
|
|
593
|
-
font-family: var(--FONT-FAMILY);
|
|
594
|
-
flex-grow: 1;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
.duffel-components .passenger-selection__title {
|
|
598
|
-
margin: 0;
|
|
599
|
-
padding: 0 0 var(--SPACING-MD-3);
|
|
600
|
-
font-size: var(--FONT-SIZES-H2);
|
|
601
|
-
line-height: 1.2;
|
|
602
|
-
min-width: 360px;
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.duffel-components .passenger-selection__segments {
|
|
606
|
-
list-style: none;
|
|
607
|
-
overflow-y: auto;
|
|
608
|
-
font-size: var(--FONT-SIZES-C1);
|
|
609
|
-
padding: var(--SPACING-XS-2);
|
|
610
|
-
margin: calc(var(--SPACING-XS-2) * -1);
|
|
611
|
-
}
|
|
612
|
-
|
|
613
501
|
.duffel-components .seat-map__legend {
|
|
614
502
|
width: calc(100% + var(--SPACING-MD-3));
|
|
615
503
|
min-height: -webkit-fit-content;
|
|
@@ -913,82 +801,220 @@
|
|
|
913
801
|
}
|
|
914
802
|
}
|
|
915
803
|
|
|
916
|
-
.duffel-components .
|
|
917
|
-
|
|
804
|
+
.duffel-components .seat-selection {
|
|
805
|
+
--SEAT-SELECTION-BOX-SHADOW: 0px 0px 0px 1px rgba(var(--BLACK), 0.05),
|
|
806
|
+
0px 4px 24px rgba(var(--BLACK), 0.08);
|
|
807
|
+
background-color: rgb(var(--WHITE));
|
|
808
|
+
display: flex;
|
|
809
|
+
flex-direction: column;
|
|
810
|
+
width: 100%;
|
|
811
|
+
height: 100%;
|
|
812
|
+
padding: 0;
|
|
813
|
+
position: relative;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.duffel-components .seat-selection__content {
|
|
918
817
|
display: flex;
|
|
818
|
+
flex-direction: column;
|
|
919
819
|
align-items: center;
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
820
|
+
flex-grow: 1;
|
|
821
|
+
border-bottom: 1px solid rgba(59, 64, 86, 0.1);
|
|
822
|
+
height: calc(100% - 177px);
|
|
823
|
+
overflow: auto;
|
|
923
824
|
}
|
|
924
825
|
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
826
|
+
.duffel-components .seat-selection__content-child--passengers {
|
|
827
|
+
display: none;
|
|
828
|
+
padding-top: var(--SPACING-LG-1);
|
|
829
|
+
}
|
|
929
830
|
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
font-weight: normal;
|
|
934
|
-
margin: 0;
|
|
935
|
-
padding: 0;
|
|
936
|
-
}
|
|
937
|
-
.duffel-components .summary__description-cost {
|
|
831
|
+
.duffel-components .seat-selection__content-child--map {
|
|
832
|
+
width: 100%;
|
|
833
|
+
height: 100%;
|
|
938
834
|
display: flex;
|
|
939
835
|
justify-content: space-between;
|
|
940
|
-
|
|
941
|
-
margin-bottom: var(--SPACING-SM-3);
|
|
836
|
+
flex-direction: column;
|
|
942
837
|
}
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
838
|
+
|
|
839
|
+
.duffel-components .seat-selection__mobile-seat-info {
|
|
840
|
+
align-self: center;
|
|
841
|
+
position: absolute;
|
|
842
|
+
bottom: 187px;
|
|
843
|
+
width: calc(100% - 20px);
|
|
844
|
+
padding: var(--SPACING-XS-3);
|
|
845
|
+
margin-bottom: var(--SPACING-SM-2);
|
|
846
|
+
height: auto;
|
|
847
|
+
background-color: white;
|
|
848
|
+
border-radius: 8px;
|
|
849
|
+
z-index: 100;
|
|
850
|
+
box-shadow: var(--SEAT-SELECTION-BOX-SHADOW);
|
|
946
851
|
}
|
|
947
|
-
|
|
948
|
-
|
|
852
|
+
|
|
853
|
+
.duffel-components .seat-selection__confirmation {
|
|
854
|
+
padding: var(--SPACING-MD-3);
|
|
855
|
+
box-shadow: var(--SEAT-SELECTION-BOX-SHADOW);
|
|
856
|
+
position: -webkit-sticky;
|
|
857
|
+
position: sticky;
|
|
858
|
+
bottom: 0;
|
|
859
|
+
background-color: rgb(var(--WHITE));
|
|
949
860
|
}
|
|
950
|
-
|
|
951
|
-
|
|
861
|
+
|
|
862
|
+
@media screen and (min-width: 768px) {
|
|
863
|
+
.duffel-components .seat-selection {
|
|
864
|
+
width: calc(100vw - 2 * 56px);
|
|
865
|
+
overflow: hidden;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.duffel-components .seat-selection__content {
|
|
869
|
+
height: auto;
|
|
870
|
+
padding: 0;
|
|
871
|
+
flex-direction: row;
|
|
872
|
+
align-items: initial;
|
|
873
|
+
max-height: calc(100vh - 115px);
|
|
952
874
|
}
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
875
|
+
|
|
876
|
+
.duffel-components .seat-selection__confirmation {
|
|
877
|
+
padding: var(--SPACING-LG-1);
|
|
878
|
+
box-shadow: none;
|
|
957
879
|
}
|
|
958
|
-
|
|
959
|
-
.duffel-components .
|
|
880
|
+
|
|
881
|
+
.duffel-components .seat-selection__content-child--passengers {
|
|
882
|
+
overflow: auto;
|
|
883
|
+
border-right: 1px solid var(--GREY-200);
|
|
960
884
|
display: flex;
|
|
961
|
-
|
|
885
|
+
flex-direction: column;
|
|
886
|
+
position: -webkit-sticky;
|
|
887
|
+
position: sticky;
|
|
888
|
+
top: 0;
|
|
889
|
+
flex: 1 0 auto;
|
|
890
|
+
min-width: 415px;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.duffel-components .seat-selection__content-child--passengers > div:not(.passenger-selection) {
|
|
894
|
+
margin-left: var(--SPACING-LG-1);
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.duffel-components .seat-selection__content-child--map {
|
|
898
|
+
height: auto;
|
|
962
899
|
align-items: center;
|
|
900
|
+
overflow: auto;
|
|
963
901
|
}
|
|
902
|
+
}
|
|
964
903
|
|
|
965
|
-
|
|
966
|
-
|
|
904
|
+
.duffel-components .passenger-selection {
|
|
905
|
+
display: flex;
|
|
906
|
+
flex-direction: column;
|
|
907
|
+
font-family: var(--FONT-FAMILY);
|
|
908
|
+
flex-grow: 1;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.duffel-components .passenger-selection__title {
|
|
912
|
+
margin: 0;
|
|
913
|
+
padding: 0 0 var(--SPACING-MD-3);
|
|
914
|
+
font-size: var(--FONT-SIZES-H2);
|
|
915
|
+
line-height: 1.2;
|
|
916
|
+
min-width: 360px;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.duffel-components .passenger-selection__segments {
|
|
920
|
+
list-style: none;
|
|
921
|
+
overflow-y: auto;
|
|
922
|
+
font-size: var(--FONT-SIZES-C1);
|
|
923
|
+
padding: var(--SPACING-XS-2);
|
|
924
|
+
margin: calc(var(--SPACING-XS-2) * -1);
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.duffel-components .passenger-selection-passenger {
|
|
928
|
+
-webkit-appearance: none;
|
|
929
|
+
-moz-appearance: none;
|
|
930
|
+
appearance: none;
|
|
931
|
+
border: none;
|
|
932
|
+
background: none;
|
|
933
|
+
cursor: pointer;
|
|
934
|
+
font-size: var(--FONT-SIZES-C2);
|
|
935
|
+
font-family: var(--FONT-FAMILY);
|
|
936
|
+
margin-top: var(--SPACING-XS-2);
|
|
937
|
+
height: 32px;
|
|
938
|
+
display: flex;
|
|
939
|
+
align-items: center;
|
|
940
|
+
padding: var(--SPACING-SM-1) var(--SPACING-LG-1);
|
|
941
|
+
width: 100%;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.duffel-components .passenger-selection-passenger:first-child {
|
|
945
|
+
margin-top: 0;
|
|
967
946
|
}
|
|
968
947
|
|
|
969
|
-
|
|
948
|
+
.duffel-components .passenger-selection-passenger:hover,
|
|
949
|
+
.duffel-components .passenger-selection-passenger:focus,
|
|
950
|
+
.duffel-components .passenger-selection-passenger:active {
|
|
951
|
+
background-color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-100));
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.duffel-components .passenger-selection-passenger__identifier,
|
|
955
|
+
.duffel-components .passenger-selection-passenger__action {
|
|
956
|
+
line-height: 1;
|
|
957
|
+
}
|
|
958
|
+
|
|
959
|
+
.duffel-components .passenger-selection-passenger__identifier {
|
|
960
|
+
flex-grow: 1;
|
|
961
|
+
margin-right: var(--SPACING-LG-1);
|
|
962
|
+
text-align: left;
|
|
970
963
|
color: var(--GREY-900);
|
|
971
|
-
font-size: var(--FONT-SIZES-H5);
|
|
972
|
-
line-height: 26px;
|
|
973
|
-
margin-bottom: var(--SPACING-XS-2);
|
|
974
964
|
}
|
|
975
965
|
|
|
976
|
-
|
|
966
|
+
.duffel-components .passenger-selection-passenger__action {
|
|
977
967
|
color: var(--GREY-600);
|
|
978
|
-
|
|
979
|
-
line-height: 21px;
|
|
980
|
-
margin-bottom: 0;
|
|
968
|
+
margin-right: var(--SPACING-XS-2);
|
|
981
969
|
}
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
970
|
+
|
|
971
|
+
.duffel-components .passenger-selection-passenger__seat-designator {
|
|
972
|
+
color: var(--GREY-900);
|
|
973
|
+
font-weight: 600;
|
|
974
|
+
margin-right: var(--SPACING-SM-3);
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.duffel-components .passenger-selection-passenger__seat-price {
|
|
978
|
+
text-align: right;
|
|
979
|
+
display: inline-block;
|
|
980
|
+
width: 70px;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.duffel-components .passenger-selection-passenger--selected {
|
|
984
|
+
box-shadow: 4px 0px 0px 0px rgba(var(--ACCENT), var(--ACCENT-LIGHT-1000))
|
|
985
|
+
inset;
|
|
986
|
+
background-color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-100));
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.duffel-components .passenger-segment__title {
|
|
990
|
+
color: var(--GREY-900);
|
|
991
|
+
font-style: normal;
|
|
992
|
+
font-size: var(--FONT-SIZES-C1);
|
|
993
|
+
font-weight: 600;
|
|
994
|
+
line-height: var(--SPACING-MD-3);
|
|
995
|
+
padding: 0 0 0 var(--SPACING-LG-1);
|
|
996
|
+
margin: 0 0 var(--SPACING-SM-1);
|
|
997
|
+
display: flex;
|
|
998
|
+
align-items: center;
|
|
999
|
+
}
|
|
1000
|
+
.duffel-components .passenger-segment__chevron {
|
|
1001
|
+
margin: 0 var(--SPACING-SM-1);
|
|
1002
|
+
color: var(--GREY-400);
|
|
988
1003
|
}
|
|
989
1004
|
|
|
990
|
-
.duffel-components .
|
|
991
|
-
|
|
1005
|
+
.duffel-components .passenger-selection-segment {
|
|
1006
|
+
margin: var(--SPACING-LG-1) 0 0;
|
|
1007
|
+
padding: 0 0 var(--SPACING-LG-1);
|
|
1008
|
+
border-bottom: 1px solid var(--GREY-200);
|
|
1009
|
+
font-family: var(--FONT-FAMILY);
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.duffel-components .passenger-selection-segment:first-child {
|
|
1013
|
+
margin-top: 0;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.duffel-components .layout {
|
|
1017
|
+
--LAYOUT-BOX-SHADOW: 0px 0px 0px 1px rgba(var(--BLACK), 0.05),
|
|
992
1018
|
0px 4px 24px rgba(var(--BLACK), 0.08);
|
|
993
1019
|
background-color: rgb(var(--WHITE));
|
|
994
1020
|
display: flex;
|
|
@@ -999,7 +1025,7 @@
|
|
|
999
1025
|
position: relative;
|
|
1000
1026
|
}
|
|
1001
1027
|
|
|
1002
|
-
.duffel-components .
|
|
1028
|
+
.duffel-components .layout__container {
|
|
1003
1029
|
display: flex;
|
|
1004
1030
|
flex-direction: column;
|
|
1005
1031
|
align-items: center;
|
|
@@ -1009,12 +1035,12 @@
|
|
|
1009
1035
|
overflow: auto;
|
|
1010
1036
|
}
|
|
1011
1037
|
|
|
1012
|
-
.duffel-components .
|
|
1038
|
+
.duffel-components .layout__aside {
|
|
1013
1039
|
display: none;
|
|
1014
1040
|
padding-top: var(--SPACING-LG-1);
|
|
1015
1041
|
}
|
|
1016
1042
|
|
|
1017
|
-
.duffel-components .
|
|
1043
|
+
.duffel-components .layout__main-content {
|
|
1018
1044
|
width: 100%;
|
|
1019
1045
|
height: 100%;
|
|
1020
1046
|
display: flex;
|
|
@@ -1022,7 +1048,7 @@
|
|
|
1022
1048
|
flex-direction: column;
|
|
1023
1049
|
}
|
|
1024
1050
|
|
|
1025
|
-
.duffel-components .
|
|
1051
|
+
.duffel-components .layout__mobile-info {
|
|
1026
1052
|
align-self: center;
|
|
1027
1053
|
position: absolute;
|
|
1028
1054
|
bottom: 187px;
|
|
@@ -1033,12 +1059,12 @@
|
|
|
1033
1059
|
background-color: white;
|
|
1034
1060
|
border-radius: 8px;
|
|
1035
1061
|
z-index: 100;
|
|
1036
|
-
box-shadow: var(--
|
|
1062
|
+
box-shadow: var(--LAYOUT-BOX-SHADOW);
|
|
1037
1063
|
}
|
|
1038
1064
|
|
|
1039
|
-
.duffel-components .
|
|
1065
|
+
.duffel-components .layout__confirmation {
|
|
1040
1066
|
padding: var(--SPACING-MD-3);
|
|
1041
|
-
box-shadow: var(--
|
|
1067
|
+
box-shadow: var(--LAYOUT-BOX-SHADOW);
|
|
1042
1068
|
position: -webkit-sticky;
|
|
1043
1069
|
position: sticky;
|
|
1044
1070
|
bottom: 0;
|
|
@@ -1046,12 +1072,12 @@
|
|
|
1046
1072
|
}
|
|
1047
1073
|
|
|
1048
1074
|
@media screen and (min-width: 768px) {
|
|
1049
|
-
.duffel-components .
|
|
1050
|
-
width: calc(100vw - 2 *
|
|
1075
|
+
.duffel-components .layout {
|
|
1076
|
+
width: calc(100vw - 2 * 71px);
|
|
1051
1077
|
overflow: hidden;
|
|
1052
1078
|
}
|
|
1053
1079
|
|
|
1054
|
-
.duffel-components .
|
|
1080
|
+
.duffel-components .layout__container {
|
|
1055
1081
|
height: auto;
|
|
1056
1082
|
padding: 0;
|
|
1057
1083
|
flex-direction: row;
|
|
@@ -1059,12 +1085,12 @@
|
|
|
1059
1085
|
max-height: calc(100vh - 115px);
|
|
1060
1086
|
}
|
|
1061
1087
|
|
|
1062
|
-
.duffel-components .
|
|
1088
|
+
.duffel-components .layout__confirmation {
|
|
1063
1089
|
padding: var(--SPACING-LG-1);
|
|
1064
1090
|
box-shadow: none;
|
|
1065
1091
|
}
|
|
1066
1092
|
|
|
1067
|
-
.duffel-components .
|
|
1093
|
+
.duffel-components .layout__aside {
|
|
1068
1094
|
overflow: auto;
|
|
1069
1095
|
border-right: 1px solid var(--GREY-200);
|
|
1070
1096
|
display: flex;
|
|
@@ -1076,14 +1102,183 @@
|
|
|
1076
1102
|
min-width: 415px;
|
|
1077
1103
|
}
|
|
1078
1104
|
|
|
1079
|
-
|
|
1080
|
-
margin-left: var(--SPACING-LG-1);
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
.duffel-components .seat-selection__content-child--map {
|
|
1105
|
+
.duffel-components .layout__main-content {
|
|
1084
1106
|
height: auto;
|
|
1085
1107
|
align-items: center;
|
|
1086
1108
|
overflow: auto;
|
|
1087
1109
|
}
|
|
1088
1110
|
}
|
|
1089
1111
|
|
|
1112
|
+
.duffel-components .summary__segment {
|
|
1113
|
+
border-bottom: 1px solid var(--GREY-200);
|
|
1114
|
+
display: flex;
|
|
1115
|
+
align-items: center;
|
|
1116
|
+
justify-content: space-between;
|
|
1117
|
+
margin-bottom: var(--SPACING-SM-3);
|
|
1118
|
+
padding-bottom: var(--SPACING-SM-3);
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.duffel-components .summary__segment > .passenger-segment__title {
|
|
1122
|
+
padding: 0;
|
|
1123
|
+
margin: 0;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.duffel-components .summary__segment-passenger {
|
|
1127
|
+
color: var(--GREY-900);
|
|
1128
|
+
font-size: var(--FONT-SIZES-C1);
|
|
1129
|
+
font-weight: normal;
|
|
1130
|
+
margin: 0;
|
|
1131
|
+
padding: 0;
|
|
1132
|
+
}
|
|
1133
|
+
.duffel-components .summary__description-cost {
|
|
1134
|
+
display: flex;
|
|
1135
|
+
justify-content: space-between;
|
|
1136
|
+
font-size: var(--FONT-SIZES-C1);
|
|
1137
|
+
margin-bottom: var(--SPACING-SM-3);
|
|
1138
|
+
}
|
|
1139
|
+
.duffel-components .summary:not(.summary--mobile) {
|
|
1140
|
+
padding-top: 0;
|
|
1141
|
+
display: none;
|
|
1142
|
+
}
|
|
1143
|
+
.duffel-components .summary__actions {
|
|
1144
|
+
display: flex;
|
|
1145
|
+
}
|
|
1146
|
+
.duffel-components .summary__actions--previous {
|
|
1147
|
+
transform: rotate(180deg);
|
|
1148
|
+
}
|
|
1149
|
+
.duffel-components .summary__actions > button:last-of-type {
|
|
1150
|
+
flex: 1 auto;
|
|
1151
|
+
justify-content: center;
|
|
1152
|
+
margin-left: var(--SPACING-SM-3);
|
|
1153
|
+
}
|
|
1154
|
+
@media screen and (min-width: 768px) {
|
|
1155
|
+
.duffel-components .summary:not(.summary--mobile) {
|
|
1156
|
+
display: flex;
|
|
1157
|
+
justify-content: space-between;
|
|
1158
|
+
align-items: center;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.duffel-components .summary--mobile {
|
|
1162
|
+
display: none;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
.duffel-components .summary__description-title {
|
|
1166
|
+
color: var(--GREY-900);
|
|
1167
|
+
font-size: var(--FONT-SIZES-H5);
|
|
1168
|
+
line-height: 26px;
|
|
1169
|
+
margin-bottom: var(--SPACING-XS-2);
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.duffel-components .summary__description-cost {
|
|
1173
|
+
color: var(--GREY-600);
|
|
1174
|
+
font-size: var(--FONT-SIZES-C2);
|
|
1175
|
+
line-height: 21px;
|
|
1176
|
+
margin-bottom: 0;
|
|
1177
|
+
}
|
|
1178
|
+
.duffel-components .summary__actions--previous.duffel-button--icon-only {
|
|
1179
|
+
padding: 0;
|
|
1180
|
+
}
|
|
1181
|
+
.duffel-components .summary__actions .summary__confirmation-btn:last-child {
|
|
1182
|
+
margin-left: var(--SPACING-SM-1);
|
|
1183
|
+
}
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
.duffel-components .counter {
|
|
1187
|
+
display: flex;
|
|
1188
|
+
align-items: center;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.duffel-components .counter__count-label {
|
|
1192
|
+
font-size: var(--FONT-SIZES-C2);
|
|
1193
|
+
text-align: center;
|
|
1194
|
+
align-self: center;
|
|
1195
|
+
color: var(--GREY-900);
|
|
1196
|
+
width: var(--SPACING-LG-2);
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
@media screen and (min-width: 768px) {
|
|
1200
|
+
.duffel-components .counter__count-label {
|
|
1201
|
+
width: var(--SPACING-LG-1);
|
|
1202
|
+
}
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
.duffel-components .baggage-display {
|
|
1206
|
+
display: flex;
|
|
1207
|
+
align-items: center;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.duffel-components .baggage-display__content {
|
|
1211
|
+
margin-left: var(--SPACING-SM-1);
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.duffel-components .baggage-display__label {
|
|
1215
|
+
color: var(--grey-900);
|
|
1216
|
+
font-size: var(--FONT-SIZES-C2);
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.duffel-components .baggage-display__price {
|
|
1220
|
+
font-size: var(--FONT-SIZES-C2);
|
|
1221
|
+
color: var(--GREY-600);
|
|
1222
|
+
margin-left: var(--SPACING-XS-2);
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
.duffel-components .baggage-display__specs {
|
|
1226
|
+
margin-top: var(--SPACING-XS-2);
|
|
1227
|
+
font-size: var(--FONT-SIZES-C3);
|
|
1228
|
+
color: var(--GREY-600);
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.duffel-components .baggage-selection__control-container {
|
|
1232
|
+
display: flex;
|
|
1233
|
+
align-items: center;
|
|
1234
|
+
justify-content: space-between;
|
|
1235
|
+
margin-bottom: var(--SPACING-SM-1);
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.duffel-components .baggage-selection__control-container:last-child {
|
|
1239
|
+
margin-bottom: 0;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1242
|
+
.duffel-components .baggage-selection__control-price {
|
|
1243
|
+
margin-right: var(--SPACING-SM-3);
|
|
1244
|
+
line-height: var(--SPACING-MD-3);
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.duffel-components .baggage-selection__control {
|
|
1248
|
+
display: flex;
|
|
1249
|
+
align-items: center;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.duffel-components .baggage-selection__no-bag {
|
|
1253
|
+
display: flex;
|
|
1254
|
+
align-items: center;
|
|
1255
|
+
color: var(--GREY-900);
|
|
1256
|
+
}
|
|
1257
|
+
|
|
1258
|
+
.duffel-components .baggage-selection__no-bag-circle {
|
|
1259
|
+
background-color: rgb(var(--ACCENT));
|
|
1260
|
+
color: white;
|
|
1261
|
+
margin-right: var(--SPACING-SM-1);
|
|
1262
|
+
border-radius: 50%;
|
|
1263
|
+
width: var(--SPACING-LG-2);
|
|
1264
|
+
height: var(--SPACING-LG-2);
|
|
1265
|
+
display: flex;
|
|
1266
|
+
justify-content: center;
|
|
1267
|
+
align-items: center;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.duffel-components .additional-baggage-select {
|
|
1271
|
+
width: 100%;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.duffel-components .additional-baggage-select--container {
|
|
1275
|
+
padding: var(--SPACING-LG-1);
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.duffel-components .additional-baggage-select__title {
|
|
1279
|
+
font-size: var(--FONT-SIZES-C2);
|
|
1280
|
+
font-weight: 600;
|
|
1281
|
+
margin-top: var(--SPACING-XS-3);
|
|
1282
|
+
margin-bottom: var(--SPACING-SM-2);
|
|
1283
|
+
}
|
|
1284
|
+
|