mozrest-sdk-react-dev 0.3.49 → 0.3.51
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/mozrest-sdk.es.js +3543 -2964
- package/package.json +1 -1
- package/style.css +143 -1
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -1532,7 +1532,7 @@
|
|
|
1532
1532
|
width: 9px;
|
|
1533
1533
|
}
|
|
1534
1534
|
/* sr-only utility class for accessibility */
|
|
1535
|
-
.
|
|
1535
|
+
.react-datepicker__sr-only {
|
|
1536
1536
|
position: absolute;
|
|
1537
1537
|
width: 1px;
|
|
1538
1538
|
height: 1px;
|
|
@@ -32636,4 +32636,146 @@ hr {
|
|
|
32636
32636
|
|
|
32637
32637
|
._navitem--active_x3c75_22._navitem--simple_x3c75_48 {
|
|
32638
32638
|
background-color: var(--moz-cta-content-sec-bg);
|
|
32639
|
+
}._badge_160ys_1 {
|
|
32640
|
+
display: inline-flex;
|
|
32641
|
+
align-items: center;
|
|
32642
|
+
justify-content: center;
|
|
32643
|
+
padding: 0.25rem 0.5rem;
|
|
32644
|
+
border-radius: 0.25rem;
|
|
32645
|
+
font-size: 0.75rem;
|
|
32646
|
+
font-weight: 600;
|
|
32647
|
+
line-height: 1;
|
|
32648
|
+
text-transform: uppercase;
|
|
32649
|
+
white-space: nowrap;
|
|
32650
|
+
}
|
|
32651
|
+
._badge--success_160ys_13 {
|
|
32652
|
+
color: rgb(25, 135, 84);
|
|
32653
|
+
background: rgba(25, 135, 84, 0.12);
|
|
32654
|
+
}
|
|
32655
|
+
._badge--warning_160ys_17 {
|
|
32656
|
+
color: #ff9f43;
|
|
32657
|
+
background: rgba(255, 159, 67, 0.12);
|
|
32658
|
+
}
|
|
32659
|
+
._badge--error_160ys_21 {
|
|
32660
|
+
color: rgb(220, 53, 69);
|
|
32661
|
+
background: rgba(220, 53, 69, 0.12);
|
|
32662
|
+
}
|
|
32663
|
+
._badge--info_160ys_25 {
|
|
32664
|
+
color: #00cfe8;
|
|
32665
|
+
background: rgba(0, 207, 232, 0.12);
|
|
32666
|
+
}
|
|
32667
|
+
._badge--primary_160ys_29 {
|
|
32668
|
+
color: var(--moz-cta-primary);
|
|
32669
|
+
background: var(--moz-bg-active);
|
|
32670
|
+
}
|
|
32671
|
+
._badge--neutral_160ys_33 {
|
|
32672
|
+
color: var(--moz-text-secondary);
|
|
32673
|
+
background: var(--moz-bg-gray-light);
|
|
32674
|
+
}._filtersGrid_qqmg5_1 {
|
|
32675
|
+
display: flex;
|
|
32676
|
+
flex-wrap: wrap;
|
|
32677
|
+
gap: 0.75rem;
|
|
32678
|
+
}
|
|
32679
|
+
._filtersGrid_qqmg5_1 > div {
|
|
32680
|
+
flex: 1 1 200px;
|
|
32681
|
+
max-width: 300px;
|
|
32682
|
+
min-width: 160px;
|
|
32683
|
+
}
|
|
32684
|
+
@media (max-width: 768px) {
|
|
32685
|
+
._filtersGrid_qqmg5_1 > div {
|
|
32686
|
+
flex: 1 1 100%;
|
|
32687
|
+
max-width: 100%;
|
|
32688
|
+
}
|
|
32689
|
+
}
|
|
32690
|
+
|
|
32691
|
+
._orderInfo_qqmg5_18 {
|
|
32692
|
+
display: grid;
|
|
32693
|
+
grid-template-columns: repeat(2, 1fr);
|
|
32694
|
+
gap: 1rem;
|
|
32695
|
+
margin-bottom: 1.25rem;
|
|
32696
|
+
}
|
|
32697
|
+
@media (max-width: 768px) {
|
|
32698
|
+
._orderInfo_qqmg5_18 {
|
|
32699
|
+
grid-template-columns: 1fr;
|
|
32700
|
+
}
|
|
32701
|
+
}
|
|
32702
|
+
._orderInfo_qqmg5_18 div strong {
|
|
32703
|
+
margin-right: 0.5rem;
|
|
32704
|
+
}
|
|
32705
|
+
|
|
32706
|
+
._ticketContainer_qqmg5_33 {
|
|
32707
|
+
background-color: var(--moz-cta-content-sec-bg);
|
|
32708
|
+
padding: 1.25rem;
|
|
32709
|
+
border-radius: 0.5rem;
|
|
32710
|
+
font-family: "Courier New", monospace;
|
|
32711
|
+
border: 1px solid var(--moz-border);
|
|
32712
|
+
}
|
|
32713
|
+
|
|
32714
|
+
._ticketHeader_qqmg5_41 {
|
|
32715
|
+
border-bottom: 2px dashed var(--moz-text-title);
|
|
32716
|
+
padding-bottom: 0.75rem;
|
|
32717
|
+
margin-bottom: 1.25rem;
|
|
32718
|
+
text-align: center;
|
|
32719
|
+
font-weight: bold;
|
|
32720
|
+
font-size: 0.875rem;
|
|
32721
|
+
letter-spacing: 1px;
|
|
32722
|
+
}
|
|
32723
|
+
|
|
32724
|
+
._ticketItems_qqmg5_51 {
|
|
32725
|
+
margin-bottom: 1.25rem;
|
|
32726
|
+
}
|
|
32727
|
+
|
|
32728
|
+
._ticketItem_qqmg5_51 {
|
|
32729
|
+
margin-bottom: 0.75rem;
|
|
32730
|
+
}
|
|
32731
|
+
|
|
32732
|
+
._itemRow_qqmg5_59 {
|
|
32733
|
+
display: flex;
|
|
32734
|
+
justify-content: space-between;
|
|
32735
|
+
font-size: 0.8125rem;
|
|
32736
|
+
line-height: 1.4;
|
|
32737
|
+
}
|
|
32738
|
+
|
|
32739
|
+
._itemName_qqmg5_66 {
|
|
32740
|
+
flex: 1;
|
|
32741
|
+
font-weight: bold;
|
|
32742
|
+
}
|
|
32743
|
+
|
|
32744
|
+
._itemTotal_qqmg5_71 {
|
|
32745
|
+
min-width: 80px;
|
|
32746
|
+
text-align: right;
|
|
32747
|
+
font-weight: bold;
|
|
32748
|
+
}
|
|
32749
|
+
|
|
32750
|
+
._itemDetails_qqmg5_77 {
|
|
32751
|
+
display: flex;
|
|
32752
|
+
justify-content: space-between;
|
|
32753
|
+
font-size: 0.75rem;
|
|
32754
|
+
color: var(--moz-text-secondary);
|
|
32755
|
+
margin-top: 0.25rem;
|
|
32756
|
+
}
|
|
32757
|
+
|
|
32758
|
+
._ticketFooter_qqmg5_85 {
|
|
32759
|
+
border-top: 2px dashed var(--moz-text-title);
|
|
32760
|
+
padding-top: 1.25rem;
|
|
32761
|
+
}
|
|
32762
|
+
|
|
32763
|
+
._summaryRow_qqmg5_90 {
|
|
32764
|
+
display: flex;
|
|
32765
|
+
justify-content: space-between;
|
|
32766
|
+
margin-bottom: 0.5rem;
|
|
32767
|
+
font-size: 0.8125rem;
|
|
32768
|
+
}
|
|
32769
|
+
|
|
32770
|
+
._totalDivider_qqmg5_97 {
|
|
32771
|
+
border-top: 1px solid var(--moz-text-title);
|
|
32772
|
+
margin-top: 0.75rem;
|
|
32773
|
+
padding-top: 0.75rem;
|
|
32774
|
+
}
|
|
32775
|
+
|
|
32776
|
+
._totalRow_qqmg5_103 {
|
|
32777
|
+
display: flex;
|
|
32778
|
+
justify-content: space-between;
|
|
32779
|
+
font-size: 1rem;
|
|
32780
|
+
font-weight: bold;
|
|
32639
32781
|
}
|