@pmidc/upyog-css 1.2.36-dev.1.25 → 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 +293 -0
- package/dist/index.min.css +1 -1
- package/package.json +23 -22
- package/src/components/chb.scss +16 -0
- package/src/components/datatable.scss +6 -0
- package/src/components/selectdropdown.scss +10 -0
- package/src/modules/BPA/index.scss +16 -0
- package/src/modules/adv/index.scss +155 -5
- package/src/modules/rentAndLease/index.scss +50 -0
package/dist/index.css
CHANGED
|
@@ -3237,6 +3237,16 @@ body {
|
|
|
3237
3237
|
background-color: rgba(222, 224, 226, var(--bg-opacity));
|
|
3238
3238
|
}
|
|
3239
3239
|
|
|
3240
|
+
.dropdown-options-portal {
|
|
3241
|
+
position: fixed !important;
|
|
3242
|
+
max-height: 250px !important;
|
|
3243
|
+
overflow: auto;
|
|
3244
|
+
margin: 0 !important;
|
|
3245
|
+
background-color: #fff;
|
|
3246
|
+
-webkit-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);
|
|
3247
|
+
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);
|
|
3248
|
+
}
|
|
3249
|
+
|
|
3240
3250
|
.fsm-registry-dropdown {
|
|
3241
3251
|
margin-bottom: 0;
|
|
3242
3252
|
}
|
|
@@ -4037,6 +4047,15 @@ body {
|
|
|
4037
4047
|
justify-content: space-between;
|
|
4038
4048
|
}
|
|
4039
4049
|
|
|
4050
|
+
.data-table .row.document-row .value, .employee-data-table .row.document-row .value {
|
|
4051
|
+
display: -webkit-box;
|
|
4052
|
+
display: -ms-flexbox;
|
|
4053
|
+
display: flex;
|
|
4054
|
+
-webkit-box-align: center;
|
|
4055
|
+
-ms-flex-align: center;
|
|
4056
|
+
align-items: center;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4040
4059
|
.checkpoint-connect-wrap {
|
|
4041
4060
|
padding-bottom: 4px;
|
|
4042
4061
|
position: relative;
|
|
@@ -4206,6 +4225,19 @@ body {
|
|
|
4206
4225
|
text-decoration: underline;
|
|
4207
4226
|
}
|
|
4208
4227
|
|
|
4228
|
+
.chb-venue-code-dropdown {
|
|
4229
|
+
position: relative;
|
|
4230
|
+
overflow: visible;
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
.chb-venue-code-field, .chb-venue-details-form, .chb-venue-details-form .card {
|
|
4234
|
+
overflow: visible;
|
|
4235
|
+
}
|
|
4236
|
+
|
|
4237
|
+
.chb-venue-code-field {
|
|
4238
|
+
position: relative;
|
|
4239
|
+
}
|
|
4240
|
+
|
|
4209
4241
|
.chb-community-hall-modal {
|
|
4210
4242
|
position: relative;
|
|
4211
4243
|
width: 90%;
|
|
@@ -22649,6 +22681,60 @@ body {
|
|
|
22649
22681
|
margin-top: -18px;
|
|
22650
22682
|
}
|
|
22651
22683
|
|
|
22684
|
+
.ral-last-paid-upto-label {
|
|
22685
|
+
position: relative;
|
|
22686
|
+
margin: 18px 0 10px;
|
|
22687
|
+
padding: 12px 14px 12px 42px;
|
|
22688
|
+
color: #163d63;
|
|
22689
|
+
font-size: 13px;
|
|
22690
|
+
font-weight: 600;
|
|
22691
|
+
line-height: 1.45;
|
|
22692
|
+
background: -webkit-gradient(linear, left top, right top, from(#eaf4fb), to(#f7fbfe));
|
|
22693
|
+
background: linear-gradient(90deg, #eaf4fb, #f7fbfe);
|
|
22694
|
+
border: 1px solid #b7d8ed;
|
|
22695
|
+
border-left: 4px solid #fa001d;
|
|
22696
|
+
border-radius: 4px;
|
|
22697
|
+
-webkit-box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
22698
|
+
box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
22699
|
+
}
|
|
22700
|
+
|
|
22701
|
+
.ral-arrear-details-hidden, .ral-last-paid-upto-hidden {
|
|
22702
|
+
display: none;
|
|
22703
|
+
}
|
|
22704
|
+
|
|
22705
|
+
.ral-last-paid-upto-label:before {
|
|
22706
|
+
content: "i";
|
|
22707
|
+
position: absolute;
|
|
22708
|
+
top: 50%;
|
|
22709
|
+
left: 13px;
|
|
22710
|
+
display: -webkit-box;
|
|
22711
|
+
display: -ms-flexbox;
|
|
22712
|
+
display: flex;
|
|
22713
|
+
width: 18px;
|
|
22714
|
+
height: 18px;
|
|
22715
|
+
-webkit-box-align: center;
|
|
22716
|
+
-ms-flex-align: center;
|
|
22717
|
+
align-items: center;
|
|
22718
|
+
-webkit-box-pack: center;
|
|
22719
|
+
-ms-flex-pack: center;
|
|
22720
|
+
justify-content: center;
|
|
22721
|
+
color: #fff;
|
|
22722
|
+
font-family: Georgia, serif;
|
|
22723
|
+
font-size: 13px;
|
|
22724
|
+
font-weight: 700;
|
|
22725
|
+
line-height: 1;
|
|
22726
|
+
background: #0d6ea8;
|
|
22727
|
+
border-radius: 50%;
|
|
22728
|
+
-webkit-transform: translateY(-50%);
|
|
22729
|
+
transform: translateY(-50%);
|
|
22730
|
+
}
|
|
22731
|
+
|
|
22732
|
+
@media (max-width: 780px) {
|
|
22733
|
+
.ral-last-paid-upto-label {
|
|
22734
|
+
margin-top: 14px;
|
|
22735
|
+
padding: 10px 12px 10px 38px;
|
|
22736
|
+
}
|
|
22737
|
+
}
|
|
22652
22738
|
@media (min-width: 768px) {
|
|
22653
22739
|
.ral-error-label {
|
|
22654
22740
|
margin-left: 50%;
|
|
@@ -24519,6 +24605,100 @@ body {
|
|
|
24519
24605
|
justify-content: flex-end;
|
|
24520
24606
|
}
|
|
24521
24607
|
|
|
24608
|
+
.ads-citizen-consent__modal-overlay {
|
|
24609
|
+
position: fixed;
|
|
24610
|
+
top: 0;
|
|
24611
|
+
right: 0;
|
|
24612
|
+
bottom: 0;
|
|
24613
|
+
left: 0;
|
|
24614
|
+
z-index: 10000;
|
|
24615
|
+
display: -webkit-box;
|
|
24616
|
+
display: -ms-flexbox;
|
|
24617
|
+
display: flex;
|
|
24618
|
+
-webkit-box-align: center;
|
|
24619
|
+
-ms-flex-align: center;
|
|
24620
|
+
align-items: center;
|
|
24621
|
+
-webkit-box-pack: center;
|
|
24622
|
+
-ms-flex-pack: center;
|
|
24623
|
+
justify-content: center;
|
|
24624
|
+
padding: 24px;
|
|
24625
|
+
background: rgba(15, 36, 53, 0.58);
|
|
24626
|
+
}
|
|
24627
|
+
|
|
24628
|
+
.ads-citizen-consent__modal-content {
|
|
24629
|
+
width: min(860px, 100%);
|
|
24630
|
+
max-height: calc(100vh - 48px);
|
|
24631
|
+
padding: 28px;
|
|
24632
|
+
overflow-y: auto;
|
|
24633
|
+
background: #fff;
|
|
24634
|
+
border: 0;
|
|
24635
|
+
border-radius: 8px;
|
|
24636
|
+
-webkit-box-shadow: 0 18px 48px rgba(15, 36, 53, 0.3);
|
|
24637
|
+
box-shadow: 0 18px 48px rgba(15, 36, 53, 0.3);
|
|
24638
|
+
outline: none;
|
|
24639
|
+
}
|
|
24640
|
+
|
|
24641
|
+
.ads-consent-declaration {
|
|
24642
|
+
color: #1f2933;
|
|
24643
|
+
font-size: 14px;
|
|
24644
|
+
line-height: 1.6;
|
|
24645
|
+
}
|
|
24646
|
+
|
|
24647
|
+
.ads-consent-declaration__title {
|
|
24648
|
+
margin: 0 0 20px;
|
|
24649
|
+
color: #003c71;
|
|
24650
|
+
font-size: 20px;
|
|
24651
|
+
font-weight: 700;
|
|
24652
|
+
line-height: 1.3;
|
|
24653
|
+
text-align: center;
|
|
24654
|
+
}
|
|
24655
|
+
|
|
24656
|
+
.ads-consent-declaration__intro {
|
|
24657
|
+
margin-bottom: 16px;
|
|
24658
|
+
padding: 12px 14px;
|
|
24659
|
+
background: #f3f8fb;
|
|
24660
|
+
border-left: 4px solid #003c71;
|
|
24661
|
+
}
|
|
24662
|
+
|
|
24663
|
+
.ads-consent-declaration__paragraph {
|
|
24664
|
+
margin: 0;
|
|
24665
|
+
}
|
|
24666
|
+
|
|
24667
|
+
.ads-consent-declaration__item {
|
|
24668
|
+
display: -webkit-box;
|
|
24669
|
+
display: -ms-flexbox;
|
|
24670
|
+
display: flex;
|
|
24671
|
+
grid-gap: 10px;
|
|
24672
|
+
gap: 10px;
|
|
24673
|
+
margin: 10px 0;
|
|
24674
|
+
}
|
|
24675
|
+
|
|
24676
|
+
.ads-consent-declaration__item-number {
|
|
24677
|
+
-webkit-box-flex: 0;
|
|
24678
|
+
-ms-flex: 0 0 22px;
|
|
24679
|
+
flex: 0 0 22px;
|
|
24680
|
+
color: #003c71;
|
|
24681
|
+
font-weight: 700;
|
|
24682
|
+
}
|
|
24683
|
+
|
|
24684
|
+
@media (max-width: 780px) {
|
|
24685
|
+
.ads-citizen-consent__modal-overlay {
|
|
24686
|
+
-webkit-box-align: end;
|
|
24687
|
+
-ms-flex-align: end;
|
|
24688
|
+
align-items: flex-end;
|
|
24689
|
+
padding: 12px;
|
|
24690
|
+
}
|
|
24691
|
+
|
|
24692
|
+
.ads-citizen-consent__modal-content {
|
|
24693
|
+
max-height: calc(100vh - 24px);
|
|
24694
|
+
padding: 20px 16px;
|
|
24695
|
+
border-radius: 8px 8px 0 0;
|
|
24696
|
+
}
|
|
24697
|
+
|
|
24698
|
+
.ads-consent-declaration__title {
|
|
24699
|
+
font-size: 17px;
|
|
24700
|
+
}
|
|
24701
|
+
}
|
|
24522
24702
|
.ads-components-existing-booking-details--style-1 {
|
|
24523
24703
|
margin-left: 16px;
|
|
24524
24704
|
margin-top: 16px;
|
|
@@ -25190,6 +25370,102 @@ body {
|
|
|
25190
25370
|
margin-left: 10px;
|
|
25191
25371
|
}
|
|
25192
25372
|
|
|
25373
|
+
.employeeCard.filter.inboxLinks.ads-inbox-links {
|
|
25374
|
+
height: auto;
|
|
25375
|
+
max-height: none;
|
|
25376
|
+
min-height: 0;
|
|
25377
|
+
overflow: visible;
|
|
25378
|
+
padding: 12px 18px !important;
|
|
25379
|
+
}
|
|
25380
|
+
|
|
25381
|
+
.ads-inbox-links__container {
|
|
25382
|
+
-ms-flex-align: center;
|
|
25383
|
+
}
|
|
25384
|
+
|
|
25385
|
+
.ads-inbox-links__container, .ads-inbox-links__header {
|
|
25386
|
+
display: -webkit-box;
|
|
25387
|
+
display: -ms-flexbox;
|
|
25388
|
+
display: flex;
|
|
25389
|
+
width: 100%;
|
|
25390
|
+
min-width: 0;
|
|
25391
|
+
-webkit-box-align: center;
|
|
25392
|
+
-ms-flex-align: center;
|
|
25393
|
+
align-items: center;
|
|
25394
|
+
}
|
|
25395
|
+
|
|
25396
|
+
.ads-inbox-links__header {
|
|
25397
|
+
-webkit-box-flex: 1;
|
|
25398
|
+
-ms-flex: 1 1 auto;
|
|
25399
|
+
flex: 1 1 auto;
|
|
25400
|
+
max-width: 100%;
|
|
25401
|
+
-ms-flex-align: center;
|
|
25402
|
+
}
|
|
25403
|
+
|
|
25404
|
+
.ads-inbox-links__logo {
|
|
25405
|
+
display: -webkit-inline-box;
|
|
25406
|
+
display: -ms-inline-flexbox;
|
|
25407
|
+
display: inline-flex;
|
|
25408
|
+
-webkit-box-flex: 0;
|
|
25409
|
+
-ms-flex: 0 0 56px;
|
|
25410
|
+
flex: 0 0 56px;
|
|
25411
|
+
width: 56px;
|
|
25412
|
+
height: 56px;
|
|
25413
|
+
-webkit-box-align: center;
|
|
25414
|
+
-ms-flex-align: center;
|
|
25415
|
+
align-items: center;
|
|
25416
|
+
-webkit-box-pack: center;
|
|
25417
|
+
-ms-flex-pack: center;
|
|
25418
|
+
justify-content: center;
|
|
25419
|
+
}
|
|
25420
|
+
|
|
25421
|
+
.ads-inbox-links__logo svg {
|
|
25422
|
+
width: 32px;
|
|
25423
|
+
height: 32px;
|
|
25424
|
+
}
|
|
25425
|
+
|
|
25426
|
+
.ads-inbox-links__logo svg path {
|
|
25427
|
+
fill: #1359c8;
|
|
25428
|
+
}
|
|
25429
|
+
|
|
25430
|
+
.ads-inbox-links__title {
|
|
25431
|
+
display: block;
|
|
25432
|
+
-webkit-box-flex: 1;
|
|
25433
|
+
-ms-flex: 1 1 auto;
|
|
25434
|
+
flex: 1 1 auto;
|
|
25435
|
+
min-width: 0;
|
|
25436
|
+
padding-left: 16px;
|
|
25437
|
+
word-wrap: anywhere;
|
|
25438
|
+
font-size: 20px;
|
|
25439
|
+
font-weight: 700;
|
|
25440
|
+
line-height: 28px;
|
|
25441
|
+
white-space: normal;
|
|
25442
|
+
}
|
|
25443
|
+
|
|
25444
|
+
.ads-inbox-links__body {
|
|
25445
|
+
display: -webkit-box;
|
|
25446
|
+
display: -ms-flexbox;
|
|
25447
|
+
display: flex;
|
|
25448
|
+
-webkit-box-orient: vertical;
|
|
25449
|
+
-webkit-box-direction: normal;
|
|
25450
|
+
-ms-flex-direction: column;
|
|
25451
|
+
flex-direction: column;
|
|
25452
|
+
}
|
|
25453
|
+
|
|
25454
|
+
.ads-inbox-links__body--empty {
|
|
25455
|
+
display: none;
|
|
25456
|
+
}
|
|
25457
|
+
|
|
25458
|
+
.ads-inbox-links__link {
|
|
25459
|
+
padding: 8px;
|
|
25460
|
+
color: #2947a3;
|
|
25461
|
+
}
|
|
25462
|
+
|
|
25463
|
+
@media (max-width: 768px) {
|
|
25464
|
+
.ads-inbox-links__title {
|
|
25465
|
+
font-size: 18px;
|
|
25466
|
+
line-height: 24px;
|
|
25467
|
+
}
|
|
25468
|
+
}
|
|
25193
25469
|
.noc-loader {
|
|
25194
25470
|
position: relative;
|
|
25195
25471
|
display: -webkit-box;
|
|
@@ -28251,9 +28527,26 @@ body {
|
|
|
28251
28527
|
}
|
|
28252
28528
|
|
|
28253
28529
|
.obps-components-noc-site-photographs-new--style-1 {
|
|
28530
|
+
-webkit-box-flex: 1;
|
|
28531
|
+
-ms-flex: 1 1 210px;
|
|
28532
|
+
flex: 1 1 210px;
|
|
28533
|
+
max-width: calc(25% - 15px);
|
|
28534
|
+
min-width: 0;
|
|
28254
28535
|
padding: 20px 0;
|
|
28255
28536
|
}
|
|
28256
28537
|
|
|
28538
|
+
@media (max-width: 1100px) {
|
|
28539
|
+
.obps-components-noc-site-photographs-new--style-1 {
|
|
28540
|
+
max-width: calc(33.333% - 14px);
|
|
28541
|
+
}
|
|
28542
|
+
}
|
|
28543
|
+
@media (max-width: 768px) {
|
|
28544
|
+
.obps-components-noc-site-photographs-new--style-1 {
|
|
28545
|
+
-ms-flex-preferred-size: 100%;
|
|
28546
|
+
flex-basis: 100%;
|
|
28547
|
+
max-width: 100%;
|
|
28548
|
+
}
|
|
28549
|
+
}
|
|
28257
28550
|
.obps-components-noc-site-photographs-new--style-2 {
|
|
28258
28551
|
display: -webkit-box;
|
|
28259
28552
|
display: -ms-flexbox;
|