@tattvafoundation/upyog-css 1.0.43 → 1.0.44
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 +404 -80
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/bmc.scss +400 -19
- package/src/components/inventory.scss +7 -6
package/dist/index.css
CHANGED
|
@@ -218,6 +218,11 @@ img, video {
|
|
|
218
218
|
.container {
|
|
219
219
|
max-width: 780px; } }
|
|
220
220
|
|
|
221
|
+
.space-y-0 > :not(template) ~ :not(template) {
|
|
222
|
+
--space-y-reverse:0;
|
|
223
|
+
margin-top: calc(0px*(1 - var(--space-y-reverse)));
|
|
224
|
+
margin-bottom: calc(0px*var(--space-y-reverse)); }
|
|
225
|
+
|
|
221
226
|
.space-y-1 > :not(template) ~ :not(template) {
|
|
222
227
|
--space-y-reverse:0;
|
|
223
228
|
margin-top: calc(0.25rem*(1 - var(--space-y-reverse)));
|
|
@@ -273,6 +278,11 @@ img, video {
|
|
|
273
278
|
margin-top: calc(2rem*(1 - var(--space-y-reverse)));
|
|
274
279
|
margin-bottom: calc(2rem*var(--space-y-reverse)); }
|
|
275
280
|
|
|
281
|
+
.space-y-0\.5 > :not(template) ~ :not(template) {
|
|
282
|
+
--space-y-reverse:0;
|
|
283
|
+
margin-top: calc(0.125rem*(1 - var(--space-y-reverse)));
|
|
284
|
+
margin-bottom: calc(0.125rem*var(--space-y-reverse)); }
|
|
285
|
+
|
|
276
286
|
.space-y-1\.5 > :not(template) ~ :not(template) {
|
|
277
287
|
--space-y-reverse:0;
|
|
278
288
|
margin-top: calc(0.375rem*(1 - var(--space-y-reverse)));
|
|
@@ -324,11 +334,6 @@ img, video {
|
|
|
324
334
|
background-color: #faf1d4;
|
|
325
335
|
background-color: rgba(250, 241, 212, var(--bg-opacity)); }
|
|
326
336
|
|
|
327
|
-
.bg-primary-300 {
|
|
328
|
-
--bg-opacity:1;
|
|
329
|
-
background-color: #edcc77;
|
|
330
|
-
background-color: rgba(237, 204, 119, var(--bg-opacity)); }
|
|
331
|
-
|
|
332
337
|
.bg-primary-400 {
|
|
333
338
|
--bg-opacity:1;
|
|
334
339
|
background-color: #e5b449;
|
|
@@ -439,11 +444,6 @@ img, video {
|
|
|
439
444
|
background-color: #fdf9ed;
|
|
440
445
|
background-color: rgba(253, 249, 237, var(--bg-opacity)); }
|
|
441
446
|
|
|
442
|
-
.focus\:bg-white:focus {
|
|
443
|
-
--bg-opacity:1;
|
|
444
|
-
background-color: #fff;
|
|
445
|
-
background-color: rgba(255, 255, 255, var(--bg-opacity)); }
|
|
446
|
-
|
|
447
447
|
.bg-gradient-to-r {
|
|
448
448
|
background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
|
|
449
449
|
background-image: linear-gradient(90deg, var(--gradient-color-stops)); }
|
|
@@ -492,11 +492,6 @@ img, video {
|
|
|
492
492
|
.border-collapse {
|
|
493
493
|
border-collapse: collapse; }
|
|
494
494
|
|
|
495
|
-
.border-primary-100 {
|
|
496
|
-
--border-opacity:1;
|
|
497
|
-
border-color: #faf1d4;
|
|
498
|
-
border-color: rgba(250, 241, 212, var(--border-opacity)); }
|
|
499
|
-
|
|
500
495
|
.border-primary-200 {
|
|
501
496
|
--border-opacity:1;
|
|
502
497
|
border-color: #f4e1a8;
|
|
@@ -596,13 +591,9 @@ img, video {
|
|
|
596
591
|
.rounded-l-lg {
|
|
597
592
|
border-top-left-radius: .5rem; }
|
|
598
593
|
|
|
599
|
-
.rounded-
|
|
600
|
-
border-
|
|
601
|
-
border-
|
|
602
|
-
|
|
603
|
-
.rounded-t-2xl {
|
|
604
|
-
border-top-left-radius: 1rem;
|
|
605
|
-
border-top-right-radius: 1rem; }
|
|
594
|
+
.rounded-b-xl {
|
|
595
|
+
border-bottom-right-radius: .75rem;
|
|
596
|
+
border-bottom-left-radius: .75rem; }
|
|
606
597
|
|
|
607
598
|
.border-dashed {
|
|
608
599
|
border-style: dashed; }
|
|
@@ -646,9 +637,6 @@ img, video {
|
|
|
646
637
|
.border-t {
|
|
647
638
|
border-top-width: 1px; }
|
|
648
639
|
|
|
649
|
-
.border-r {
|
|
650
|
-
border-right-width: 1px; }
|
|
651
|
-
|
|
652
640
|
.border-b {
|
|
653
641
|
border-bottom-width: 1px; }
|
|
654
642
|
|
|
@@ -855,9 +843,6 @@ img, video {
|
|
|
855
843
|
.h-32 {
|
|
856
844
|
height: 8rem; }
|
|
857
845
|
|
|
858
|
-
.h-48 {
|
|
859
|
-
height: 12rem; }
|
|
860
|
-
|
|
861
846
|
.h-64 {
|
|
862
847
|
height: 16rem; }
|
|
863
848
|
|
|
@@ -867,6 +852,9 @@ img, video {
|
|
|
867
852
|
.h-px {
|
|
868
853
|
height: 1px; }
|
|
869
854
|
|
|
855
|
+
.h-0\.5 {
|
|
856
|
+
height: .125rem; }
|
|
857
|
+
|
|
870
858
|
.h-2\.5 {
|
|
871
859
|
height: .625rem; }
|
|
872
860
|
|
|
@@ -922,6 +910,9 @@ img, video {
|
|
|
922
910
|
.leading-tight {
|
|
923
911
|
line-height: 1.25; }
|
|
924
912
|
|
|
913
|
+
.leading-snug {
|
|
914
|
+
line-height: 1.375; }
|
|
915
|
+
|
|
925
916
|
.leading-relaxed {
|
|
926
917
|
line-height: 1.625; }
|
|
927
918
|
|
|
@@ -976,14 +967,6 @@ img, video {
|
|
|
976
967
|
.min-w-full {
|
|
977
968
|
min-width: 100%; }
|
|
978
969
|
|
|
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
|
-
|
|
987
970
|
.opacity-0 {
|
|
988
971
|
opacity: 0; }
|
|
989
972
|
|
|
@@ -1021,6 +1004,9 @@ img, video {
|
|
|
1021
1004
|
.pointer-events-none {
|
|
1022
1005
|
pointer-events: none; }
|
|
1023
1006
|
|
|
1007
|
+
.pointer-events-auto {
|
|
1008
|
+
pointer-events: auto; }
|
|
1009
|
+
|
|
1024
1010
|
.static {
|
|
1025
1011
|
position: static; }
|
|
1026
1012
|
|
|
@@ -1111,10 +1097,6 @@ img, video {
|
|
|
1111
1097
|
-webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
1112
1098
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
|
|
1113
1099
|
|
|
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
|
-
|
|
1118
1100
|
.fill-current {
|
|
1119
1101
|
fill: currentColor; }
|
|
1120
1102
|
|
|
@@ -1238,9 +1220,6 @@ img, video {
|
|
|
1238
1220
|
.uppercase {
|
|
1239
1221
|
text-transform: uppercase; }
|
|
1240
1222
|
|
|
1241
|
-
.lowercase {
|
|
1242
|
-
text-transform: lowercase; }
|
|
1243
|
-
|
|
1244
1223
|
.capitalize {
|
|
1245
1224
|
text-transform: capitalize; }
|
|
1246
1225
|
|
|
@@ -1258,9 +1237,6 @@ img, video {
|
|
|
1258
1237
|
font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
|
|
1259
1238
|
--font-variant-numeric-spacing:proportional-nums; }
|
|
1260
1239
|
|
|
1261
|
-
.tracking-tighter {
|
|
1262
|
-
letter-spacing: -.05em; }
|
|
1263
|
-
|
|
1264
1240
|
.tracking-tight {
|
|
1265
1241
|
letter-spacing: -.025em; }
|
|
1266
1242
|
|
|
@@ -1435,10 +1411,6 @@ img, video {
|
|
|
1435
1411
|
grid-gap: 1.5rem;
|
|
1436
1412
|
gap: 1.5rem; }
|
|
1437
1413
|
|
|
1438
|
-
.gap-8 {
|
|
1439
|
-
grid-gap: 2rem;
|
|
1440
|
-
gap: 2rem; }
|
|
1441
|
-
|
|
1442
1414
|
.gap-0\.5 {
|
|
1443
1415
|
grid-gap: .125rem;
|
|
1444
1416
|
gap: .125rem; }
|
|
@@ -1613,10 +1585,6 @@ img, video {
|
|
|
1613
1585
|
-webkit-transition-duration: .5s;
|
|
1614
1586
|
transition-duration: .5s; }
|
|
1615
1587
|
|
|
1616
|
-
.duration-700 {
|
|
1617
|
-
-webkit-transition-duration: .7s;
|
|
1618
|
-
transition-duration: .7s; }
|
|
1619
|
-
|
|
1620
1588
|
@-webkit-keyframes spin {
|
|
1621
1589
|
to {
|
|
1622
1590
|
-webkit-transform: rotate(1turn);
|
|
@@ -2574,11 +2542,6 @@ body {
|
|
|
2574
2542
|
color: #5f5c62; }
|
|
2575
2543
|
|
|
2576
2544
|
.drawer-desktop {
|
|
2577
|
-
background-color: #f5eacd;
|
|
2578
|
-
position: fixed;
|
|
2579
|
-
top: 0;
|
|
2580
|
-
bottom: 0;
|
|
2581
|
-
padding-top: 80px;
|
|
2582
2545
|
width: 190px; }
|
|
2583
2546
|
.drawer-desktop .menu-item {
|
|
2584
2547
|
border: 10px;
|
|
@@ -10281,7 +10244,7 @@ body {
|
|
|
10281
10244
|
font-size: var(--base-font-size); }
|
|
10282
10245
|
|
|
10283
10246
|
body, html {
|
|
10284
|
-
font-family: Poppins,sans-serif; }
|
|
10247
|
+
font-family: Poppins, sans-serif !important; }
|
|
10285
10248
|
|
|
10286
10249
|
body {
|
|
10287
10250
|
background-color: #fff;
|
|
@@ -11490,19 +11453,66 @@ body {
|
|
|
11490
11453
|
font-weight: 100; }
|
|
11491
11454
|
|
|
11492
11455
|
.SideBarStatic {
|
|
11493
|
-
overflow:
|
|
11456
|
+
overflow: visible;
|
|
11457
|
+
-ms-flex-negative: 0;
|
|
11458
|
+
flex-shrink: 0; }
|
|
11494
11459
|
|
|
11495
11460
|
.drawer-desktop, .SideBarStatic {
|
|
11496
11461
|
width: 60px;
|
|
11497
|
-
|
|
11498
|
-
|
|
11499
|
-
|
|
11462
|
+
height: 100%;
|
|
11463
|
+
z-index: 100; }
|
|
11464
|
+
|
|
11465
|
+
.drawer-desktop {
|
|
11466
|
+
-webkit-transition: width .3s ease;
|
|
11467
|
+
transition: width .3s ease;
|
|
11468
|
+
overflow: hidden;
|
|
11469
|
+
overflow-y: auto;
|
|
11470
|
+
font-family: Open Sans,sans-serif;
|
|
11471
|
+
background-color: #f5eacd;
|
|
11472
|
+
position: fixed;
|
|
11473
|
+
top: 0;
|
|
11474
|
+
bottom: 0;
|
|
11475
|
+
left: 0;
|
|
11476
|
+
padding-top: 80px;
|
|
11477
|
+
-webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06);
|
|
11478
|
+
box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06); }
|
|
11500
11479
|
|
|
11501
11480
|
.drawer-desktop:hover {
|
|
11502
|
-
width:
|
|
11481
|
+
width: 220px;
|
|
11482
|
+
-webkit-box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
|
|
11483
|
+
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1); }
|
|
11503
11484
|
|
|
11504
|
-
.drawer-desktop
|
|
11505
|
-
display:
|
|
11485
|
+
.drawer-desktop .profile-section {
|
|
11486
|
+
display: -webkit-box;
|
|
11487
|
+
display: -ms-flexbox;
|
|
11488
|
+
display: flex;
|
|
11489
|
+
-webkit-box-orient: vertical;
|
|
11490
|
+
-webkit-box-direction: normal;
|
|
11491
|
+
-ms-flex-direction: column;
|
|
11492
|
+
flex-direction: column;
|
|
11493
|
+
-webkit-box-align: center;
|
|
11494
|
+
-ms-flex-align: center;
|
|
11495
|
+
align-items: center;
|
|
11496
|
+
padding: 16px 8px 0;
|
|
11497
|
+
background-color: initial; }
|
|
11498
|
+
|
|
11499
|
+
.drawer-desktop .profile-section img {
|
|
11500
|
+
width: 36px !important;
|
|
11501
|
+
height: 36px !important;
|
|
11502
|
+
-o-object-fit: cover;
|
|
11503
|
+
object-fit: cover;
|
|
11504
|
+
-o-object-position: center;
|
|
11505
|
+
object-position: center;
|
|
11506
|
+
border-radius: 50%;
|
|
11507
|
+
margin: 0 auto 8px !important;
|
|
11508
|
+
-webkit-transition: width .3s ease,height .3s ease;
|
|
11509
|
+
transition: width .3s ease,height .3s ease;
|
|
11510
|
+
border: 2px solid #c8850a; }
|
|
11511
|
+
|
|
11512
|
+
.drawer-desktop:hover .profile-section img {
|
|
11513
|
+
width: 72px !important;
|
|
11514
|
+
height: 72px !important;
|
|
11515
|
+
margin-bottom: 12px !important; }
|
|
11506
11516
|
|
|
11507
11517
|
.drawer-desktop .profile-section .name-Profile {
|
|
11508
11518
|
display: none; }
|
|
@@ -11510,17 +11520,157 @@ body {
|
|
|
11510
11520
|
.drawer-desktop:hover .profile-section .name-Profile {
|
|
11511
11521
|
display: block; }
|
|
11512
11522
|
|
|
11523
|
+
.drawer-desktop .profile-section .name-Profile .label-text {
|
|
11524
|
+
text-align: center;
|
|
11525
|
+
font-weight: 700;
|
|
11526
|
+
font-size: 15px;
|
|
11527
|
+
color: #0b0c0c;
|
|
11528
|
+
letter-spacing: .3px;
|
|
11529
|
+
line-height: 1.3;
|
|
11530
|
+
white-space: nowrap;
|
|
11531
|
+
overflow: hidden;
|
|
11532
|
+
text-overflow: ellipsis;
|
|
11533
|
+
max-width: 190px; }
|
|
11534
|
+
|
|
11513
11535
|
.drawer-desktop .profile-section .loc-Profile {
|
|
11514
11536
|
display: none; }
|
|
11515
11537
|
|
|
11516
11538
|
.drawer-desktop:hover .profile-section .loc-Profile {
|
|
11517
11539
|
display: block; }
|
|
11518
11540
|
|
|
11519
|
-
.drawer-desktop .profile-section .label-text {
|
|
11520
|
-
text-align: center;
|
|
11541
|
+
.drawer-desktop .profile-section .loc-Profile .label-text {
|
|
11542
|
+
text-align: center;
|
|
11543
|
+
font-size: 13px;
|
|
11544
|
+
color: #767676;
|
|
11545
|
+
white-space: nowrap;
|
|
11546
|
+
overflow: hidden;
|
|
11547
|
+
text-overflow: ellipsis;
|
|
11548
|
+
max-width: 190px; }
|
|
11549
|
+
|
|
11550
|
+
.drawer-desktop .profile-section .profile-divider {
|
|
11551
|
+
display: none; }
|
|
11552
|
+
|
|
11553
|
+
.drawer-desktop:hover .profile-section .profile-divider {
|
|
11554
|
+
display: block;
|
|
11555
|
+
border-top: 1px solid #d6d5d4;
|
|
11556
|
+
width: 85%;
|
|
11557
|
+
margin: 12px auto 4px; }
|
|
11558
|
+
|
|
11559
|
+
.drawer-desktop .sidebar-list {
|
|
11560
|
+
padding: 4px 8px !important;
|
|
11561
|
+
margin: 0;
|
|
11562
|
+
border-left: none !important; }
|
|
11563
|
+
|
|
11564
|
+
.drawer-desktop .sidebar-list.active {
|
|
11565
|
+
border-left: none !important;
|
|
11566
|
+
padding-left: 8px !important; }
|
|
11567
|
+
|
|
11568
|
+
.drawer-desktop .sidebar-list.active .menu-label {
|
|
11569
|
+
color: #b08905;
|
|
11570
|
+
font-weight: 600; }
|
|
11571
|
+
|
|
11572
|
+
.drawer-desktop .sidebar-list.active .icon {
|
|
11573
|
+
fill: #b08905 !important;
|
|
11574
|
+
color: #b08905 !important; }
|
|
11575
|
+
|
|
11576
|
+
.drawer-desktop .menu-item {
|
|
11577
|
+
display: -webkit-box !important;
|
|
11578
|
+
display: -ms-flexbox !important;
|
|
11579
|
+
display: flex !important;
|
|
11580
|
+
-webkit-box-align: center;
|
|
11581
|
+
-ms-flex-align: center;
|
|
11582
|
+
align-items: center;
|
|
11583
|
+
min-height: 42px;
|
|
11584
|
+
line-height: 42px;
|
|
11585
|
+
padding: 0;
|
|
11586
|
+
cursor: pointer;
|
|
11587
|
+
border-radius: 10px;
|
|
11588
|
+
-webkit-transition: background-color .2s ease;
|
|
11589
|
+
transition: background-color .2s ease; }
|
|
11590
|
+
|
|
11591
|
+
.drawer-desktop .menu-item:hover {
|
|
11592
|
+
background-color: rgba(200, 133, 10, 0.08); }
|
|
11593
|
+
|
|
11594
|
+
.drawer-desktop .sidebar-list.active .menu-item {
|
|
11595
|
+
background-color: rgba(176, 137, 5, 0.14); }
|
|
11596
|
+
|
|
11597
|
+
.drawer-desktop .menu-item .icon {
|
|
11598
|
+
display: -webkit-box !important;
|
|
11599
|
+
display: -ms-flexbox !important;
|
|
11600
|
+
display: flex !important;
|
|
11601
|
+
-webkit-box-align: center;
|
|
11602
|
+
-ms-flex-align: center;
|
|
11603
|
+
align-items: center;
|
|
11604
|
+
-webkit-box-pack: center;
|
|
11605
|
+
-ms-flex-pack: center;
|
|
11606
|
+
justify-content: center;
|
|
11607
|
+
float: none !important;
|
|
11608
|
+
width: 21px !important;
|
|
11609
|
+
height: 21px !important;
|
|
11610
|
+
min-width: 21px;
|
|
11611
|
+
margin: 0 11px !important;
|
|
11612
|
+
fill: #757575;
|
|
11613
|
+
color: #757575;
|
|
11614
|
+
-webkit-transition: fill .2s ease,color .2s ease,margin .3s ease;
|
|
11615
|
+
transition: fill .2s ease,color .2s ease,margin .3s ease; }
|
|
11616
|
+
|
|
11617
|
+
.drawer-desktop .menu-item .menu-label {
|
|
11618
|
+
display: none;
|
|
11619
|
+
margin-left: 0;
|
|
11620
|
+
font-size: 14px;
|
|
11621
|
+
color: #5f5c62;
|
|
11622
|
+
white-space: normal !important;
|
|
11623
|
+
word-wrap: break-word;
|
|
11624
|
+
overflow: visible !important;
|
|
11625
|
+
text-overflow: unset !important;
|
|
11626
|
+
line-height: 1.3; }
|
|
11627
|
+
|
|
11628
|
+
.drawer-desktop:hover .menu-item .menu-label {
|
|
11629
|
+
display: block; }
|
|
11630
|
+
|
|
11631
|
+
.drawer-desktop:hover .menu-item .icon {
|
|
11632
|
+
margin-left: 12px !important;
|
|
11633
|
+
margin-right: 10px !important; }
|
|
11634
|
+
|
|
11635
|
+
.drawer-desktop:hover .sidebar-list.active {
|
|
11636
|
+
border-left: 3px solid #b08905;
|
|
11637
|
+
padding-left: 5px;
|
|
11638
|
+
border-radius: 0 10px 10px 0; }
|
|
11639
|
+
|
|
11640
|
+
.drawer-desktop::-webkit-scrollbar {
|
|
11641
|
+
width: 4px; }
|
|
11642
|
+
|
|
11643
|
+
.drawer-desktop::-webkit-scrollbar-track {
|
|
11644
|
+
background: transparent; }
|
|
11645
|
+
|
|
11646
|
+
.drawer-desktop::-webkit-scrollbar-thumb {
|
|
11647
|
+
background-color: rgba(176, 137, 5, 0.3);
|
|
11648
|
+
border-radius: 4px; }
|
|
11649
|
+
|
|
11650
|
+
.drawer-desktop::-webkit-scrollbar-thumb:hover {
|
|
11651
|
+
background-color: rgba(176, 137, 5, 0.5); }
|
|
11652
|
+
|
|
11653
|
+
.drawer-desktop .sidebar-list a {
|
|
11654
|
+
text-decoration: none;
|
|
11655
|
+
color: inherit;
|
|
11656
|
+
display: block;
|
|
11657
|
+
width: 100%; }
|
|
11521
11658
|
|
|
11522
|
-
.
|
|
11523
|
-
|
|
11659
|
+
.drawer-desktop .drawer-menu-list {
|
|
11660
|
+
padding-top: 4px;
|
|
11661
|
+
background-color: #f5eacd; }
|
|
11662
|
+
|
|
11663
|
+
@media (min-width: 780px) {
|
|
11664
|
+
.SideBarStatic {
|
|
11665
|
+
width: 60px;
|
|
11666
|
+
background: transparent;
|
|
11667
|
+
margin-top: -24px; }
|
|
11668
|
+
.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 {
|
|
11669
|
+
width: calc(100% - 60px) !important; } }
|
|
11670
|
+
|
|
11671
|
+
@media (max-width: 780px) {
|
|
11672
|
+
.SideBarStatic {
|
|
11673
|
+
display: none; } }
|
|
11524
11674
|
|
|
11525
11675
|
.card p.message-text, .card-emp p.message-text {
|
|
11526
11676
|
font-size: 14px;
|
|
@@ -11796,6 +11946,175 @@ button.submit-bar:hover {
|
|
|
11796
11946
|
width: auto;
|
|
11797
11947
|
padding: 0; }
|
|
11798
11948
|
|
|
11949
|
+
.deonar-flowchart .employee .ground-container {
|
|
11950
|
+
margin-bottom: 0 !important; }
|
|
11951
|
+
|
|
11952
|
+
.flowchart-header {
|
|
11953
|
+
--r:70px;
|
|
11954
|
+
line-height: 3;
|
|
11955
|
+
padding-left: 1em;
|
|
11956
|
+
padding-right: 1em;
|
|
11957
|
+
border-left: var(--r) solid transparent;
|
|
11958
|
+
border-right: var(--r) solid transparent;
|
|
11959
|
+
border-radius: calc(var(--r)*2) calc(var(--r)*2) 0 0/var(--r);
|
|
11960
|
+
-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;
|
|
11961
|
+
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;
|
|
11962
|
+
-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;
|
|
11963
|
+
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;
|
|
11964
|
+
background: #bd5532 border-box;
|
|
11965
|
+
width: -webkit-fit-content;
|
|
11966
|
+
width: -moz-fit-content;
|
|
11967
|
+
width: fit-content;
|
|
11968
|
+
background-color: #e57400;
|
|
11969
|
+
color: #fff;
|
|
11970
|
+
font-weight: 700; }
|
|
11971
|
+
|
|
11972
|
+
.verify-receipt-page .citizen .main {
|
|
11973
|
+
width: 100%;
|
|
11974
|
+
padding-top: 82px;
|
|
11975
|
+
-webkit-box-pack: center;
|
|
11976
|
+
-ms-flex-pack: center;
|
|
11977
|
+
justify-content: center; }
|
|
11978
|
+
|
|
11979
|
+
.verify-receipt-page .verify-reciept-main {
|
|
11980
|
+
max-width: 700px;
|
|
11981
|
+
width: 100%;
|
|
11982
|
+
padding: 12px;
|
|
11983
|
+
background-color: #f3f4f6;
|
|
11984
|
+
-webkit-box-sizing: border-box;
|
|
11985
|
+
box-sizing: border-box; }
|
|
11986
|
+
|
|
11987
|
+
.verify-receipt-page .verify-reciept-card {
|
|
11988
|
+
padding: 16px;
|
|
11989
|
+
border-radius: 12px;
|
|
11990
|
+
-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
11991
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
11992
|
+
background-color: #fff;
|
|
11993
|
+
width: 100%;
|
|
11994
|
+
-webkit-box-sizing: border-box;
|
|
11995
|
+
box-sizing: border-box;
|
|
11996
|
+
overflow-x: hidden; }
|
|
11997
|
+
|
|
11998
|
+
.verify-receipt-page .verify-reciept-card-header {
|
|
11999
|
+
color: #1f2937;
|
|
12000
|
+
border-bottom: 1px solid #e5e7eb;
|
|
12001
|
+
padding-bottom: 12px;
|
|
12002
|
+
margin-bottom: 16px;
|
|
12003
|
+
font-size: clamp(16px, 4vw, 20px);
|
|
12004
|
+
font-weight: 700;
|
|
12005
|
+
display: -webkit-box;
|
|
12006
|
+
display: -ms-flexbox;
|
|
12007
|
+
display: flex;
|
|
12008
|
+
-webkit-box-align: center;
|
|
12009
|
+
-ms-flex-align: center;
|
|
12010
|
+
align-items: center;
|
|
12011
|
+
grid-gap: 8px;
|
|
12012
|
+
gap: 8px; }
|
|
12013
|
+
|
|
12014
|
+
.verify-receipt-page .verify-reciept-header-icon {
|
|
12015
|
+
width: 28px;
|
|
12016
|
+
height: 28px;
|
|
12017
|
+
border-radius: 50%;
|
|
12018
|
+
background-color: #2563eb;
|
|
12019
|
+
display: -webkit-inline-box;
|
|
12020
|
+
display: -ms-inline-flexbox;
|
|
12021
|
+
display: inline-flex;
|
|
12022
|
+
-webkit-box-align: center;
|
|
12023
|
+
-ms-flex-align: center;
|
|
12024
|
+
align-items: center;
|
|
12025
|
+
-webkit-box-pack: center;
|
|
12026
|
+
-ms-flex-pack: center;
|
|
12027
|
+
justify-content: center;
|
|
12028
|
+
-ms-flex-negative: 0;
|
|
12029
|
+
flex-shrink: 0; }
|
|
12030
|
+
|
|
12031
|
+
.verify-receipt-page .verify-reciept-row {
|
|
12032
|
+
display: -webkit-box;
|
|
12033
|
+
display: -ms-flexbox;
|
|
12034
|
+
display: flex;
|
|
12035
|
+
-webkit-box-orient: horizontal;
|
|
12036
|
+
-webkit-box-direction: normal;
|
|
12037
|
+
-ms-flex-direction: row;
|
|
12038
|
+
flex-direction: row;
|
|
12039
|
+
-webkit-box-pack: justify;
|
|
12040
|
+
-ms-flex-pack: justify;
|
|
12041
|
+
justify-content: space-between;
|
|
12042
|
+
-webkit-box-align: start;
|
|
12043
|
+
-ms-flex-align: start;
|
|
12044
|
+
align-items: flex-start;
|
|
12045
|
+
padding: 10px 0;
|
|
12046
|
+
border-bottom: 1px solid #f3f4f6;
|
|
12047
|
+
grid-gap: 8px;
|
|
12048
|
+
gap: 8px;
|
|
12049
|
+
-ms-flex-wrap: wrap;
|
|
12050
|
+
flex-wrap: wrap; }
|
|
12051
|
+
|
|
12052
|
+
.verify-receipt-page .verify-reciept-row.last {
|
|
12053
|
+
border-bottom: none; }
|
|
12054
|
+
|
|
12055
|
+
.verify-receipt-page .verify-reciept-label {
|
|
12056
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
12057
|
+
color: #6b7280;
|
|
12058
|
+
font-weight: 500;
|
|
12059
|
+
-webkit-box-flex: 1;
|
|
12060
|
+
-ms-flex: 1 1 40%;
|
|
12061
|
+
flex: 1 1 40%;
|
|
12062
|
+
min-width: 120px; }
|
|
12063
|
+
|
|
12064
|
+
.verify-receipt-page .verify-reciept-value {
|
|
12065
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
12066
|
+
color: #1f2937;
|
|
12067
|
+
font-weight: 400;
|
|
12068
|
+
-webkit-box-flex: 1;
|
|
12069
|
+
-ms-flex: 1 1 50%;
|
|
12070
|
+
flex: 1 1 50%;
|
|
12071
|
+
text-align: right;
|
|
12072
|
+
word-break: break-word; }
|
|
12073
|
+
|
|
12074
|
+
.verify-receipt-page .verify-reciept-value.bold {
|
|
12075
|
+
font-weight: 600; }
|
|
12076
|
+
|
|
12077
|
+
.verify-receipt-page .verify-reciept-badge {
|
|
12078
|
+
font-weight: 700;
|
|
12079
|
+
color: #2563eb;
|
|
12080
|
+
font-size: clamp(13px, 3.5vw, 15px);
|
|
12081
|
+
background: #eff6ff;
|
|
12082
|
+
padding: 2px 8px;
|
|
12083
|
+
border-radius: 6px;
|
|
12084
|
+
display: inline-block; }
|
|
12085
|
+
|
|
12086
|
+
.verify-receipt-page .verify-reciept-amount {
|
|
12087
|
+
color: #059669;
|
|
12088
|
+
font-weight: 700;
|
|
12089
|
+
font-size: clamp(14px, 4vw, 18px); }
|
|
12090
|
+
|
|
12091
|
+
.verify-receipt-page .verify-reciept-error-card {
|
|
12092
|
+
padding: 20px;
|
|
12093
|
+
border-radius: 12px;
|
|
12094
|
+
margin: 16px;
|
|
12095
|
+
background-color: #fff5f5;
|
|
12096
|
+
border: 1px solid #fecaca; }
|
|
12097
|
+
|
|
12098
|
+
.verify-receipt-page .verify-reciept-error-label {
|
|
12099
|
+
color: #dc2626;
|
|
12100
|
+
font-weight: 600;
|
|
12101
|
+
text-align: center;
|
|
12102
|
+
font-size: clamp(13px, 3.5vw, 15px); }
|
|
12103
|
+
|
|
12104
|
+
.verify-receipt-page .verify-reciept-section-title {
|
|
12105
|
+
font-size: 11px;
|
|
12106
|
+
font-weight: 600;
|
|
12107
|
+
color: #9ca3af;
|
|
12108
|
+
text-transform: uppercase;
|
|
12109
|
+
letter-spacing: .08em;
|
|
12110
|
+
padding: 10px 0 4px; }
|
|
12111
|
+
|
|
12112
|
+
.add-citizen-form-fields .bmc-col3-card {
|
|
12113
|
+
width: 100%; }
|
|
12114
|
+
|
|
12115
|
+
.deonar-modal-close-btn-wrapper svg {
|
|
12116
|
+
fill: #fff; }
|
|
12117
|
+
|
|
11799
12118
|
@media screen and (max-width: 320px) {
|
|
11800
12119
|
.mobile-CardWrapper {
|
|
11801
12120
|
min-height: 30vh; }
|
|
@@ -11849,6 +12168,12 @@ button.submit-bar:hover {
|
|
|
11849
12168
|
-webkit-transform: rotate(1turn);
|
|
11850
12169
|
transform: rotate(1turn); } }
|
|
11851
12170
|
|
|
12171
|
+
@media screen and (max-width: 400px) {
|
|
12172
|
+
.verify-receipt-page .verify-reciept-value {
|
|
12173
|
+
text-align: left; }
|
|
12174
|
+
.verify-receipt-page .citizen .main {
|
|
12175
|
+
padding-top: 60px; } }
|
|
12176
|
+
|
|
11852
12177
|
@media (max-width: 768px) {
|
|
11853
12178
|
.deonar-security {
|
|
11854
12179
|
display: -webkit-box;
|
|
@@ -12581,17 +12906,16 @@ body {
|
|
|
12581
12906
|
|
|
12582
12907
|
.inventory_form-input, .inventory_form-select, .inventory_form-textarea {
|
|
12583
12908
|
width: 100%;
|
|
12584
|
-
padding:
|
|
12585
|
-
border:
|
|
12586
|
-
border:
|
|
12587
|
-
|
|
12588
|
-
font-size: 1rem;
|
|
12909
|
+
padding: 10px;
|
|
12910
|
+
border: 1px solid #000;
|
|
12911
|
+
border-radius: 0;
|
|
12912
|
+
font-size: 16px;
|
|
12589
12913
|
-webkit-transition: all .3s ease;
|
|
12590
12914
|
transition: all .3s ease;
|
|
12591
|
-
background: #
|
|
12592
|
-
color: #
|
|
12593
|
-
|
|
12594
|
-
|
|
12915
|
+
background: #e8f0fe;
|
|
12916
|
+
color: #000;
|
|
12917
|
+
line-height: normal;
|
|
12918
|
+
height: 44px; }
|
|
12595
12919
|
|
|
12596
12920
|
.inventory_form-input:focus, .inventory_form-select:focus, .inventory_form-textarea:focus {
|
|
12597
12921
|
outline: none;
|