@pmidc/upyog-css 1.2.36-dev.1.3 → 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 +18743 -17879
- package/dist/index.min.css +1 -1
- package/package.json +24 -24
- package/src/components/CardBasedOptions.scss +33 -31
- package/src/components/actionbar.scss +1 -1
- package/src/components/body.scss +3 -3
- package/src/components/buttons.scss +8 -8
- package/src/components/card.scss +6 -3
- package/src/components/challanGeneration.scss +349 -0
- package/src/components/chb.scss +242 -0
- package/src/components/datatable.scss +6 -0
- package/src/components/filters.scss +283 -2
- package/src/components/garbageCollection.scss +535 -0
- package/src/components/ndc.scss +233 -0
- package/src/components/newInbox.scss +382 -0
- package/src/components/ptr.scss +301 -0
- package/src/components/selectdropdown.scss +10 -0
- package/src/components/table.scss +553 -42
- package/src/components/uploadcomponents.scss +1 -3
- package/src/index.scss +34 -11
- package/src/modules/BPA/index.scss +5149 -13
- package/src/modules/TL/index.scss +29 -0
- package/src/modules/adv/index.scss +1164 -0
- package/src/modules/noc/index.scss +1210 -0
- package/src/modules/rentAndLease/index.scss +647 -0
- package/src/pages/citizen/DocumentList.scss +19 -3
- package/src/pages/citizen/HomePageWrapper.scss +22 -17
- package/src/pages/employee/index.scss +62 -22
- package/src/pages/employee/login.scss +1 -1
|
@@ -19,6 +19,56 @@
|
|
|
19
19
|
margin-top: -18px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
.ral-last-paid-upto-label {
|
|
23
|
+
position: relative;
|
|
24
|
+
margin: 18px 0 10px;
|
|
25
|
+
padding: 12px 14px 12px 42px;
|
|
26
|
+
color: #163d63;
|
|
27
|
+
font-size: 13px;
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
line-height: 1.45;
|
|
30
|
+
background: linear-gradient(90deg, #eaf4fb 0%, #f7fbfe 100%);
|
|
31
|
+
border: 1px solid #b7d8ed;
|
|
32
|
+
border-left: 4px solid #fa001d;
|
|
33
|
+
border-radius: 4px;
|
|
34
|
+
box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ral-last-paid-upto-hidden {
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.ral-arrear-details-hidden {
|
|
42
|
+
display: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ral-last-paid-upto-label::before {
|
|
46
|
+
content: "i";
|
|
47
|
+
position: absolute;
|
|
48
|
+
top: 50%;
|
|
49
|
+
left: 13px;
|
|
50
|
+
display: flex;
|
|
51
|
+
width: 18px;
|
|
52
|
+
height: 18px;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
color: #fff;
|
|
56
|
+
font-family: Georgia, serif;
|
|
57
|
+
font-size: 13px;
|
|
58
|
+
font-weight: 700;
|
|
59
|
+
line-height: 1;
|
|
60
|
+
background: #0d6ea8;
|
|
61
|
+
border-radius: 50%;
|
|
62
|
+
transform: translateY(-50%);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@media (max-width: 780px) {
|
|
66
|
+
.ral-last-paid-upto-label {
|
|
67
|
+
margin-top: 14px;
|
|
68
|
+
padding: 10px 12px 10px 38px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
22
72
|
/* Desktop view - margin-left 50% */
|
|
23
73
|
@media (min-width: 768px) {
|
|
24
74
|
.ral-error-label {
|
|
@@ -233,6 +283,603 @@
|
|
|
233
283
|
margin-top: 30px;
|
|
234
284
|
}
|
|
235
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
|
+
|
|
466
|
+
.ral-bill-generate {
|
|
467
|
+
max-width: 100%;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.ral-bill-generate__header {
|
|
471
|
+
margin: 16px;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.ral-bill-generate__form {
|
|
475
|
+
padding: 0;
|
|
476
|
+
margin: 0;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.ral-bill-generate__actions {
|
|
480
|
+
display: flex;
|
|
481
|
+
justify-content: flex-end;
|
|
482
|
+
gap: 10px;
|
|
483
|
+
margin-top: 24px;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
@media (min-width: 641px) {
|
|
487
|
+
.ral-bill-generate__fields {
|
|
488
|
+
width: 100%;
|
|
489
|
+
max-width: 500px;
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
@media (max-width: 640px) {
|
|
494
|
+
.ral-bill-generate__card {
|
|
495
|
+
margin: 0 12px;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.ral-bill-generate__header {
|
|
499
|
+
margin: 16px 12px;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.ral-bill-generate__fields,
|
|
503
|
+
.ral-bill-generate__fields .input-fields,
|
|
504
|
+
.ral-bill-generate__fields .complaint-input,
|
|
505
|
+
.ral-bill-generate__fields .form-field,
|
|
506
|
+
.ral-bill-generate__fields input {
|
|
507
|
+
width: 100%;
|
|
508
|
+
max-width: 100%;
|
|
509
|
+
min-width: 0;
|
|
510
|
+
box-sizing: border-box;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.ral-bill-generate__actions {
|
|
514
|
+
flex-direction: row;
|
|
515
|
+
flex-wrap: wrap;
|
|
516
|
+
align-items: stretch;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.ral-bill-generate__actions .submit-bar {
|
|
520
|
+
flex: 1 1 0;
|
|
521
|
+
width: auto;
|
|
522
|
+
min-width: 0;
|
|
523
|
+
margin: 0;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.ral-bill-generate__actions .ral-back-btn {
|
|
527
|
+
margin-right: 0;
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
|
|
236
531
|
.mandatory-asterisk {
|
|
237
532
|
color: #ff0000 !important;
|
|
238
533
|
}
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
/* Generated from static Rent and Lease JSX styles. */
|
|
537
|
+
|
|
538
|
+
.ral-style-07e09bd50b {
|
|
539
|
+
justify-content:flex-start;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.ral-style-09fe054f3c {
|
|
543
|
+
font-size:13px;
|
|
544
|
+
color:green;
|
|
545
|
+
padding-bottom:10px;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.ral-style-13e42518aa {
|
|
549
|
+
cursor:pointer;
|
|
550
|
+
caret-color:transparent;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.ral-style-16a8a8b00c {
|
|
554
|
+
overflow:auto;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.ral-style-16b4c2d840 {
|
|
558
|
+
flex:none;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.ral-style-1ca832ca6c {
|
|
562
|
+
align-items:center;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.ral-style-2122396076 {
|
|
566
|
+
width:100%;
|
|
567
|
+
display:grid;
|
|
568
|
+
grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
|
|
569
|
+
gap:16px;
|
|
570
|
+
margin:0;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.ral-style-25d0175a45 {
|
|
574
|
+
font-weight:normal;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.ral-style-26afc10d19 {
|
|
578
|
+
border:1px solid #e0e0e0;
|
|
579
|
+
padding:6px;
|
|
580
|
+
margin-top:5px;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.ral-style-44b6015a79 {
|
|
584
|
+
display:flex;
|
|
585
|
+
align-items:center;
|
|
586
|
+
margin-top:auto;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.ral-style-463f21217a {
|
|
590
|
+
display:flex;
|
|
591
|
+
gap:15px;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
.ral-style-526d2de178 {
|
|
595
|
+
margin:16px;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.ral-style-5c357d95f7 {
|
|
599
|
+
margin-top:20px;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.ral-style-63d465e80f {
|
|
603
|
+
position:fixed;
|
|
604
|
+
top:50%;
|
|
605
|
+
left:50%;
|
|
606
|
+
transform:translate(-50%, -50%);
|
|
607
|
+
z-index:9999;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
.ral-style-669a0ee4e0 {
|
|
611
|
+
display:flex;
|
|
612
|
+
justify-content:flex-end;
|
|
613
|
+
align-items:baseline;
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.ral-style-705874e93f {
|
|
617
|
+
width:100%;
|
|
618
|
+
text-align:right;
|
|
619
|
+
width:240px;
|
|
620
|
+
text-align:right;
|
|
621
|
+
margin-left:96px;
|
|
622
|
+
margin-top:8px;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.ral-style-7623f05545 {
|
|
626
|
+
flex:1;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.ral-style-7f90823361 {
|
|
630
|
+
margin-left:10px;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.ral-style-806dcbc2f3 {
|
|
634
|
+
border:1px solid #e0e0e0;
|
|
635
|
+
padding:6px;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.ral-style-8119d65878 {
|
|
639
|
+
margin-left:8px;
|
|
640
|
+
font-weight:normal;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.ral-style-8556ab25bb {
|
|
644
|
+
position:relative;
|
|
645
|
+
width:100%;
|
|
646
|
+
cursor:pointer;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.ral-style-8f96e7bd84 {
|
|
650
|
+
color:#FE7A51;
|
|
651
|
+
cursor:pointer;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.ral-style-99871d5ffa {
|
|
655
|
+
margin-right:1rem;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.ral-style-9be68d3ddc {
|
|
659
|
+
position:absolute;
|
|
660
|
+
right:12px;
|
|
661
|
+
top:45%;
|
|
662
|
+
transform:translateY(-50%);
|
|
663
|
+
pointer-events:none;
|
|
664
|
+
width:16px;
|
|
665
|
+
height:16px;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.ral-style-a2e94d72eb {
|
|
669
|
+
padding:0;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.ral-style-a527bac1ee {
|
|
673
|
+
text-align:right;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.ral-style-aa35c0473f {
|
|
677
|
+
padding-right:0;
|
|
678
|
+
margin-top:0;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.ral-style-b46b779814 {
|
|
682
|
+
margin-top:24px;
|
|
683
|
+
background:white;
|
|
684
|
+
padding:16px;
|
|
685
|
+
border-radius:8px;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.ral-style-b89d6f781b {
|
|
689
|
+
padding:0;
|
|
690
|
+
margin:0;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.ral-style-ba53c25006 {
|
|
694
|
+
padding-top:9px;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.ral-style-bd1c956dbd {
|
|
698
|
+
z-index:1000;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.ral-style-cad980f4b7 {
|
|
702
|
+
width:100%;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.ral-style-dac4fe6c9b {
|
|
706
|
+
text-align:center;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.ral-style-fbb51b7b95 {
|
|
710
|
+
display:flex;
|
|
711
|
+
justify-content:flex-end;
|
|
712
|
+
gap:10px;
|
|
713
|
+
margin-top:24px;
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.ral-style-fcab9f05b8 {
|
|
717
|
+
width:70%;
|
|
718
|
+
margin-left:30%;
|
|
719
|
+
font-size:12px;
|
|
720
|
+
margin-top:-21px;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
.ral-citizen-breadcrumb--offset {
|
|
724
|
+
margin-left: 10px;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.ral-hidden-date-input {
|
|
728
|
+
position: absolute;
|
|
729
|
+
top: 0;
|
|
730
|
+
right: 0;
|
|
731
|
+
width: 32px;
|
|
732
|
+
height: 100%;
|
|
733
|
+
opacity: 0;
|
|
734
|
+
cursor: pointer;
|
|
735
|
+
border: none;
|
|
736
|
+
padding: 0;
|
|
737
|
+
margin: 0;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.ral-desktop-inbox__result {
|
|
741
|
+
flex: 1;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.ral-desktop-inbox__result--inbox {
|
|
745
|
+
margin-left: 24px;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.ral-inbox-search {
|
|
749
|
+
width: auto;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.ral-inbox-search--inbox {
|
|
753
|
+
margin-left: 24px;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.ral-inbox-search__fields {
|
|
757
|
+
width: 100%;
|
|
758
|
+
display: grid;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.ral-inbox-search__clear-link {
|
|
762
|
+
display: inline;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.ral-inbox-search__clear-link--mobile {
|
|
766
|
+
margin: 0;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.ral-property-details__non-legacy--hidden {
|
|
770
|
+
display: none;
|
|
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
|
+
}
|
|
@@ -343,9 +343,7 @@
|
|
|
343
343
|
/* Each document block */
|
|
344
344
|
.obps-document-detail-item {
|
|
345
345
|
display: flex;
|
|
346
|
-
flex-
|
|
347
|
-
justify-content: flex-start;
|
|
348
|
-
align-content: center;
|
|
346
|
+
flex-direction: row;
|
|
349
347
|
}
|
|
350
348
|
|
|
351
349
|
/* Clickable link */
|
|
@@ -452,4 +450,22 @@
|
|
|
452
450
|
max-width: none;
|
|
453
451
|
min-width: 0;
|
|
454
452
|
width: auto;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.fire-noc-doc-required-card {
|
|
456
|
+
background: #FAFAFA;
|
|
457
|
+
border: 1px solid #D6D5D4;
|
|
458
|
+
padding: 8px;
|
|
459
|
+
border-radius: 4px;
|
|
460
|
+
max-width: 600px;
|
|
461
|
+
min-width: 95%;
|
|
462
|
+
margin-bottom: 15px;
|
|
463
|
+
padding-top: 15px;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.fire-noc-doc-required-field {
|
|
467
|
+
min-width: 100%;
|
|
468
|
+
display: flex;
|
|
469
|
+
flex-direction: column;
|
|
470
|
+
gap: 10px;
|
|
455
471
|
}
|