@tattvafoundation/upyog-css 1.0.42 → 1.0.43
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 +59 -384
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/bmc.scss +18 -393
- package/src/components/inventory.scss +6 -7
package/dist/index.css
CHANGED
|
@@ -324,6 +324,11 @@ img, video {
|
|
|
324
324
|
background-color: #faf1d4;
|
|
325
325
|
background-color: rgba(250, 241, 212, var(--bg-opacity)); }
|
|
326
326
|
|
|
327
|
+
.bg-primary-300 {
|
|
328
|
+
--bg-opacity:1;
|
|
329
|
+
background-color: #edcc77;
|
|
330
|
+
background-color: rgba(237, 204, 119, var(--bg-opacity)); }
|
|
331
|
+
|
|
327
332
|
.bg-primary-400 {
|
|
328
333
|
--bg-opacity:1;
|
|
329
334
|
background-color: #e5b449;
|
|
@@ -487,6 +492,11 @@ img, video {
|
|
|
487
492
|
.border-collapse {
|
|
488
493
|
border-collapse: collapse; }
|
|
489
494
|
|
|
495
|
+
.border-primary-100 {
|
|
496
|
+
--border-opacity:1;
|
|
497
|
+
border-color: #faf1d4;
|
|
498
|
+
border-color: rgba(250, 241, 212, var(--border-opacity)); }
|
|
499
|
+
|
|
490
500
|
.border-primary-200 {
|
|
491
501
|
--border-opacity:1;
|
|
492
502
|
border-color: #f4e1a8;
|
|
@@ -586,6 +596,10 @@ img, video {
|
|
|
586
596
|
.rounded-l-lg {
|
|
587
597
|
border-top-left-radius: .5rem; }
|
|
588
598
|
|
|
599
|
+
.rounded-t-xl {
|
|
600
|
+
border-top-left-radius: .75rem;
|
|
601
|
+
border-top-right-radius: .75rem; }
|
|
602
|
+
|
|
589
603
|
.rounded-t-2xl {
|
|
590
604
|
border-top-left-radius: 1rem;
|
|
591
605
|
border-top-right-radius: 1rem; }
|
|
@@ -908,9 +922,6 @@ img, video {
|
|
|
908
922
|
.leading-tight {
|
|
909
923
|
line-height: 1.25; }
|
|
910
924
|
|
|
911
|
-
.leading-snug {
|
|
912
|
-
line-height: 1.375; }
|
|
913
|
-
|
|
914
925
|
.leading-relaxed {
|
|
915
926
|
line-height: 1.625; }
|
|
916
927
|
|
|
@@ -965,6 +976,14 @@ img, video {
|
|
|
965
976
|
.min-w-full {
|
|
966
977
|
min-width: 100%; }
|
|
967
978
|
|
|
979
|
+
.object-cover {
|
|
980
|
+
-o-object-fit: cover;
|
|
981
|
+
object-fit: cover; }
|
|
982
|
+
|
|
983
|
+
.object-center {
|
|
984
|
+
-o-object-position: center;
|
|
985
|
+
object-position: center; }
|
|
986
|
+
|
|
968
987
|
.opacity-0 {
|
|
969
988
|
opacity: 0; }
|
|
970
989
|
|
|
@@ -1002,9 +1021,6 @@ img, video {
|
|
|
1002
1021
|
.pointer-events-none {
|
|
1003
1022
|
pointer-events: none; }
|
|
1004
1023
|
|
|
1005
|
-
.pointer-events-auto {
|
|
1006
|
-
pointer-events: auto; }
|
|
1007
|
-
|
|
1008
1024
|
.static {
|
|
1009
1025
|
position: static; }
|
|
1010
1026
|
|
|
@@ -1095,6 +1111,10 @@ img, video {
|
|
|
1095
1111
|
-webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
1096
1112
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
|
|
1097
1113
|
|
|
1114
|
+
.hover\:shadow-2xl:hover {
|
|
1115
|
+
-webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
|
1116
|
+
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
|
|
1117
|
+
|
|
1098
1118
|
.fill-current {
|
|
1099
1119
|
fill: currentColor; }
|
|
1100
1120
|
|
|
@@ -1224,9 +1244,6 @@ img, video {
|
|
|
1224
1244
|
.capitalize {
|
|
1225
1245
|
text-transform: capitalize; }
|
|
1226
1246
|
|
|
1227
|
-
.normal-case {
|
|
1228
|
-
text-transform: none; }
|
|
1229
|
-
|
|
1230
1247
|
.hover\:underline:hover, .underline {
|
|
1231
1248
|
text-decoration: underline; }
|
|
1232
1249
|
|
|
@@ -1418,6 +1435,10 @@ img, video {
|
|
|
1418
1435
|
grid-gap: 1.5rem;
|
|
1419
1436
|
gap: 1.5rem; }
|
|
1420
1437
|
|
|
1438
|
+
.gap-8 {
|
|
1439
|
+
grid-gap: 2rem;
|
|
1440
|
+
gap: 2rem; }
|
|
1441
|
+
|
|
1421
1442
|
.gap-0\.5 {
|
|
1422
1443
|
grid-gap: .125rem;
|
|
1423
1444
|
gap: .125rem; }
|
|
@@ -1592,6 +1613,10 @@ img, video {
|
|
|
1592
1613
|
-webkit-transition-duration: .5s;
|
|
1593
1614
|
transition-duration: .5s; }
|
|
1594
1615
|
|
|
1616
|
+
.duration-700 {
|
|
1617
|
+
-webkit-transition-duration: .7s;
|
|
1618
|
+
transition-duration: .7s; }
|
|
1619
|
+
|
|
1595
1620
|
@-webkit-keyframes spin {
|
|
1596
1621
|
to {
|
|
1597
1622
|
-webkit-transform: rotate(1turn);
|
|
@@ -2549,6 +2574,11 @@ body {
|
|
|
2549
2574
|
color: #5f5c62; }
|
|
2550
2575
|
|
|
2551
2576
|
.drawer-desktop {
|
|
2577
|
+
background-color: #f5eacd;
|
|
2578
|
+
position: fixed;
|
|
2579
|
+
top: 0;
|
|
2580
|
+
bottom: 0;
|
|
2581
|
+
padding-top: 80px;
|
|
2552
2582
|
width: 190px; }
|
|
2553
2583
|
.drawer-desktop .menu-item {
|
|
2554
2584
|
border: 10px;
|
|
@@ -11460,66 +11490,19 @@ body {
|
|
|
11460
11490
|
font-weight: 100; }
|
|
11461
11491
|
|
|
11462
11492
|
.SideBarStatic {
|
|
11463
|
-
overflow:
|
|
11464
|
-
-ms-flex-negative: 0;
|
|
11465
|
-
flex-shrink: 0; }
|
|
11493
|
+
overflow: hidden; }
|
|
11466
11494
|
|
|
11467
11495
|
.drawer-desktop, .SideBarStatic {
|
|
11468
11496
|
width: 60px;
|
|
11469
|
-
|
|
11470
|
-
|
|
11471
|
-
|
|
11472
|
-
.drawer-desktop {
|
|
11473
|
-
-webkit-transition: width .3s ease;
|
|
11474
|
-
transition: width .3s ease;
|
|
11475
|
-
overflow: hidden;
|
|
11476
|
-
overflow-y: auto;
|
|
11477
|
-
font-family: Open Sans,sans-serif;
|
|
11478
|
-
background-color: #f5eacd;
|
|
11479
|
-
position: fixed;
|
|
11480
|
-
top: 0;
|
|
11481
|
-
bottom: 0;
|
|
11482
|
-
left: 0;
|
|
11483
|
-
padding-top: 80px;
|
|
11484
|
-
-webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06);
|
|
11485
|
-
box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06); }
|
|
11497
|
+
-webkit-transition: all .5s linear;
|
|
11498
|
+
transition: all .5s linear;
|
|
11499
|
+
height: 100%; }
|
|
11486
11500
|
|
|
11487
11501
|
.drawer-desktop:hover {
|
|
11488
|
-
width:
|
|
11489
|
-
-webkit-box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
|
|
11490
|
-
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1); }
|
|
11502
|
+
width: 200px; }
|
|
11491
11503
|
|
|
11492
|
-
.drawer-desktop .profile-section {
|
|
11493
|
-
display:
|
|
11494
|
-
display: -ms-flexbox;
|
|
11495
|
-
display: flex;
|
|
11496
|
-
-webkit-box-orient: vertical;
|
|
11497
|
-
-webkit-box-direction: normal;
|
|
11498
|
-
-ms-flex-direction: column;
|
|
11499
|
-
flex-direction: column;
|
|
11500
|
-
-webkit-box-align: center;
|
|
11501
|
-
-ms-flex-align: center;
|
|
11502
|
-
align-items: center;
|
|
11503
|
-
padding: 16px 8px 0;
|
|
11504
|
-
background-color: initial; }
|
|
11505
|
-
|
|
11506
|
-
.drawer-desktop .profile-section img {
|
|
11507
|
-
width: 36px !important;
|
|
11508
|
-
height: 36px !important;
|
|
11509
|
-
-o-object-fit: cover;
|
|
11510
|
-
object-fit: cover;
|
|
11511
|
-
-o-object-position: center;
|
|
11512
|
-
object-position: center;
|
|
11513
|
-
border-radius: 50%;
|
|
11514
|
-
margin: 0 auto 8px !important;
|
|
11515
|
-
-webkit-transition: width .3s ease,height .3s ease;
|
|
11516
|
-
transition: width .3s ease,height .3s ease;
|
|
11517
|
-
border: 2px solid #c8850a; }
|
|
11518
|
-
|
|
11519
|
-
.drawer-desktop:hover .profile-section img {
|
|
11520
|
-
width: 72px !important;
|
|
11521
|
-
height: 72px !important;
|
|
11522
|
-
margin-bottom: 12px !important; }
|
|
11504
|
+
.drawer-desktop:hover .profile-section {
|
|
11505
|
+
display: block; }
|
|
11523
11506
|
|
|
11524
11507
|
.drawer-desktop .profile-section .name-Profile {
|
|
11525
11508
|
display: none; }
|
|
@@ -11527,157 +11510,17 @@ body {
|
|
|
11527
11510
|
.drawer-desktop:hover .profile-section .name-Profile {
|
|
11528
11511
|
display: block; }
|
|
11529
11512
|
|
|
11530
|
-
.drawer-desktop .profile-section .name-Profile .label-text {
|
|
11531
|
-
text-align: center;
|
|
11532
|
-
font-weight: 700;
|
|
11533
|
-
font-size: 15px;
|
|
11534
|
-
color: #0b0c0c;
|
|
11535
|
-
letter-spacing: .3px;
|
|
11536
|
-
line-height: 1.3;
|
|
11537
|
-
white-space: nowrap;
|
|
11538
|
-
overflow: hidden;
|
|
11539
|
-
text-overflow: ellipsis;
|
|
11540
|
-
max-width: 190px; }
|
|
11541
|
-
|
|
11542
11513
|
.drawer-desktop .profile-section .loc-Profile {
|
|
11543
11514
|
display: none; }
|
|
11544
11515
|
|
|
11545
11516
|
.drawer-desktop:hover .profile-section .loc-Profile {
|
|
11546
11517
|
display: block; }
|
|
11547
11518
|
|
|
11548
|
-
.drawer-desktop .profile-section .
|
|
11549
|
-
text-align: center;
|
|
11550
|
-
font-size: 13px;
|
|
11551
|
-
color: #767676;
|
|
11552
|
-
white-space: nowrap;
|
|
11553
|
-
overflow: hidden;
|
|
11554
|
-
text-overflow: ellipsis;
|
|
11555
|
-
max-width: 190px; }
|
|
11556
|
-
|
|
11557
|
-
.drawer-desktop .profile-section .profile-divider {
|
|
11558
|
-
display: none; }
|
|
11559
|
-
|
|
11560
|
-
.drawer-desktop:hover .profile-section .profile-divider {
|
|
11561
|
-
display: block;
|
|
11562
|
-
border-top: 1px solid #d6d5d4;
|
|
11563
|
-
width: 85%;
|
|
11564
|
-
margin: 12px auto 4px; }
|
|
11565
|
-
|
|
11566
|
-
.drawer-desktop .sidebar-list {
|
|
11567
|
-
padding: 4px 8px !important;
|
|
11568
|
-
margin: 0;
|
|
11569
|
-
border-left: none !important; }
|
|
11570
|
-
|
|
11571
|
-
.drawer-desktop .sidebar-list.active {
|
|
11572
|
-
border-left: none !important;
|
|
11573
|
-
padding-left: 8px !important; }
|
|
11574
|
-
|
|
11575
|
-
.drawer-desktop .sidebar-list.active .menu-label {
|
|
11576
|
-
color: #b08905;
|
|
11577
|
-
font-weight: 600; }
|
|
11578
|
-
|
|
11579
|
-
.drawer-desktop .sidebar-list.active .icon {
|
|
11580
|
-
fill: #b08905 !important;
|
|
11581
|
-
color: #b08905 !important; }
|
|
11582
|
-
|
|
11583
|
-
.drawer-desktop .menu-item {
|
|
11584
|
-
display: -webkit-box !important;
|
|
11585
|
-
display: -ms-flexbox !important;
|
|
11586
|
-
display: flex !important;
|
|
11587
|
-
-webkit-box-align: center;
|
|
11588
|
-
-ms-flex-align: center;
|
|
11589
|
-
align-items: center;
|
|
11590
|
-
min-height: 42px;
|
|
11591
|
-
line-height: 42px;
|
|
11592
|
-
padding: 0;
|
|
11593
|
-
cursor: pointer;
|
|
11594
|
-
border-radius: 10px;
|
|
11595
|
-
-webkit-transition: background-color .2s ease;
|
|
11596
|
-
transition: background-color .2s ease; }
|
|
11597
|
-
|
|
11598
|
-
.drawer-desktop .menu-item:hover {
|
|
11599
|
-
background-color: rgba(200, 133, 10, 0.08); }
|
|
11600
|
-
|
|
11601
|
-
.drawer-desktop .sidebar-list.active .menu-item {
|
|
11602
|
-
background-color: rgba(176, 137, 5, 0.14); }
|
|
11603
|
-
|
|
11604
|
-
.drawer-desktop .menu-item .icon {
|
|
11605
|
-
display: -webkit-box !important;
|
|
11606
|
-
display: -ms-flexbox !important;
|
|
11607
|
-
display: flex !important;
|
|
11608
|
-
-webkit-box-align: center;
|
|
11609
|
-
-ms-flex-align: center;
|
|
11610
|
-
align-items: center;
|
|
11611
|
-
-webkit-box-pack: center;
|
|
11612
|
-
-ms-flex-pack: center;
|
|
11613
|
-
justify-content: center;
|
|
11614
|
-
float: none !important;
|
|
11615
|
-
width: 21px !important;
|
|
11616
|
-
height: 21px !important;
|
|
11617
|
-
min-width: 21px;
|
|
11618
|
-
margin: 0 11px !important;
|
|
11619
|
-
fill: #757575;
|
|
11620
|
-
color: #757575;
|
|
11621
|
-
-webkit-transition: fill .2s ease,color .2s ease,margin .3s ease;
|
|
11622
|
-
transition: fill .2s ease,color .2s ease,margin .3s ease; }
|
|
11623
|
-
|
|
11624
|
-
.drawer-desktop .menu-item .menu-label {
|
|
11625
|
-
display: none;
|
|
11626
|
-
margin-left: 0;
|
|
11627
|
-
font-size: 14px;
|
|
11628
|
-
color: #5f5c62;
|
|
11629
|
-
white-space: normal !important;
|
|
11630
|
-
word-wrap: break-word;
|
|
11631
|
-
overflow: visible !important;
|
|
11632
|
-
text-overflow: unset !important;
|
|
11633
|
-
line-height: 1.3; }
|
|
11634
|
-
|
|
11635
|
-
.drawer-desktop:hover .menu-item .menu-label {
|
|
11636
|
-
display: block; }
|
|
11637
|
-
|
|
11638
|
-
.drawer-desktop:hover .menu-item .icon {
|
|
11639
|
-
margin-left: 12px !important;
|
|
11640
|
-
margin-right: 10px !important; }
|
|
11641
|
-
|
|
11642
|
-
.drawer-desktop:hover .sidebar-list.active {
|
|
11643
|
-
border-left: 3px solid #b08905;
|
|
11644
|
-
padding-left: 5px;
|
|
11645
|
-
border-radius: 0 10px 10px 0; }
|
|
11646
|
-
|
|
11647
|
-
.drawer-desktop::-webkit-scrollbar {
|
|
11648
|
-
width: 4px; }
|
|
11649
|
-
|
|
11650
|
-
.drawer-desktop::-webkit-scrollbar-track {
|
|
11651
|
-
background: transparent; }
|
|
11652
|
-
|
|
11653
|
-
.drawer-desktop::-webkit-scrollbar-thumb {
|
|
11654
|
-
background-color: rgba(176, 137, 5, 0.3);
|
|
11655
|
-
border-radius: 4px; }
|
|
11656
|
-
|
|
11657
|
-
.drawer-desktop::-webkit-scrollbar-thumb:hover {
|
|
11658
|
-
background-color: rgba(176, 137, 5, 0.5); }
|
|
11659
|
-
|
|
11660
|
-
.drawer-desktop .sidebar-list a {
|
|
11661
|
-
text-decoration: none;
|
|
11662
|
-
color: inherit;
|
|
11663
|
-
display: block;
|
|
11664
|
-
width: 100%; }
|
|
11665
|
-
|
|
11666
|
-
.drawer-desktop .drawer-menu-list {
|
|
11667
|
-
padding-top: 4px;
|
|
11668
|
-
background-color: #f5eacd; }
|
|
11669
|
-
|
|
11670
|
-
@media (min-width: 780px) {
|
|
11671
|
-
.SideBarStatic {
|
|
11672
|
-
width: 60px;
|
|
11673
|
-
background: transparent;
|
|
11674
|
-
margin-top: -24px; }
|
|
11675
|
-
.bill-citizen, .bills-citizen-wrapper, .citizen-all-services-wrapper, .citizen-form-wrapper, .citizen-obps-wrapper, .engagement-citizen-wrapper, .fsm-citizen-wrapper, .mcollect-citizen, .moduleLinkHomePage, .payer-bills-citizen-wrapper, .pgr-citizen-wrapper, .pt-citizen, .selection-card-wrapper, .tl-citizen, .ws-citizen-wrapper {
|
|
11676
|
-
width: calc(100% - 60px) !important; } }
|
|
11519
|
+
.drawer-desktop .profile-section .label-text {
|
|
11520
|
+
text-align: center; }
|
|
11677
11521
|
|
|
11678
|
-
|
|
11679
|
-
|
|
11680
|
-
display: none; } }
|
|
11522
|
+
.SideBarStatic:hover, .SideBarStatic:hover .drawer-desktop {
|
|
11523
|
+
width: 200px; }
|
|
11681
11524
|
|
|
11682
11525
|
.card p.message-text, .card-emp p.message-text {
|
|
11683
11526
|
font-size: 14px;
|
|
@@ -11953,169 +11796,6 @@ button.submit-bar:hover {
|
|
|
11953
11796
|
width: auto;
|
|
11954
11797
|
padding: 0; }
|
|
11955
11798
|
|
|
11956
|
-
.deonar-flowchart .employee .ground-container {
|
|
11957
|
-
margin-bottom: 0 !important; }
|
|
11958
|
-
|
|
11959
|
-
.flowchart-header {
|
|
11960
|
-
--r:70px;
|
|
11961
|
-
line-height: 3;
|
|
11962
|
-
padding-left: 1em;
|
|
11963
|
-
padding-right: 1em;
|
|
11964
|
-
border-left: var(--r) solid transparent;
|
|
11965
|
-
border-right: var(--r) solid transparent;
|
|
11966
|
-
border-radius: calc(var(--r)*2) calc(var(--r)*2) 0 0/var(--r);
|
|
11967
|
-
-webkit-mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0, #000 0) padding-box;
|
|
11968
|
-
mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0, #000 0) padding-box;
|
|
11969
|
-
-webkit-mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0 0) padding-box;
|
|
11970
|
-
mask: radial-gradient(var(--r) at var(--r) 0, transparent 98%, #000 101%) calc(var(--r)*-1) 100%/100% var(--r) repeat-x, conic-gradient(#000 0 0) padding-box;
|
|
11971
|
-
background: #bd5532 border-box;
|
|
11972
|
-
width: -webkit-fit-content;
|
|
11973
|
-
width: -moz-fit-content;
|
|
11974
|
-
width: fit-content;
|
|
11975
|
-
background-color: #e57400;
|
|
11976
|
-
color: #fff;
|
|
11977
|
-
font-weight: 700; }
|
|
11978
|
-
|
|
11979
|
-
.verify-receipt-page .citizen .main {
|
|
11980
|
-
width: 100%;
|
|
11981
|
-
padding-top: 82px;
|
|
11982
|
-
-webkit-box-pack: center;
|
|
11983
|
-
-ms-flex-pack: center;
|
|
11984
|
-
justify-content: center; }
|
|
11985
|
-
|
|
11986
|
-
.verify-receipt-page .verify-reciept-main {
|
|
11987
|
-
max-width: 700px;
|
|
11988
|
-
width: 100%;
|
|
11989
|
-
padding: 12px;
|
|
11990
|
-
background-color: #f3f4f6;
|
|
11991
|
-
-webkit-box-sizing: border-box;
|
|
11992
|
-
box-sizing: border-box; }
|
|
11993
|
-
|
|
11994
|
-
.verify-receipt-page .verify-reciept-card {
|
|
11995
|
-
padding: 16px;
|
|
11996
|
-
border-radius: 12px;
|
|
11997
|
-
-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
11998
|
-
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
11999
|
-
background-color: #fff;
|
|
12000
|
-
width: 100%;
|
|
12001
|
-
-webkit-box-sizing: border-box;
|
|
12002
|
-
box-sizing: border-box;
|
|
12003
|
-
overflow-x: hidden; }
|
|
12004
|
-
|
|
12005
|
-
.verify-receipt-page .verify-reciept-card-header {
|
|
12006
|
-
color: #1f2937;
|
|
12007
|
-
border-bottom: 1px solid #e5e7eb;
|
|
12008
|
-
padding-bottom: 12px;
|
|
12009
|
-
margin-bottom: 16px;
|
|
12010
|
-
font-size: clamp(16px, 4vw, 20px);
|
|
12011
|
-
font-weight: 700;
|
|
12012
|
-
display: -webkit-box;
|
|
12013
|
-
display: -ms-flexbox;
|
|
12014
|
-
display: flex;
|
|
12015
|
-
-webkit-box-align: center;
|
|
12016
|
-
-ms-flex-align: center;
|
|
12017
|
-
align-items: center;
|
|
12018
|
-
grid-gap: 8px;
|
|
12019
|
-
gap: 8px; }
|
|
12020
|
-
|
|
12021
|
-
.verify-receipt-page .verify-reciept-header-icon {
|
|
12022
|
-
width: 28px;
|
|
12023
|
-
height: 28px;
|
|
12024
|
-
border-radius: 50%;
|
|
12025
|
-
background-color: #2563eb;
|
|
12026
|
-
display: -webkit-inline-box;
|
|
12027
|
-
display: -ms-inline-flexbox;
|
|
12028
|
-
display: inline-flex;
|
|
12029
|
-
-webkit-box-align: center;
|
|
12030
|
-
-ms-flex-align: center;
|
|
12031
|
-
align-items: center;
|
|
12032
|
-
-webkit-box-pack: center;
|
|
12033
|
-
-ms-flex-pack: center;
|
|
12034
|
-
justify-content: center;
|
|
12035
|
-
-ms-flex-negative: 0;
|
|
12036
|
-
flex-shrink: 0; }
|
|
12037
|
-
|
|
12038
|
-
.verify-receipt-page .verify-reciept-row {
|
|
12039
|
-
display: -webkit-box;
|
|
12040
|
-
display: -ms-flexbox;
|
|
12041
|
-
display: flex;
|
|
12042
|
-
-webkit-box-orient: horizontal;
|
|
12043
|
-
-webkit-box-direction: normal;
|
|
12044
|
-
-ms-flex-direction: row;
|
|
12045
|
-
flex-direction: row;
|
|
12046
|
-
-webkit-box-pack: justify;
|
|
12047
|
-
-ms-flex-pack: justify;
|
|
12048
|
-
justify-content: space-between;
|
|
12049
|
-
-webkit-box-align: start;
|
|
12050
|
-
-ms-flex-align: start;
|
|
12051
|
-
align-items: flex-start;
|
|
12052
|
-
padding: 10px 0;
|
|
12053
|
-
border-bottom: 1px solid #f3f4f6;
|
|
12054
|
-
grid-gap: 8px;
|
|
12055
|
-
gap: 8px;
|
|
12056
|
-
-ms-flex-wrap: wrap;
|
|
12057
|
-
flex-wrap: wrap; }
|
|
12058
|
-
|
|
12059
|
-
.verify-receipt-page .verify-reciept-row.last {
|
|
12060
|
-
border-bottom: none; }
|
|
12061
|
-
|
|
12062
|
-
.verify-receipt-page .verify-reciept-label {
|
|
12063
|
-
font-size: clamp(12px, 3vw, 14px);
|
|
12064
|
-
color: #6b7280;
|
|
12065
|
-
font-weight: 500;
|
|
12066
|
-
-webkit-box-flex: 1;
|
|
12067
|
-
-ms-flex: 1 1 40%;
|
|
12068
|
-
flex: 1 1 40%;
|
|
12069
|
-
min-width: 120px; }
|
|
12070
|
-
|
|
12071
|
-
.verify-receipt-page .verify-reciept-value {
|
|
12072
|
-
font-size: clamp(12px, 3vw, 14px);
|
|
12073
|
-
color: #1f2937;
|
|
12074
|
-
font-weight: 400;
|
|
12075
|
-
-webkit-box-flex: 1;
|
|
12076
|
-
-ms-flex: 1 1 50%;
|
|
12077
|
-
flex: 1 1 50%;
|
|
12078
|
-
text-align: right;
|
|
12079
|
-
word-break: break-word; }
|
|
12080
|
-
|
|
12081
|
-
.verify-receipt-page .verify-reciept-value.bold {
|
|
12082
|
-
font-weight: 600; }
|
|
12083
|
-
|
|
12084
|
-
.verify-receipt-page .verify-reciept-badge {
|
|
12085
|
-
font-weight: 700;
|
|
12086
|
-
color: #2563eb;
|
|
12087
|
-
font-size: clamp(13px, 3.5vw, 15px);
|
|
12088
|
-
background: #eff6ff;
|
|
12089
|
-
padding: 2px 8px;
|
|
12090
|
-
border-radius: 6px;
|
|
12091
|
-
display: inline-block; }
|
|
12092
|
-
|
|
12093
|
-
.verify-receipt-page .verify-reciept-amount {
|
|
12094
|
-
color: #059669;
|
|
12095
|
-
font-weight: 700;
|
|
12096
|
-
font-size: clamp(14px, 4vw, 18px); }
|
|
12097
|
-
|
|
12098
|
-
.verify-receipt-page .verify-reciept-error-card {
|
|
12099
|
-
padding: 20px;
|
|
12100
|
-
border-radius: 12px;
|
|
12101
|
-
margin: 16px;
|
|
12102
|
-
background-color: #fff5f5;
|
|
12103
|
-
border: 1px solid #fecaca; }
|
|
12104
|
-
|
|
12105
|
-
.verify-receipt-page .verify-reciept-error-label {
|
|
12106
|
-
color: #dc2626;
|
|
12107
|
-
font-weight: 600;
|
|
12108
|
-
text-align: center;
|
|
12109
|
-
font-size: clamp(13px, 3.5vw, 15px); }
|
|
12110
|
-
|
|
12111
|
-
.verify-receipt-page .verify-reciept-section-title {
|
|
12112
|
-
font-size: 11px;
|
|
12113
|
-
font-weight: 600;
|
|
12114
|
-
color: #9ca3af;
|
|
12115
|
-
text-transform: uppercase;
|
|
12116
|
-
letter-spacing: .08em;
|
|
12117
|
-
padding: 10px 0 4px; }
|
|
12118
|
-
|
|
12119
11799
|
@media screen and (max-width: 320px) {
|
|
12120
11800
|
.mobile-CardWrapper {
|
|
12121
11801
|
min-height: 30vh; }
|
|
@@ -12169,12 +11849,6 @@ button.submit-bar:hover {
|
|
|
12169
11849
|
-webkit-transform: rotate(1turn);
|
|
12170
11850
|
transform: rotate(1turn); } }
|
|
12171
11851
|
|
|
12172
|
-
@media screen and (max-width: 400px) {
|
|
12173
|
-
.verify-receipt-page .verify-reciept-value {
|
|
12174
|
-
text-align: left; }
|
|
12175
|
-
.verify-receipt-page .citizen .main {
|
|
12176
|
-
padding-top: 60px; } }
|
|
12177
|
-
|
|
12178
11852
|
@media (max-width: 768px) {
|
|
12179
11853
|
.deonar-security {
|
|
12180
11854
|
display: -webkit-box;
|
|
@@ -12907,16 +12581,17 @@ body {
|
|
|
12907
12581
|
|
|
12908
12582
|
.inventory_form-input, .inventory_form-select, .inventory_form-textarea {
|
|
12909
12583
|
width: 100%;
|
|
12910
|
-
padding:
|
|
12911
|
-
border:
|
|
12912
|
-
border
|
|
12913
|
-
|
|
12584
|
+
padding: .875rem 1rem;
|
|
12585
|
+
border: 2px solid #e2e8f0;
|
|
12586
|
+
border: 2px solid var(--border-color);
|
|
12587
|
+
border-radius: 8px;
|
|
12588
|
+
font-size: 1rem;
|
|
12914
12589
|
-webkit-transition: all .3s ease;
|
|
12915
12590
|
transition: all .3s ease;
|
|
12916
|
-
background: #
|
|
12917
|
-
color: #
|
|
12918
|
-
|
|
12919
|
-
height:
|
|
12591
|
+
background: #fff;
|
|
12592
|
+
color: #0f172a;
|
|
12593
|
+
color: var(--text-primary);
|
|
12594
|
+
line-height: normal; }
|
|
12920
12595
|
|
|
12921
12596
|
.inventory_form-input:focus, .inventory_form-select:focus, .inventory_form-textarea:focus {
|
|
12922
12597
|
outline: none;
|