@tattvafoundation/upyog-css 1.0.41 → 1.0.42
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 +209 -59
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/bmc.scss +241 -18
- package/src/components/inventory.scss +7 -6
package/dist/index.css
CHANGED
|
@@ -324,11 +324,6 @@ 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
|
-
|
|
332
327
|
.bg-primary-400 {
|
|
333
328
|
--bg-opacity:1;
|
|
334
329
|
background-color: #e5b449;
|
|
@@ -492,11 +487,6 @@ img, video {
|
|
|
492
487
|
.border-collapse {
|
|
493
488
|
border-collapse: collapse; }
|
|
494
489
|
|
|
495
|
-
.border-primary-100 {
|
|
496
|
-
--border-opacity:1;
|
|
497
|
-
border-color: #faf1d4;
|
|
498
|
-
border-color: rgba(250, 241, 212, var(--border-opacity)); }
|
|
499
|
-
|
|
500
490
|
.border-primary-200 {
|
|
501
491
|
--border-opacity:1;
|
|
502
492
|
border-color: #f4e1a8;
|
|
@@ -596,10 +586,6 @@ img, video {
|
|
|
596
586
|
.rounded-l-lg {
|
|
597
587
|
border-top-left-radius: .5rem; }
|
|
598
588
|
|
|
599
|
-
.rounded-t-xl {
|
|
600
|
-
border-top-left-radius: .75rem;
|
|
601
|
-
border-top-right-radius: .75rem; }
|
|
602
|
-
|
|
603
589
|
.rounded-t-2xl {
|
|
604
590
|
border-top-left-radius: 1rem;
|
|
605
591
|
border-top-right-radius: 1rem; }
|
|
@@ -979,14 +965,6 @@ img, video {
|
|
|
979
965
|
.min-w-full {
|
|
980
966
|
min-width: 100%; }
|
|
981
967
|
|
|
982
|
-
.object-cover {
|
|
983
|
-
-o-object-fit: cover;
|
|
984
|
-
object-fit: cover; }
|
|
985
|
-
|
|
986
|
-
.object-center {
|
|
987
|
-
-o-object-position: center;
|
|
988
|
-
object-position: center; }
|
|
989
|
-
|
|
990
968
|
.opacity-0 {
|
|
991
969
|
opacity: 0; }
|
|
992
970
|
|
|
@@ -1024,6 +1002,9 @@ img, video {
|
|
|
1024
1002
|
.pointer-events-none {
|
|
1025
1003
|
pointer-events: none; }
|
|
1026
1004
|
|
|
1005
|
+
.pointer-events-auto {
|
|
1006
|
+
pointer-events: auto; }
|
|
1007
|
+
|
|
1027
1008
|
.static {
|
|
1028
1009
|
position: static; }
|
|
1029
1010
|
|
|
@@ -1114,10 +1095,6 @@ img, video {
|
|
|
1114
1095
|
-webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
1115
1096
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
|
|
1116
1097
|
|
|
1117
|
-
.hover\:shadow-2xl:hover {
|
|
1118
|
-
-webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
|
1119
|
-
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
|
|
1120
|
-
|
|
1121
1098
|
.fill-current {
|
|
1122
1099
|
fill: currentColor; }
|
|
1123
1100
|
|
|
@@ -1441,10 +1418,6 @@ img, video {
|
|
|
1441
1418
|
grid-gap: 1.5rem;
|
|
1442
1419
|
gap: 1.5rem; }
|
|
1443
1420
|
|
|
1444
|
-
.gap-8 {
|
|
1445
|
-
grid-gap: 2rem;
|
|
1446
|
-
gap: 2rem; }
|
|
1447
|
-
|
|
1448
1421
|
.gap-0\.5 {
|
|
1449
1422
|
grid-gap: .125rem;
|
|
1450
1423
|
gap: .125rem; }
|
|
@@ -1619,10 +1592,6 @@ img, video {
|
|
|
1619
1592
|
-webkit-transition-duration: .5s;
|
|
1620
1593
|
transition-duration: .5s; }
|
|
1621
1594
|
|
|
1622
|
-
.duration-700 {
|
|
1623
|
-
-webkit-transition-duration: .7s;
|
|
1624
|
-
transition-duration: .7s; }
|
|
1625
|
-
|
|
1626
1595
|
@-webkit-keyframes spin {
|
|
1627
1596
|
to {
|
|
1628
1597
|
-webkit-transform: rotate(1turn);
|
|
@@ -2580,11 +2549,6 @@ body {
|
|
|
2580
2549
|
color: #5f5c62; }
|
|
2581
2550
|
|
|
2582
2551
|
.drawer-desktop {
|
|
2583
|
-
background-color: #f5eacd;
|
|
2584
|
-
position: fixed;
|
|
2585
|
-
top: 0;
|
|
2586
|
-
bottom: 0;
|
|
2587
|
-
padding-top: 80px;
|
|
2588
2552
|
width: 190px; }
|
|
2589
2553
|
.drawer-desktop .menu-item {
|
|
2590
2554
|
border: 10px;
|
|
@@ -11496,19 +11460,66 @@ body {
|
|
|
11496
11460
|
font-weight: 100; }
|
|
11497
11461
|
|
|
11498
11462
|
.SideBarStatic {
|
|
11499
|
-
overflow:
|
|
11463
|
+
overflow: visible;
|
|
11464
|
+
-ms-flex-negative: 0;
|
|
11465
|
+
flex-shrink: 0; }
|
|
11500
11466
|
|
|
11501
11467
|
.drawer-desktop, .SideBarStatic {
|
|
11502
11468
|
width: 60px;
|
|
11503
|
-
|
|
11504
|
-
|
|
11505
|
-
|
|
11469
|
+
height: 100%;
|
|
11470
|
+
z-index: 100; }
|
|
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); }
|
|
11506
11486
|
|
|
11507
11487
|
.drawer-desktop:hover {
|
|
11508
|
-
width:
|
|
11488
|
+
width: 220px;
|
|
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); }
|
|
11509
11491
|
|
|
11510
|
-
.drawer-desktop
|
|
11511
|
-
display:
|
|
11492
|
+
.drawer-desktop .profile-section {
|
|
11493
|
+
display: -webkit-box;
|
|
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; }
|
|
11512
11523
|
|
|
11513
11524
|
.drawer-desktop .profile-section .name-Profile {
|
|
11514
11525
|
display: none; }
|
|
@@ -11516,17 +11527,157 @@ body {
|
|
|
11516
11527
|
.drawer-desktop:hover .profile-section .name-Profile {
|
|
11517
11528
|
display: block; }
|
|
11518
11529
|
|
|
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
|
+
|
|
11519
11542
|
.drawer-desktop .profile-section .loc-Profile {
|
|
11520
11543
|
display: none; }
|
|
11521
11544
|
|
|
11522
11545
|
.drawer-desktop:hover .profile-section .loc-Profile {
|
|
11523
11546
|
display: block; }
|
|
11524
11547
|
|
|
11525
|
-
.drawer-desktop .profile-section .label-text {
|
|
11526
|
-
text-align: center;
|
|
11548
|
+
.drawer-desktop .profile-section .loc-Profile .label-text {
|
|
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; }
|
|
11527
11556
|
|
|
11528
|
-
.
|
|
11529
|
-
|
|
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; } }
|
|
11677
|
+
|
|
11678
|
+
@media (max-width: 780px) {
|
|
11679
|
+
.SideBarStatic {
|
|
11680
|
+
display: none; } }
|
|
11530
11681
|
|
|
11531
11682
|
.card p.message-text, .card-emp p.message-text {
|
|
11532
11683
|
font-size: 14px;
|
|
@@ -12756,17 +12907,16 @@ body {
|
|
|
12756
12907
|
|
|
12757
12908
|
.inventory_form-input, .inventory_form-select, .inventory_form-textarea {
|
|
12758
12909
|
width: 100%;
|
|
12759
|
-
padding:
|
|
12760
|
-
border:
|
|
12761
|
-
border:
|
|
12762
|
-
|
|
12763
|
-
font-size: 1rem;
|
|
12910
|
+
padding: 10px;
|
|
12911
|
+
border: 1px solid #000;
|
|
12912
|
+
border-radius: 0;
|
|
12913
|
+
font-size: 16px;
|
|
12764
12914
|
-webkit-transition: all .3s ease;
|
|
12765
12915
|
transition: all .3s ease;
|
|
12766
|
-
background: #
|
|
12767
|
-
color: #
|
|
12768
|
-
|
|
12769
|
-
|
|
12916
|
+
background: #e8f0fe;
|
|
12917
|
+
color: #000;
|
|
12918
|
+
line-height: normal;
|
|
12919
|
+
height: 44px; }
|
|
12770
12920
|
|
|
12771
12921
|
.inventory_form-input:focus, .inventory_form-select:focus, .inventory_form-textarea:focus {
|
|
12772
12922
|
outline: none;
|