@pmidc/upyog-css 1.2.36-dev.1.29 → 1.2.36-dev.1.30
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 +202 -14259
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/modules/rentAndLease/index.scss +294 -0
package/package.json
CHANGED
|
@@ -283,6 +283,186 @@
|
|
|
283
283
|
margin-top: 30px;
|
|
284
284
|
}
|
|
285
285
|
|
|
286
|
+
.ral-payment-history {
|
|
287
|
+
margin-top: 24px;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.ral-payment-history__header {
|
|
291
|
+
display: flex;
|
|
292
|
+
align-items: flex-start;
|
|
293
|
+
justify-content: space-between;
|
|
294
|
+
gap: 24px;
|
|
295
|
+
margin-bottom: 20px;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.ral-payment-history__consumer {
|
|
299
|
+
margin: 4px 0 0;
|
|
300
|
+
color: #5b6b82;
|
|
301
|
+
font-size: 14px;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.ral-payment-history__totals {
|
|
305
|
+
display: flex;
|
|
306
|
+
gap: 12px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.ral-payment-history__totals > div {
|
|
310
|
+
min-width: 126px;
|
|
311
|
+
padding: 10px 14px;
|
|
312
|
+
border: 1px solid #dbe7f5;
|
|
313
|
+
border-radius: 8px;
|
|
314
|
+
background: #f7fbff;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.ral-payment-history__totals span,
|
|
318
|
+
.ral-payment-history__totals strong {
|
|
319
|
+
display: block;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.ral-payment-history__totals span {
|
|
323
|
+
color: #5b6b82;
|
|
324
|
+
font-size: 12px;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.ral-payment-history__totals strong {
|
|
328
|
+
margin-top: 4px;
|
|
329
|
+
color: #173f73;
|
|
330
|
+
font-size: 16px;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.ral-payment-history__table-wrap {
|
|
334
|
+
overflow-x: auto;
|
|
335
|
+
border: 1px solid #dbe7f5;
|
|
336
|
+
border-radius: 8px;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.ral-payment-history__table {
|
|
340
|
+
width: 100%;
|
|
341
|
+
min-width: 780px;
|
|
342
|
+
border-collapse: collapse;
|
|
343
|
+
color: #23354d;
|
|
344
|
+
font-size: 14px;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.ral-payment-history__table th,
|
|
348
|
+
.ral-payment-history__table td {
|
|
349
|
+
padding: 14px 16px;
|
|
350
|
+
border-bottom: 1px solid #e4edf7;
|
|
351
|
+
text-align: left;
|
|
352
|
+
vertical-align: middle;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.ral-payment-history__table th {
|
|
356
|
+
color: #5b6b82;
|
|
357
|
+
background: #f7faff;
|
|
358
|
+
font-size: 12px;
|
|
359
|
+
font-weight: 700;
|
|
360
|
+
letter-spacing: 0.03em;
|
|
361
|
+
text-transform: uppercase;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.ral-payment-history__table tbody tr:last-child td {
|
|
365
|
+
border-bottom: 0;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.ral-payment-history__month-button {
|
|
369
|
+
display: inline-flex;
|
|
370
|
+
align-items: center;
|
|
371
|
+
gap: 6px;
|
|
372
|
+
padding: 0;
|
|
373
|
+
border: 0;
|
|
374
|
+
background: transparent;
|
|
375
|
+
color: #0b63ce;
|
|
376
|
+
font: inherit;
|
|
377
|
+
font-weight: 700;
|
|
378
|
+
cursor: pointer;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.ral-payment-history__month-button:disabled {
|
|
382
|
+
color: #23354d;
|
|
383
|
+
cursor: default;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.ral-payment-history__month-button span {
|
|
387
|
+
width: 10px;
|
|
388
|
+
color: #287e37;
|
|
389
|
+
font-size: 18px;
|
|
390
|
+
line-height: 1;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.ral-payment-history__status {
|
|
394
|
+
display: inline-block;
|
|
395
|
+
padding: 5px 9px;
|
|
396
|
+
border-radius: 999px;
|
|
397
|
+
font-size: 12px;
|
|
398
|
+
font-weight: 700;
|
|
399
|
+
white-space: nowrap;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.ral-payment-history__status--paid {
|
|
403
|
+
color: #16733a;
|
|
404
|
+
background: #eaf8ee;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.ral-payment-history__status--partially_paid {
|
|
408
|
+
color: #9a5b00;
|
|
409
|
+
background: #fff4dd;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.ral-payment-history__status--due {
|
|
413
|
+
color: #b42318;
|
|
414
|
+
background: #fff0ef;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.ral-payment-history__receipts-row td {
|
|
418
|
+
padding: 0;
|
|
419
|
+
background: #f7fbff;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.ral-payment-history__receipts {
|
|
423
|
+
padding: 8px 16px;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.ral-payment-history__receipt {
|
|
427
|
+
display: flex;
|
|
428
|
+
flex-wrap: wrap;
|
|
429
|
+
gap: 8px 18px;
|
|
430
|
+
padding: 10px 0;
|
|
431
|
+
border-bottom: 1px solid #e4edf7;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.ral-payment-history__receipt:last-child {
|
|
435
|
+
border-bottom: 0;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.ral-payment-history__receipt strong {
|
|
439
|
+
color: #173f73;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.ral-payment-history__message {
|
|
443
|
+
padding: 24px 0;
|
|
444
|
+
color: #5b6b82;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.ral-payment-history__message--error {
|
|
448
|
+
color: #b42318;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
@media (max-width: 768px) {
|
|
452
|
+
.ral-payment-history__header,
|
|
453
|
+
.ral-payment-history__totals {
|
|
454
|
+
flex-direction: column;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.ral-payment-history__totals {
|
|
458
|
+
width: 100%;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.ral-payment-history__totals > div {
|
|
462
|
+
width: 100%;
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
|
|
286
466
|
.ral-bill-generate {
|
|
287
467
|
max-width: 100%;
|
|
288
468
|
}
|
|
@@ -589,3 +769,117 @@
|
|
|
589
769
|
.ral-property-details__non-legacy--hidden {
|
|
590
770
|
display: none;
|
|
591
771
|
}
|
|
772
|
+
|
|
773
|
+
// Keep all owner-search columns legible and scroll the result area when required.
|
|
774
|
+
.ral-owner-search-results {
|
|
775
|
+
width: 100%;
|
|
776
|
+
max-width: 100%;
|
|
777
|
+
min-width: 0;
|
|
778
|
+
overflow-x: auto;
|
|
779
|
+
overflow-y: hidden;
|
|
780
|
+
-webkit-overflow-scrolling: touch;
|
|
781
|
+
|
|
782
|
+
.ndc-new-table-wrapper {
|
|
783
|
+
width: 100%;
|
|
784
|
+
max-width: 100%;
|
|
785
|
+
min-width: 0;
|
|
786
|
+
overflow-x: auto;
|
|
787
|
+
overflow-y: hidden;
|
|
788
|
+
-webkit-overflow-scrolling: touch;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.customTable {
|
|
792
|
+
min-width: 1480px;
|
|
793
|
+
table-layout: fixed;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.customTable th,
|
|
797
|
+
.customTable td {
|
|
798
|
+
box-sizing: border-box;
|
|
799
|
+
overflow-wrap: anywhere;
|
|
800
|
+
text-align: left;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
.customTable th {
|
|
804
|
+
line-height: 1.3;
|
|
805
|
+
white-space: normal;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.customTable th:nth-child(1),
|
|
809
|
+
.customTable td:nth-child(1) {
|
|
810
|
+
width: 170px;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.customTable th:nth-child(2),
|
|
814
|
+
.customTable td:nth-child(2) {
|
|
815
|
+
width: 130px;
|
|
816
|
+
white-space: nowrap;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.customTable th:nth-child(3),
|
|
820
|
+
.customTable td:nth-child(3) {
|
|
821
|
+
width: 220px;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.customTable th:nth-child(4),
|
|
825
|
+
.customTable td:nth-child(4) {
|
|
826
|
+
width: 125px;
|
|
827
|
+
white-space: nowrap;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.customTable th:nth-child(5),
|
|
831
|
+
.customTable td:nth-child(5) {
|
|
832
|
+
width: 205px;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.customTable th:nth-child(6),
|
|
836
|
+
.customTable td:nth-child(6) {
|
|
837
|
+
width: 220px;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.customTable th:nth-child(7),
|
|
841
|
+
.customTable td:nth-child(7) {
|
|
842
|
+
width: 110px;
|
|
843
|
+
white-space: nowrap;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
.customTable th:nth-child(8),
|
|
847
|
+
.customTable td:nth-child(8) {
|
|
848
|
+
width: 120px;
|
|
849
|
+
text-align: center;
|
|
850
|
+
white-space: nowrap;
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
// Prevent the wide search table from expanding the stepper or the page.
|
|
855
|
+
.ral-owner-details-step {
|
|
856
|
+
width: 100%;
|
|
857
|
+
max-width: 100%;
|
|
858
|
+
min-width: 0;
|
|
859
|
+
overflow-x: hidden !important;
|
|
860
|
+
|
|
861
|
+
#owner-search-form-container {
|
|
862
|
+
max-width: 100%;
|
|
863
|
+
min-width: 0;
|
|
864
|
+
overflow: hidden;
|
|
865
|
+
}
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
// A phone number does not need the full row width on desktop.
|
|
869
|
+
.ral-owner-search-controls {
|
|
870
|
+
justify-content: flex-start;
|
|
871
|
+
|
|
872
|
+
.obps-page-components-layout-owner-search-modal--style-7 {
|
|
873
|
+
flex: 0 1 380px;
|
|
874
|
+
width: 380px;
|
|
875
|
+
max-width: 100%;
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
@media (max-width: 768px) {
|
|
880
|
+
.ral-owner-search-controls {
|
|
881
|
+
.obps-page-components-layout-owner-search-modal--style-7 {
|
|
882
|
+
width: 100%;
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
}
|