@pmidc/upyog-css 1.2.36-dev.1.26 → 1.2.36-dev.1.27
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/dist/index.css +136 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/chb.scss +16 -0
- package/src/components/selectdropdown.scss +10 -0
- package/src/modules/BPA/index.scss +16 -0
- package/src/modules/adv/index.scss +77 -5
package/package.json
CHANGED
package/src/components/chb.scss
CHANGED
|
@@ -58,6 +58,22 @@
|
|
|
58
58
|
text-decoration: underline;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
/* Keep Venue Code options below the select instead of covering the selected value. */
|
|
62
|
+
.chb-venue-code-dropdown {
|
|
63
|
+
position: relative;
|
|
64
|
+
overflow: visible;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.chb-venue-details-form,
|
|
68
|
+
.chb-venue-details-form .card,
|
|
69
|
+
.chb-venue-code-field {
|
|
70
|
+
overflow: visible;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.chb-venue-code-field {
|
|
74
|
+
position: relative;
|
|
75
|
+
}
|
|
76
|
+
|
|
61
77
|
.chb-community-hall-modal {
|
|
62
78
|
position: relative;
|
|
63
79
|
width: 90%;
|
|
@@ -137,6 +137,16 @@
|
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
|
+
|
|
141
|
+
/* Used when a dropdown must escape a scrollable or clipped form container. */
|
|
142
|
+
.dropdown-options-portal {
|
|
143
|
+
position: fixed !important;
|
|
144
|
+
max-height: 250px !important;
|
|
145
|
+
overflow: auto;
|
|
146
|
+
margin: 0 !important;
|
|
147
|
+
background-color: #fff;
|
|
148
|
+
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
149
|
+
}
|
|
140
150
|
.fsm-registry-dropdown {
|
|
141
151
|
.select {
|
|
142
152
|
@apply flex;
|
|
@@ -489,9 +489,25 @@
|
|
|
489
489
|
}
|
|
490
490
|
|
|
491
491
|
.obps-components-noc-site-photographs-new--style-1 {
|
|
492
|
+
flex: 1 1 210px;
|
|
493
|
+
max-width: calc(25% - 15px);
|
|
494
|
+
min-width: 0;
|
|
492
495
|
padding: 20px 0px;
|
|
493
496
|
}
|
|
494
497
|
|
|
498
|
+
@media (max-width: 1100px) {
|
|
499
|
+
.obps-components-noc-site-photographs-new--style-1 {
|
|
500
|
+
max-width: calc(33.333% - 14px);
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
@media (max-width: 768px) {
|
|
505
|
+
.obps-components-noc-site-photographs-new--style-1 {
|
|
506
|
+
flex-basis: 100%;
|
|
507
|
+
max-width: 100%;
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
|
|
495
511
|
.obps-components-noc-site-photographs-new--style-2 {
|
|
496
512
|
display: flex;
|
|
497
513
|
justify-content: space-between;
|
|
@@ -642,7 +642,6 @@
|
|
|
642
642
|
justify-content: flex-end;
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
-
|
|
646
645
|
/* ADS inline style extraction */
|
|
647
646
|
.ads-components-adscancel-booking--style-1 {
|
|
648
647
|
width: 80%;
|
|
@@ -734,7 +733,6 @@
|
|
|
734
733
|
}
|
|
735
734
|
|
|
736
735
|
.ads-components-adscart-and-cancellation-policy-details--style-14 {
|
|
737
|
-
|
|
738
736
|
}
|
|
739
737
|
|
|
740
738
|
.ads-components-adscart-and-cancellation-policy-details--style-15 {
|
|
@@ -748,7 +746,6 @@
|
|
|
748
746
|
}
|
|
749
747
|
|
|
750
748
|
.ads-components-adscart-and-cancellation-policy-details--style-17 {
|
|
751
|
-
|
|
752
749
|
}
|
|
753
750
|
|
|
754
751
|
.ads-components-adscart-and-cancellation-policy-details--style-18 {
|
|
@@ -797,7 +794,7 @@
|
|
|
797
794
|
padding: 15px 20px;
|
|
798
795
|
font-size: 18px;
|
|
799
796
|
font-weight: bold;
|
|
800
|
-
box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
|
|
797
|
+
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
801
798
|
z-index: 10;
|
|
802
799
|
}
|
|
803
800
|
|
|
@@ -1555,7 +1552,7 @@
|
|
|
1555
1552
|
.ads-page-components-adsearch--style-6 {
|
|
1556
1553
|
position: absolute;
|
|
1557
1554
|
right: 83px;
|
|
1558
|
-
background-color: #
|
|
1555
|
+
background-color: #ffffff;
|
|
1559
1556
|
color: #008000;
|
|
1560
1557
|
padding: 4px;
|
|
1561
1558
|
border-radius: 30px;
|
|
@@ -1733,3 +1730,78 @@
|
|
|
1733
1730
|
.ads-pages-employee-index--style-1 {
|
|
1734
1731
|
margin-left: 10px;
|
|
1735
1732
|
}
|
|
1733
|
+
/* ADS has no quick links below the inbox heading, so keep its service banner compact. */
|
|
1734
|
+
.employeeCard.filter.inboxLinks.ads-inbox-links {
|
|
1735
|
+
height: auto;
|
|
1736
|
+
max-height: none;
|
|
1737
|
+
min-height: 0;
|
|
1738
|
+
overflow: visible;
|
|
1739
|
+
padding: 12px 18px !important;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.ads-inbox-links__container {
|
|
1743
|
+
display: flex;
|
|
1744
|
+
width: 100%;
|
|
1745
|
+
min-width: 0;
|
|
1746
|
+
align-items: center;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
.ads-inbox-links__header {
|
|
1750
|
+
display: flex;
|
|
1751
|
+
flex: 1 1 auto;
|
|
1752
|
+
width: 100%;
|
|
1753
|
+
max-width: 100%;
|
|
1754
|
+
min-width: 0;
|
|
1755
|
+
align-items: center;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
.ads-inbox-links__logo {
|
|
1759
|
+
display: inline-flex;
|
|
1760
|
+
flex: 0 0 56px;
|
|
1761
|
+
width: 56px;
|
|
1762
|
+
height: 56px;
|
|
1763
|
+
align-items: center;
|
|
1764
|
+
justify-content: center;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.ads-inbox-links__logo svg {
|
|
1768
|
+
width: 32px;
|
|
1769
|
+
height: 32px;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
.ads-inbox-links__logo svg path {
|
|
1773
|
+
fill: #1359c8;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.ads-inbox-links__title {
|
|
1777
|
+
display: block;
|
|
1778
|
+
flex: 1 1 auto;
|
|
1779
|
+
min-width: 0;
|
|
1780
|
+
padding-left: 16px;
|
|
1781
|
+
overflow-wrap: anywhere;
|
|
1782
|
+
font-size: 20px;
|
|
1783
|
+
font-weight: 700;
|
|
1784
|
+
line-height: 28px;
|
|
1785
|
+
white-space: normal;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.ads-inbox-links__body {
|
|
1789
|
+
display: flex;
|
|
1790
|
+
flex-direction: column;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.ads-inbox-links__body--empty {
|
|
1794
|
+
display: none;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.ads-inbox-links__link {
|
|
1798
|
+
padding: 8px;
|
|
1799
|
+
color: #2947a3;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
@media (max-width: 768px) {
|
|
1803
|
+
.ads-inbox-links__title {
|
|
1804
|
+
font-size: 18px;
|
|
1805
|
+
line-height: 24px;
|
|
1806
|
+
}
|
|
1807
|
+
}
|