@pmidc/upyog-css 1.2.36-dev.1.25 → 1.2.36-dev.1.26
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 +157 -0
- package/dist/index.min.css +1 -1
- package/package.json +23 -22
- package/src/components/datatable.scss +6 -0
- package/src/modules/adv/index.scss +78 -0
- package/src/modules/rentAndLease/index.scss +50 -0
package/dist/index.css
CHANGED
|
@@ -4037,6 +4037,15 @@ body {
|
|
|
4037
4037
|
justify-content: space-between;
|
|
4038
4038
|
}
|
|
4039
4039
|
|
|
4040
|
+
.data-table .row.document-row .value, .employee-data-table .row.document-row .value {
|
|
4041
|
+
display: -webkit-box;
|
|
4042
|
+
display: -ms-flexbox;
|
|
4043
|
+
display: flex;
|
|
4044
|
+
-webkit-box-align: center;
|
|
4045
|
+
-ms-flex-align: center;
|
|
4046
|
+
align-items: center;
|
|
4047
|
+
}
|
|
4048
|
+
|
|
4040
4049
|
.checkpoint-connect-wrap {
|
|
4041
4050
|
padding-bottom: 4px;
|
|
4042
4051
|
position: relative;
|
|
@@ -22649,6 +22658,60 @@ body {
|
|
|
22649
22658
|
margin-top: -18px;
|
|
22650
22659
|
}
|
|
22651
22660
|
|
|
22661
|
+
.ral-last-paid-upto-label {
|
|
22662
|
+
position: relative;
|
|
22663
|
+
margin: 18px 0 10px;
|
|
22664
|
+
padding: 12px 14px 12px 42px;
|
|
22665
|
+
color: #163d63;
|
|
22666
|
+
font-size: 13px;
|
|
22667
|
+
font-weight: 600;
|
|
22668
|
+
line-height: 1.45;
|
|
22669
|
+
background: -webkit-gradient(linear, left top, right top, from(#eaf4fb), to(#f7fbfe));
|
|
22670
|
+
background: linear-gradient(90deg, #eaf4fb, #f7fbfe);
|
|
22671
|
+
border: 1px solid #b7d8ed;
|
|
22672
|
+
border-left: 4px solid #fa001d;
|
|
22673
|
+
border-radius: 4px;
|
|
22674
|
+
-webkit-box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
22675
|
+
box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
22676
|
+
}
|
|
22677
|
+
|
|
22678
|
+
.ral-arrear-details-hidden, .ral-last-paid-upto-hidden {
|
|
22679
|
+
display: none;
|
|
22680
|
+
}
|
|
22681
|
+
|
|
22682
|
+
.ral-last-paid-upto-label:before {
|
|
22683
|
+
content: "i";
|
|
22684
|
+
position: absolute;
|
|
22685
|
+
top: 50%;
|
|
22686
|
+
left: 13px;
|
|
22687
|
+
display: -webkit-box;
|
|
22688
|
+
display: -ms-flexbox;
|
|
22689
|
+
display: flex;
|
|
22690
|
+
width: 18px;
|
|
22691
|
+
height: 18px;
|
|
22692
|
+
-webkit-box-align: center;
|
|
22693
|
+
-ms-flex-align: center;
|
|
22694
|
+
align-items: center;
|
|
22695
|
+
-webkit-box-pack: center;
|
|
22696
|
+
-ms-flex-pack: center;
|
|
22697
|
+
justify-content: center;
|
|
22698
|
+
color: #fff;
|
|
22699
|
+
font-family: Georgia, serif;
|
|
22700
|
+
font-size: 13px;
|
|
22701
|
+
font-weight: 700;
|
|
22702
|
+
line-height: 1;
|
|
22703
|
+
background: #0d6ea8;
|
|
22704
|
+
border-radius: 50%;
|
|
22705
|
+
-webkit-transform: translateY(-50%);
|
|
22706
|
+
transform: translateY(-50%);
|
|
22707
|
+
}
|
|
22708
|
+
|
|
22709
|
+
@media (max-width: 780px) {
|
|
22710
|
+
.ral-last-paid-upto-label {
|
|
22711
|
+
margin-top: 14px;
|
|
22712
|
+
padding: 10px 12px 10px 38px;
|
|
22713
|
+
}
|
|
22714
|
+
}
|
|
22652
22715
|
@media (min-width: 768px) {
|
|
22653
22716
|
.ral-error-label {
|
|
22654
22717
|
margin-left: 50%;
|
|
@@ -24519,6 +24582,100 @@ body {
|
|
|
24519
24582
|
justify-content: flex-end;
|
|
24520
24583
|
}
|
|
24521
24584
|
|
|
24585
|
+
.ads-citizen-consent__modal-overlay {
|
|
24586
|
+
position: fixed;
|
|
24587
|
+
top: 0;
|
|
24588
|
+
right: 0;
|
|
24589
|
+
bottom: 0;
|
|
24590
|
+
left: 0;
|
|
24591
|
+
z-index: 10000;
|
|
24592
|
+
display: -webkit-box;
|
|
24593
|
+
display: -ms-flexbox;
|
|
24594
|
+
display: flex;
|
|
24595
|
+
-webkit-box-align: center;
|
|
24596
|
+
-ms-flex-align: center;
|
|
24597
|
+
align-items: center;
|
|
24598
|
+
-webkit-box-pack: center;
|
|
24599
|
+
-ms-flex-pack: center;
|
|
24600
|
+
justify-content: center;
|
|
24601
|
+
padding: 24px;
|
|
24602
|
+
background: rgba(15, 36, 53, 0.58);
|
|
24603
|
+
}
|
|
24604
|
+
|
|
24605
|
+
.ads-citizen-consent__modal-content {
|
|
24606
|
+
width: min(860px, 100%);
|
|
24607
|
+
max-height: calc(100vh - 48px);
|
|
24608
|
+
padding: 28px;
|
|
24609
|
+
overflow-y: auto;
|
|
24610
|
+
background: #fff;
|
|
24611
|
+
border: 0;
|
|
24612
|
+
border-radius: 8px;
|
|
24613
|
+
-webkit-box-shadow: 0 18px 48px rgba(15, 36, 53, 0.3);
|
|
24614
|
+
box-shadow: 0 18px 48px rgba(15, 36, 53, 0.3);
|
|
24615
|
+
outline: none;
|
|
24616
|
+
}
|
|
24617
|
+
|
|
24618
|
+
.ads-consent-declaration {
|
|
24619
|
+
color: #1f2933;
|
|
24620
|
+
font-size: 14px;
|
|
24621
|
+
line-height: 1.6;
|
|
24622
|
+
}
|
|
24623
|
+
|
|
24624
|
+
.ads-consent-declaration__title {
|
|
24625
|
+
margin: 0 0 20px;
|
|
24626
|
+
color: #003c71;
|
|
24627
|
+
font-size: 20px;
|
|
24628
|
+
font-weight: 700;
|
|
24629
|
+
line-height: 1.3;
|
|
24630
|
+
text-align: center;
|
|
24631
|
+
}
|
|
24632
|
+
|
|
24633
|
+
.ads-consent-declaration__intro {
|
|
24634
|
+
margin-bottom: 16px;
|
|
24635
|
+
padding: 12px 14px;
|
|
24636
|
+
background: #f3f8fb;
|
|
24637
|
+
border-left: 4px solid #003c71;
|
|
24638
|
+
}
|
|
24639
|
+
|
|
24640
|
+
.ads-consent-declaration__paragraph {
|
|
24641
|
+
margin: 0;
|
|
24642
|
+
}
|
|
24643
|
+
|
|
24644
|
+
.ads-consent-declaration__item {
|
|
24645
|
+
display: -webkit-box;
|
|
24646
|
+
display: -ms-flexbox;
|
|
24647
|
+
display: flex;
|
|
24648
|
+
grid-gap: 10px;
|
|
24649
|
+
gap: 10px;
|
|
24650
|
+
margin: 10px 0;
|
|
24651
|
+
}
|
|
24652
|
+
|
|
24653
|
+
.ads-consent-declaration__item-number {
|
|
24654
|
+
-webkit-box-flex: 0;
|
|
24655
|
+
-ms-flex: 0 0 22px;
|
|
24656
|
+
flex: 0 0 22px;
|
|
24657
|
+
color: #003c71;
|
|
24658
|
+
font-weight: 700;
|
|
24659
|
+
}
|
|
24660
|
+
|
|
24661
|
+
@media (max-width: 780px) {
|
|
24662
|
+
.ads-citizen-consent__modal-overlay {
|
|
24663
|
+
-webkit-box-align: end;
|
|
24664
|
+
-ms-flex-align: end;
|
|
24665
|
+
align-items: flex-end;
|
|
24666
|
+
padding: 12px;
|
|
24667
|
+
}
|
|
24668
|
+
|
|
24669
|
+
.ads-citizen-consent__modal-content {
|
|
24670
|
+
max-height: calc(100vh - 24px);
|
|
24671
|
+
padding: 20px 16px;
|
|
24672
|
+
border-radius: 8px 8px 0 0;
|
|
24673
|
+
}
|
|
24674
|
+
|
|
24675
|
+
.ads-consent-declaration__title {
|
|
24676
|
+
font-size: 17px;
|
|
24677
|
+
}
|
|
24678
|
+
}
|
|
24522
24679
|
.ads-components-existing-booking-details--style-1 {
|
|
24523
24680
|
margin-left: 16px;
|
|
24524
24681
|
margin-top: 16px;
|