@tattvafoundation/upyog-css 1.0.43 → 1.0.45
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 +720 -156
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/PropertySearchForm.scss +1 -1
- package/src/components/bmc.scss +675 -19
- package/src/components/hoc/InboxComposer.scss +1 -1
- package/src/components/inventory.scss +44 -24
- package/src/pages/citizen/DocumentList.scss +1 -1
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;
|
|
@@ -527,11 +522,6 @@ img, video {
|
|
|
527
522
|
border-color: #d6d5d4;
|
|
528
523
|
border-color: rgba(214, 213, 212, var(--border-opacity)); }
|
|
529
524
|
|
|
530
|
-
.border-white {
|
|
531
|
-
--border-opacity:1;
|
|
532
|
-
border-color: #fff;
|
|
533
|
-
border-color: rgba(255, 255, 255, var(--border-opacity)); }
|
|
534
|
-
|
|
535
525
|
.border-accent-red {
|
|
536
526
|
--border-opacity:1;
|
|
537
527
|
border-color: #940202;
|
|
@@ -596,13 +586,9 @@ img, video {
|
|
|
596
586
|
.rounded-l-lg {
|
|
597
587
|
border-top-left-radius: .5rem; }
|
|
598
588
|
|
|
599
|
-
.rounded-
|
|
600
|
-
border-
|
|
601
|
-
border-
|
|
602
|
-
|
|
603
|
-
.rounded-t-2xl {
|
|
604
|
-
border-top-left-radius: 1rem;
|
|
605
|
-
border-top-right-radius: 1rem; }
|
|
589
|
+
.rounded-b-xl {
|
|
590
|
+
border-bottom-right-radius: .75rem;
|
|
591
|
+
border-bottom-left-radius: .75rem; }
|
|
606
592
|
|
|
607
593
|
.border-dashed {
|
|
608
594
|
border-style: dashed; }
|
|
@@ -646,12 +632,12 @@ img, video {
|
|
|
646
632
|
.border-t {
|
|
647
633
|
border-top-width: 1px; }
|
|
648
634
|
|
|
649
|
-
.border-r {
|
|
650
|
-
border-right-width: 1px; }
|
|
651
|
-
|
|
652
635
|
.border-b {
|
|
653
636
|
border-bottom-width: 1px; }
|
|
654
637
|
|
|
638
|
+
.border-l {
|
|
639
|
+
border-left-width: 1px; }
|
|
640
|
+
|
|
655
641
|
.cursor-default {
|
|
656
642
|
cursor: default; }
|
|
657
643
|
|
|
@@ -855,9 +841,6 @@ img, video {
|
|
|
855
841
|
.h-32 {
|
|
856
842
|
height: 8rem; }
|
|
857
843
|
|
|
858
|
-
.h-48 {
|
|
859
|
-
height: 12rem; }
|
|
860
|
-
|
|
861
844
|
.h-64 {
|
|
862
845
|
height: 16rem; }
|
|
863
846
|
|
|
@@ -867,6 +850,9 @@ img, video {
|
|
|
867
850
|
.h-px {
|
|
868
851
|
height: 1px; }
|
|
869
852
|
|
|
853
|
+
.h-0\.5 {
|
|
854
|
+
height: .125rem; }
|
|
855
|
+
|
|
870
856
|
.h-2\.5 {
|
|
871
857
|
height: .625rem; }
|
|
872
858
|
|
|
@@ -922,6 +908,9 @@ img, video {
|
|
|
922
908
|
.leading-tight {
|
|
923
909
|
line-height: 1.25; }
|
|
924
910
|
|
|
911
|
+
.leading-snug {
|
|
912
|
+
line-height: 1.375; }
|
|
913
|
+
|
|
925
914
|
.leading-relaxed {
|
|
926
915
|
line-height: 1.625; }
|
|
927
916
|
|
|
@@ -976,13 +965,9 @@ img, video {
|
|
|
976
965
|
.min-w-full {
|
|
977
966
|
min-width: 100%; }
|
|
978
967
|
|
|
979
|
-
.object-
|
|
980
|
-
-o-object-fit:
|
|
981
|
-
object-fit:
|
|
982
|
-
|
|
983
|
-
.object-center {
|
|
984
|
-
-o-object-position: center;
|
|
985
|
-
object-position: center; }
|
|
968
|
+
.object-contain {
|
|
969
|
+
-o-object-fit: contain;
|
|
970
|
+
object-fit: contain; }
|
|
986
971
|
|
|
987
972
|
.opacity-0 {
|
|
988
973
|
opacity: 0; }
|
|
@@ -996,7 +981,7 @@ img, video {
|
|
|
996
981
|
.opacity-75 {
|
|
997
982
|
opacity: .75; }
|
|
998
983
|
|
|
999
|
-
.
|
|
984
|
+
.opacity-100 {
|
|
1000
985
|
opacity: 1; }
|
|
1001
986
|
|
|
1002
987
|
.focus\:outline-none:focus, .outline-none {
|
|
@@ -1021,6 +1006,9 @@ img, video {
|
|
|
1021
1006
|
.pointer-events-none {
|
|
1022
1007
|
pointer-events: none; }
|
|
1023
1008
|
|
|
1009
|
+
.pointer-events-auto {
|
|
1010
|
+
pointer-events: auto; }
|
|
1011
|
+
|
|
1024
1012
|
.static {
|
|
1025
1013
|
position: static; }
|
|
1026
1014
|
|
|
@@ -1111,9 +1099,9 @@ img, video {
|
|
|
1111
1099
|
-webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
1112
1100
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
|
|
1113
1101
|
|
|
1114
|
-
.hover\:shadow-
|
|
1115
|
-
-webkit-box-shadow:
|
|
1116
|
-
box-shadow:
|
|
1102
|
+
.hover\:shadow-none:hover {
|
|
1103
|
+
-webkit-box-shadow: none;
|
|
1104
|
+
box-shadow: none; }
|
|
1117
1105
|
|
|
1118
1106
|
.fill-current {
|
|
1119
1107
|
fill: currentColor; }
|
|
@@ -1238,9 +1226,6 @@ img, video {
|
|
|
1238
1226
|
.uppercase {
|
|
1239
1227
|
text-transform: uppercase; }
|
|
1240
1228
|
|
|
1241
|
-
.lowercase {
|
|
1242
|
-
text-transform: lowercase; }
|
|
1243
|
-
|
|
1244
1229
|
.capitalize {
|
|
1245
1230
|
text-transform: capitalize; }
|
|
1246
1231
|
|
|
@@ -1258,9 +1243,6 @@ img, video {
|
|
|
1258
1243
|
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
1244
|
--font-variant-numeric-spacing:proportional-nums; }
|
|
1260
1245
|
|
|
1261
|
-
.tracking-tighter {
|
|
1262
|
-
letter-spacing: -.05em; }
|
|
1263
|
-
|
|
1264
1246
|
.tracking-tight {
|
|
1265
1247
|
letter-spacing: -.025em; }
|
|
1266
1248
|
|
|
@@ -1291,6 +1273,9 @@ img, video {
|
|
|
1291
1273
|
.whitespace-normal {
|
|
1292
1274
|
white-space: normal; }
|
|
1293
1275
|
|
|
1276
|
+
.whitespace-pre-line {
|
|
1277
|
+
white-space: pre-line; }
|
|
1278
|
+
|
|
1294
1279
|
.whitespace-pre-wrap {
|
|
1295
1280
|
white-space: pre-wrap; }
|
|
1296
1281
|
|
|
@@ -1402,9 +1387,6 @@ img, video {
|
|
|
1402
1387
|
.z-20 {
|
|
1403
1388
|
z-index: 20; }
|
|
1404
1389
|
|
|
1405
|
-
.z-40 {
|
|
1406
|
-
z-index: 40; }
|
|
1407
|
-
|
|
1408
1390
|
.z-50 {
|
|
1409
1391
|
z-index: 50; }
|
|
1410
1392
|
|
|
@@ -1435,10 +1417,6 @@ img, video {
|
|
|
1435
1417
|
grid-gap: 1.5rem;
|
|
1436
1418
|
gap: 1.5rem; }
|
|
1437
1419
|
|
|
1438
|
-
.gap-8 {
|
|
1439
|
-
grid-gap: 2rem;
|
|
1440
|
-
gap: 2rem; }
|
|
1441
|
-
|
|
1442
1420
|
.gap-0\.5 {
|
|
1443
1421
|
grid-gap: .125rem;
|
|
1444
1422
|
gap: .125rem; }
|
|
@@ -1521,10 +1499,6 @@ img, video {
|
|
|
1521
1499
|
--transform-scale-x:.95;
|
|
1522
1500
|
--transform-scale-y:.95; }
|
|
1523
1501
|
|
|
1524
|
-
.scale-100 {
|
|
1525
|
-
--transform-scale-x:1;
|
|
1526
|
-
--transform-scale-y:1; }
|
|
1527
|
-
|
|
1528
1502
|
.hover\:scale-105:hover {
|
|
1529
1503
|
--transform-scale-x:1.05;
|
|
1530
1504
|
--transform-scale-y:1.05; }
|
|
@@ -1613,10 +1587,6 @@ img, video {
|
|
|
1613
1587
|
-webkit-transition-duration: .5s;
|
|
1614
1588
|
transition-duration: .5s; }
|
|
1615
1589
|
|
|
1616
|
-
.duration-700 {
|
|
1617
|
-
-webkit-transition-duration: .7s;
|
|
1618
|
-
transition-duration: .7s; }
|
|
1619
|
-
|
|
1620
1590
|
@-webkit-keyframes spin {
|
|
1621
1591
|
to {
|
|
1622
1592
|
-webkit-transform: rotate(1turn);
|
|
@@ -2574,11 +2544,6 @@ body {
|
|
|
2574
2544
|
color: #5f5c62; }
|
|
2575
2545
|
|
|
2576
2546
|
.drawer-desktop {
|
|
2577
|
-
background-color: #f5eacd;
|
|
2578
|
-
position: fixed;
|
|
2579
|
-
top: 0;
|
|
2580
|
-
bottom: 0;
|
|
2581
|
-
padding-top: 80px;
|
|
2582
2547
|
width: 190px; }
|
|
2583
2548
|
.drawer-desktop .menu-item {
|
|
2584
2549
|
border: 10px;
|
|
@@ -6078,7 +6043,7 @@ video::-webkit-media-controls-panel {
|
|
|
6078
6043
|
margin-right: 10px;
|
|
6079
6044
|
-webkit-box-pack: end;
|
|
6080
6045
|
-ms-flex-pack: end;
|
|
6081
|
-
justify-content: end;
|
|
6046
|
+
justify-content: flex-end;
|
|
6082
6047
|
-webkit-box-align: center;
|
|
6083
6048
|
-ms-flex-align: center;
|
|
6084
6049
|
align-items: center; }
|
|
@@ -6727,7 +6692,7 @@ video::-webkit-media-controls-panel {
|
|
|
6727
6692
|
display: flex;
|
|
6728
6693
|
-webkit-box-pack: end;
|
|
6729
6694
|
-ms-flex-pack: end;
|
|
6730
|
-
justify-content: end;
|
|
6695
|
+
justify-content: flex-end;
|
|
6731
6696
|
-webkit-box-align: center;
|
|
6732
6697
|
-ms-flex-align: center;
|
|
6733
6698
|
align-items: center; }
|
|
@@ -9548,7 +9513,7 @@ body {
|
|
|
9548
9513
|
gap: 8px;
|
|
9549
9514
|
-webkit-box-align: end;
|
|
9550
9515
|
-ms-flex-align: end;
|
|
9551
|
-
align-items: end; }
|
|
9516
|
+
align-items: flex-end; }
|
|
9552
9517
|
.view_download_main span {
|
|
9553
9518
|
padding-right: 20px; }
|
|
9554
9519
|
.view_download_main span .views {
|
|
@@ -10266,7 +10231,6 @@ body {
|
|
|
10266
10231
|
background: none; }
|
|
10267
10232
|
|
|
10268
10233
|
:root {
|
|
10269
|
-
--primary-color:#d1b03f;
|
|
10270
10234
|
--secondary-color:#0b0c0c;
|
|
10271
10235
|
--text-color:#333;
|
|
10272
10236
|
--background-light:#f0f0f0;
|
|
@@ -10281,7 +10245,7 @@ body {
|
|
|
10281
10245
|
font-size: var(--base-font-size); }
|
|
10282
10246
|
|
|
10283
10247
|
body, html {
|
|
10284
|
-
font-family: Poppins,sans-serif; }
|
|
10248
|
+
font-family: Poppins, sans-serif !important; }
|
|
10285
10249
|
|
|
10286
10250
|
body {
|
|
10287
10251
|
background-color: #fff;
|
|
@@ -10356,11 +10320,11 @@ body {
|
|
|
10356
10320
|
height: 30px;
|
|
10357
10321
|
border-radius: 50%;
|
|
10358
10322
|
text-align: center;
|
|
10359
|
-
border: 2px solid #
|
|
10323
|
+
border: 2px solid #d1b03f;
|
|
10360
10324
|
border: 2px solid var(--primary-color); }
|
|
10361
10325
|
|
|
10362
10326
|
.circles.completed {
|
|
10363
|
-
background-color: #
|
|
10327
|
+
background-color: #d1b03f;
|
|
10364
10328
|
background-color: var(--primary-color);
|
|
10365
10329
|
display: -webkit-box;
|
|
10366
10330
|
display: -ms-flexbox;
|
|
@@ -10512,7 +10476,7 @@ body {
|
|
|
10512
10476
|
text-align: center; }
|
|
10513
10477
|
|
|
10514
10478
|
.bmc-row-card-header {
|
|
10515
|
-
border: 1px solid #
|
|
10479
|
+
border: 1px solid #fde68a;
|
|
10516
10480
|
border: 1px solid var(--border-color);
|
|
10517
10481
|
-webkit-box-shadow: 0 5px 10px var(--shadow-color);
|
|
10518
10482
|
box-shadow: 0 5px 10px var(--shadow-color);
|
|
@@ -10534,7 +10498,6 @@ body {
|
|
|
10534
10498
|
color: #fff; }
|
|
10535
10499
|
|
|
10536
10500
|
.bmc-card-button {
|
|
10537
|
-
background-color: #2563eb;
|
|
10538
10501
|
background-color: var(--primary-color); }
|
|
10539
10502
|
|
|
10540
10503
|
.bmc-card-button-cancel {
|
|
@@ -10561,7 +10524,7 @@ body {
|
|
|
10561
10524
|
position: relative; }
|
|
10562
10525
|
|
|
10563
10526
|
.bmc-radio-btn-wrap:hover .bmc-radio-btn-checkmark {
|
|
10564
|
-
border-color: #
|
|
10527
|
+
border-color: #d1b03f;
|
|
10565
10528
|
border-color: var(--primary-color); }
|
|
10566
10529
|
|
|
10567
10530
|
.bmc-radio-btn {
|
|
@@ -10578,12 +10541,12 @@ body {
|
|
|
10578
10541
|
border-radius: 50%; }
|
|
10579
10542
|
|
|
10580
10543
|
.bmc-radio-btn:checked + .bmc-radio-btn-checkmark {
|
|
10581
|
-
border-color: #
|
|
10544
|
+
border-color: #d1b03f;
|
|
10582
10545
|
border-color: var(--primary-color); }
|
|
10583
10546
|
|
|
10584
10547
|
.bmc-radio-btn:checked + .bmc-radio-btn-checkmark:after {
|
|
10585
10548
|
display: block;
|
|
10586
|
-
background-color: #
|
|
10549
|
+
background-color: #d1b03f;
|
|
10587
10550
|
background-color: var(--primary-color);
|
|
10588
10551
|
height: 1.25rem;
|
|
10589
10552
|
width: 1.25rem;
|
|
@@ -10597,7 +10560,7 @@ body {
|
|
|
10597
10560
|
color: var(--secondary-color); }
|
|
10598
10561
|
|
|
10599
10562
|
.bmc-hover-table td, .bmc-hover-table th {
|
|
10600
|
-
border: 1px solid #
|
|
10563
|
+
border: 1px solid #fde68a;
|
|
10601
10564
|
border: 1px solid var(--border-color); }
|
|
10602
10565
|
|
|
10603
10566
|
.bmc-range-slider::-moz-range-thumb, .bmc-range-slider::-ms-thumb, .bmc-range-slider::-webkit-slider-thumb {
|
|
@@ -10619,7 +10582,6 @@ body {
|
|
|
10619
10582
|
color: var(--text-color); }
|
|
10620
10583
|
|
|
10621
10584
|
.bmc-pagination li.active button {
|
|
10622
|
-
background-color: #2563eb;
|
|
10623
10585
|
background-color: var(--primary-color); }
|
|
10624
10586
|
|
|
10625
10587
|
[dir=ltr] .bmc-course-amount {
|
|
@@ -11490,19 +11452,66 @@ body {
|
|
|
11490
11452
|
font-weight: 100; }
|
|
11491
11453
|
|
|
11492
11454
|
.SideBarStatic {
|
|
11493
|
-
overflow:
|
|
11455
|
+
overflow: visible;
|
|
11456
|
+
-ms-flex-negative: 0;
|
|
11457
|
+
flex-shrink: 0; }
|
|
11494
11458
|
|
|
11495
11459
|
.drawer-desktop, .SideBarStatic {
|
|
11496
11460
|
width: 60px;
|
|
11497
|
-
|
|
11498
|
-
|
|
11499
|
-
|
|
11461
|
+
height: 100%;
|
|
11462
|
+
z-index: 100; }
|
|
11463
|
+
|
|
11464
|
+
.drawer-desktop {
|
|
11465
|
+
-webkit-transition: width .3s ease;
|
|
11466
|
+
transition: width .3s ease;
|
|
11467
|
+
overflow: hidden;
|
|
11468
|
+
overflow-y: auto;
|
|
11469
|
+
font-family: Open Sans,sans-serif;
|
|
11470
|
+
background-color: #f5eacd;
|
|
11471
|
+
position: fixed;
|
|
11472
|
+
top: 0;
|
|
11473
|
+
bottom: 0;
|
|
11474
|
+
left: 0;
|
|
11475
|
+
padding-top: 80px;
|
|
11476
|
+
-webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06);
|
|
11477
|
+
box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06); }
|
|
11500
11478
|
|
|
11501
11479
|
.drawer-desktop:hover {
|
|
11502
|
-
width:
|
|
11480
|
+
width: 220px;
|
|
11481
|
+
-webkit-box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
|
|
11482
|
+
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1); }
|
|
11503
11483
|
|
|
11504
|
-
.drawer-desktop
|
|
11505
|
-
display:
|
|
11484
|
+
.drawer-desktop .profile-section {
|
|
11485
|
+
display: -webkit-box;
|
|
11486
|
+
display: -ms-flexbox;
|
|
11487
|
+
display: flex;
|
|
11488
|
+
-webkit-box-orient: vertical;
|
|
11489
|
+
-webkit-box-direction: normal;
|
|
11490
|
+
-ms-flex-direction: column;
|
|
11491
|
+
flex-direction: column;
|
|
11492
|
+
-webkit-box-align: center;
|
|
11493
|
+
-ms-flex-align: center;
|
|
11494
|
+
align-items: center;
|
|
11495
|
+
padding: 16px 8px 0;
|
|
11496
|
+
background-color: initial; }
|
|
11497
|
+
|
|
11498
|
+
.drawer-desktop .profile-section img {
|
|
11499
|
+
width: 36px !important;
|
|
11500
|
+
height: 36px !important;
|
|
11501
|
+
-o-object-fit: cover;
|
|
11502
|
+
object-fit: cover;
|
|
11503
|
+
-o-object-position: center;
|
|
11504
|
+
object-position: center;
|
|
11505
|
+
border-radius: 50%;
|
|
11506
|
+
margin: 0 auto 8px !important;
|
|
11507
|
+
-webkit-transition: width .3s ease,height .3s ease;
|
|
11508
|
+
transition: width .3s ease,height .3s ease;
|
|
11509
|
+
border: 2px solid #c8850a; }
|
|
11510
|
+
|
|
11511
|
+
.drawer-desktop:hover .profile-section img {
|
|
11512
|
+
width: 72px !important;
|
|
11513
|
+
height: 72px !important;
|
|
11514
|
+
margin-bottom: 12px !important; }
|
|
11506
11515
|
|
|
11507
11516
|
.drawer-desktop .profile-section .name-Profile {
|
|
11508
11517
|
display: none; }
|
|
@@ -11510,17 +11519,157 @@ body {
|
|
|
11510
11519
|
.drawer-desktop:hover .profile-section .name-Profile {
|
|
11511
11520
|
display: block; }
|
|
11512
11521
|
|
|
11522
|
+
.drawer-desktop .profile-section .name-Profile .label-text {
|
|
11523
|
+
text-align: center;
|
|
11524
|
+
font-weight: 700;
|
|
11525
|
+
font-size: 15px;
|
|
11526
|
+
color: #0b0c0c;
|
|
11527
|
+
letter-spacing: .3px;
|
|
11528
|
+
line-height: 1.3;
|
|
11529
|
+
white-space: nowrap;
|
|
11530
|
+
overflow: hidden;
|
|
11531
|
+
text-overflow: ellipsis;
|
|
11532
|
+
max-width: 190px; }
|
|
11533
|
+
|
|
11513
11534
|
.drawer-desktop .profile-section .loc-Profile {
|
|
11514
11535
|
display: none; }
|
|
11515
11536
|
|
|
11516
11537
|
.drawer-desktop:hover .profile-section .loc-Profile {
|
|
11517
11538
|
display: block; }
|
|
11518
11539
|
|
|
11519
|
-
.drawer-desktop .profile-section .label-text {
|
|
11520
|
-
text-align: center;
|
|
11540
|
+
.drawer-desktop .profile-section .loc-Profile .label-text {
|
|
11541
|
+
text-align: center;
|
|
11542
|
+
font-size: 13px;
|
|
11543
|
+
color: #767676;
|
|
11544
|
+
white-space: nowrap;
|
|
11545
|
+
overflow: hidden;
|
|
11546
|
+
text-overflow: ellipsis;
|
|
11547
|
+
max-width: 190px; }
|
|
11548
|
+
|
|
11549
|
+
.drawer-desktop .profile-section .profile-divider {
|
|
11550
|
+
display: none; }
|
|
11551
|
+
|
|
11552
|
+
.drawer-desktop:hover .profile-section .profile-divider {
|
|
11553
|
+
display: block;
|
|
11554
|
+
border-top: 1px solid #d6d5d4;
|
|
11555
|
+
width: 85%;
|
|
11556
|
+
margin: 12px auto 4px; }
|
|
11557
|
+
|
|
11558
|
+
.drawer-desktop .sidebar-list {
|
|
11559
|
+
padding: 4px 8px !important;
|
|
11560
|
+
margin: 0;
|
|
11561
|
+
border-left: none !important; }
|
|
11521
11562
|
|
|
11522
|
-
.
|
|
11523
|
-
|
|
11563
|
+
.drawer-desktop .sidebar-list.active {
|
|
11564
|
+
border-left: none !important;
|
|
11565
|
+
padding-left: 8px !important; }
|
|
11566
|
+
|
|
11567
|
+
.drawer-desktop .sidebar-list.active .menu-label {
|
|
11568
|
+
color: #b08905;
|
|
11569
|
+
font-weight: 600; }
|
|
11570
|
+
|
|
11571
|
+
.drawer-desktop .sidebar-list.active .icon {
|
|
11572
|
+
fill: #b08905 !important;
|
|
11573
|
+
color: #b08905 !important; }
|
|
11574
|
+
|
|
11575
|
+
.drawer-desktop .menu-item {
|
|
11576
|
+
display: -webkit-box !important;
|
|
11577
|
+
display: -ms-flexbox !important;
|
|
11578
|
+
display: flex !important;
|
|
11579
|
+
-webkit-box-align: center;
|
|
11580
|
+
-ms-flex-align: center;
|
|
11581
|
+
align-items: center;
|
|
11582
|
+
min-height: 42px;
|
|
11583
|
+
line-height: 42px;
|
|
11584
|
+
padding: 0;
|
|
11585
|
+
cursor: pointer;
|
|
11586
|
+
border-radius: 10px;
|
|
11587
|
+
-webkit-transition: background-color .2s ease;
|
|
11588
|
+
transition: background-color .2s ease; }
|
|
11589
|
+
|
|
11590
|
+
.drawer-desktop .menu-item:hover {
|
|
11591
|
+
background-color: rgba(200, 133, 10, 0.08); }
|
|
11592
|
+
|
|
11593
|
+
.drawer-desktop .sidebar-list.active .menu-item {
|
|
11594
|
+
background-color: rgba(176, 137, 5, 0.14); }
|
|
11595
|
+
|
|
11596
|
+
.drawer-desktop .menu-item .icon {
|
|
11597
|
+
display: -webkit-box !important;
|
|
11598
|
+
display: -ms-flexbox !important;
|
|
11599
|
+
display: flex !important;
|
|
11600
|
+
-webkit-box-align: center;
|
|
11601
|
+
-ms-flex-align: center;
|
|
11602
|
+
align-items: center;
|
|
11603
|
+
-webkit-box-pack: center;
|
|
11604
|
+
-ms-flex-pack: center;
|
|
11605
|
+
justify-content: center;
|
|
11606
|
+
float: none !important;
|
|
11607
|
+
width: 21px !important;
|
|
11608
|
+
height: 21px !important;
|
|
11609
|
+
min-width: 21px;
|
|
11610
|
+
margin: 0 11px !important;
|
|
11611
|
+
fill: #757575;
|
|
11612
|
+
color: #757575;
|
|
11613
|
+
-webkit-transition: fill .2s ease,color .2s ease,margin .3s ease;
|
|
11614
|
+
transition: fill .2s ease,color .2s ease,margin .3s ease; }
|
|
11615
|
+
|
|
11616
|
+
.drawer-desktop .menu-item .menu-label {
|
|
11617
|
+
display: none;
|
|
11618
|
+
margin-left: 0;
|
|
11619
|
+
font-size: 14px;
|
|
11620
|
+
color: #5f5c62;
|
|
11621
|
+
white-space: normal !important;
|
|
11622
|
+
word-wrap: break-word;
|
|
11623
|
+
overflow: visible !important;
|
|
11624
|
+
text-overflow: unset !important;
|
|
11625
|
+
line-height: 1.3; }
|
|
11626
|
+
|
|
11627
|
+
.drawer-desktop:hover .menu-item .menu-label {
|
|
11628
|
+
display: block; }
|
|
11629
|
+
|
|
11630
|
+
.drawer-desktop:hover .menu-item .icon {
|
|
11631
|
+
margin-left: 12px !important;
|
|
11632
|
+
margin-right: 10px !important; }
|
|
11633
|
+
|
|
11634
|
+
.drawer-desktop:hover .sidebar-list.active {
|
|
11635
|
+
border-left: 3px solid #b08905;
|
|
11636
|
+
padding-left: 5px;
|
|
11637
|
+
border-radius: 0 10px 10px 0; }
|
|
11638
|
+
|
|
11639
|
+
.drawer-desktop::-webkit-scrollbar {
|
|
11640
|
+
width: 4px; }
|
|
11641
|
+
|
|
11642
|
+
.drawer-desktop::-webkit-scrollbar-track {
|
|
11643
|
+
background: transparent; }
|
|
11644
|
+
|
|
11645
|
+
.drawer-desktop::-webkit-scrollbar-thumb {
|
|
11646
|
+
background-color: rgba(176, 137, 5, 0.3);
|
|
11647
|
+
border-radius: 4px; }
|
|
11648
|
+
|
|
11649
|
+
.drawer-desktop::-webkit-scrollbar-thumb:hover {
|
|
11650
|
+
background-color: rgba(176, 137, 5, 0.5); }
|
|
11651
|
+
|
|
11652
|
+
.drawer-desktop .sidebar-list a {
|
|
11653
|
+
text-decoration: none;
|
|
11654
|
+
color: inherit;
|
|
11655
|
+
display: block;
|
|
11656
|
+
width: 100%; }
|
|
11657
|
+
|
|
11658
|
+
.drawer-desktop .drawer-menu-list {
|
|
11659
|
+
padding-top: 4px;
|
|
11660
|
+
background-color: #f5eacd; }
|
|
11661
|
+
|
|
11662
|
+
@media (min-width: 780px) {
|
|
11663
|
+
.SideBarStatic {
|
|
11664
|
+
width: 60px;
|
|
11665
|
+
background: transparent;
|
|
11666
|
+
margin-top: -24px; }
|
|
11667
|
+
.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 {
|
|
11668
|
+
width: calc(100% - 60px) !important; } }
|
|
11669
|
+
|
|
11670
|
+
@media (max-width: 780px) {
|
|
11671
|
+
.SideBarStatic {
|
|
11672
|
+
display: none; } }
|
|
11524
11673
|
|
|
11525
11674
|
.card p.message-text, .card-emp p.message-text {
|
|
11526
11675
|
font-size: 14px;
|
|
@@ -11796,6 +11945,175 @@ button.submit-bar:hover {
|
|
|
11796
11945
|
width: auto;
|
|
11797
11946
|
padding: 0; }
|
|
11798
11947
|
|
|
11948
|
+
.deonar-flowchart .employee .ground-container {
|
|
11949
|
+
margin-bottom: 0 !important; }
|
|
11950
|
+
|
|
11951
|
+
.flowchart-header {
|
|
11952
|
+
--r:70px;
|
|
11953
|
+
line-height: 3;
|
|
11954
|
+
padding-left: 1em;
|
|
11955
|
+
padding-right: 1em;
|
|
11956
|
+
border-left: var(--r) solid transparent;
|
|
11957
|
+
border-right: var(--r) solid transparent;
|
|
11958
|
+
border-radius: calc(var(--r)*2) calc(var(--r)*2) 0 0/var(--r);
|
|
11959
|
+
-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;
|
|
11960
|
+
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
|
+
-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;
|
|
11962
|
+
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
|
+
background: #bd5532 border-box;
|
|
11964
|
+
width: -webkit-fit-content;
|
|
11965
|
+
width: -moz-fit-content;
|
|
11966
|
+
width: fit-content;
|
|
11967
|
+
background-color: #e57400;
|
|
11968
|
+
color: #fff;
|
|
11969
|
+
font-weight: 700; }
|
|
11970
|
+
|
|
11971
|
+
.verify-receipt-page .citizen .main {
|
|
11972
|
+
width: 100%;
|
|
11973
|
+
padding-top: 82px;
|
|
11974
|
+
-webkit-box-pack: center;
|
|
11975
|
+
-ms-flex-pack: center;
|
|
11976
|
+
justify-content: center; }
|
|
11977
|
+
|
|
11978
|
+
.verify-receipt-page .verify-reciept-main {
|
|
11979
|
+
max-width: 700px;
|
|
11980
|
+
width: 100%;
|
|
11981
|
+
padding: 12px;
|
|
11982
|
+
background-color: #f3f4f6;
|
|
11983
|
+
-webkit-box-sizing: border-box;
|
|
11984
|
+
box-sizing: border-box; }
|
|
11985
|
+
|
|
11986
|
+
.verify-receipt-page .verify-reciept-card {
|
|
11987
|
+
padding: 16px;
|
|
11988
|
+
border-radius: 12px;
|
|
11989
|
+
-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
11990
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
11991
|
+
background-color: #fff;
|
|
11992
|
+
width: 100%;
|
|
11993
|
+
-webkit-box-sizing: border-box;
|
|
11994
|
+
box-sizing: border-box;
|
|
11995
|
+
overflow-x: hidden; }
|
|
11996
|
+
|
|
11997
|
+
.verify-receipt-page .verify-reciept-card-header {
|
|
11998
|
+
color: #1f2937;
|
|
11999
|
+
border-bottom: 1px solid #e5e7eb;
|
|
12000
|
+
padding-bottom: 12px;
|
|
12001
|
+
margin-bottom: 16px;
|
|
12002
|
+
font-size: clamp(16px, 4vw, 20px);
|
|
12003
|
+
font-weight: 700;
|
|
12004
|
+
display: -webkit-box;
|
|
12005
|
+
display: -ms-flexbox;
|
|
12006
|
+
display: flex;
|
|
12007
|
+
-webkit-box-align: center;
|
|
12008
|
+
-ms-flex-align: center;
|
|
12009
|
+
align-items: center;
|
|
12010
|
+
grid-gap: 8px;
|
|
12011
|
+
gap: 8px; }
|
|
12012
|
+
|
|
12013
|
+
.verify-receipt-page .verify-reciept-header-icon {
|
|
12014
|
+
width: 28px;
|
|
12015
|
+
height: 28px;
|
|
12016
|
+
border-radius: 50%;
|
|
12017
|
+
background-color: #2563eb;
|
|
12018
|
+
display: -webkit-inline-box;
|
|
12019
|
+
display: -ms-inline-flexbox;
|
|
12020
|
+
display: inline-flex;
|
|
12021
|
+
-webkit-box-align: center;
|
|
12022
|
+
-ms-flex-align: center;
|
|
12023
|
+
align-items: center;
|
|
12024
|
+
-webkit-box-pack: center;
|
|
12025
|
+
-ms-flex-pack: center;
|
|
12026
|
+
justify-content: center;
|
|
12027
|
+
-ms-flex-negative: 0;
|
|
12028
|
+
flex-shrink: 0; }
|
|
12029
|
+
|
|
12030
|
+
.verify-receipt-page .verify-reciept-row {
|
|
12031
|
+
display: -webkit-box;
|
|
12032
|
+
display: -ms-flexbox;
|
|
12033
|
+
display: flex;
|
|
12034
|
+
-webkit-box-orient: horizontal;
|
|
12035
|
+
-webkit-box-direction: normal;
|
|
12036
|
+
-ms-flex-direction: row;
|
|
12037
|
+
flex-direction: row;
|
|
12038
|
+
-webkit-box-pack: justify;
|
|
12039
|
+
-ms-flex-pack: justify;
|
|
12040
|
+
justify-content: space-between;
|
|
12041
|
+
-webkit-box-align: start;
|
|
12042
|
+
-ms-flex-align: start;
|
|
12043
|
+
align-items: flex-start;
|
|
12044
|
+
padding: 10px 0;
|
|
12045
|
+
border-bottom: 1px solid #f3f4f6;
|
|
12046
|
+
grid-gap: 8px;
|
|
12047
|
+
gap: 8px;
|
|
12048
|
+
-ms-flex-wrap: wrap;
|
|
12049
|
+
flex-wrap: wrap; }
|
|
12050
|
+
|
|
12051
|
+
.verify-receipt-page .verify-reciept-row.last {
|
|
12052
|
+
border-bottom: none; }
|
|
12053
|
+
|
|
12054
|
+
.verify-receipt-page .verify-reciept-label {
|
|
12055
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
12056
|
+
color: #6b7280;
|
|
12057
|
+
font-weight: 500;
|
|
12058
|
+
-webkit-box-flex: 1;
|
|
12059
|
+
-ms-flex: 1 1 40%;
|
|
12060
|
+
flex: 1 1 40%;
|
|
12061
|
+
min-width: 120px; }
|
|
12062
|
+
|
|
12063
|
+
.verify-receipt-page .verify-reciept-value {
|
|
12064
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
12065
|
+
color: #1f2937;
|
|
12066
|
+
font-weight: 400;
|
|
12067
|
+
-webkit-box-flex: 1;
|
|
12068
|
+
-ms-flex: 1 1 50%;
|
|
12069
|
+
flex: 1 1 50%;
|
|
12070
|
+
text-align: right;
|
|
12071
|
+
word-break: break-word; }
|
|
12072
|
+
|
|
12073
|
+
.verify-receipt-page .verify-reciept-value.bold {
|
|
12074
|
+
font-weight: 600; }
|
|
12075
|
+
|
|
12076
|
+
.verify-receipt-page .verify-reciept-badge {
|
|
12077
|
+
font-weight: 700;
|
|
12078
|
+
color: #2563eb;
|
|
12079
|
+
font-size: clamp(13px, 3.5vw, 15px);
|
|
12080
|
+
background: #eff6ff;
|
|
12081
|
+
padding: 2px 8px;
|
|
12082
|
+
border-radius: 6px;
|
|
12083
|
+
display: inline-block; }
|
|
12084
|
+
|
|
12085
|
+
.verify-receipt-page .verify-reciept-amount {
|
|
12086
|
+
color: #059669;
|
|
12087
|
+
font-weight: 700;
|
|
12088
|
+
font-size: clamp(14px, 4vw, 18px); }
|
|
12089
|
+
|
|
12090
|
+
.verify-receipt-page .verify-reciept-error-card {
|
|
12091
|
+
padding: 20px;
|
|
12092
|
+
border-radius: 12px;
|
|
12093
|
+
margin: 16px;
|
|
12094
|
+
background-color: #fff5f5;
|
|
12095
|
+
border: 1px solid #fecaca; }
|
|
12096
|
+
|
|
12097
|
+
.verify-receipt-page .verify-reciept-error-label {
|
|
12098
|
+
color: #dc2626;
|
|
12099
|
+
font-weight: 600;
|
|
12100
|
+
text-align: center;
|
|
12101
|
+
font-size: clamp(13px, 3.5vw, 15px); }
|
|
12102
|
+
|
|
12103
|
+
.verify-receipt-page .verify-reciept-section-title {
|
|
12104
|
+
font-size: 11px;
|
|
12105
|
+
font-weight: 600;
|
|
12106
|
+
color: #9ca3af;
|
|
12107
|
+
text-transform: uppercase;
|
|
12108
|
+
letter-spacing: .08em;
|
|
12109
|
+
padding: 10px 0 4px; }
|
|
12110
|
+
|
|
12111
|
+
.add-citizen-form-fields .bmc-col3-card {
|
|
12112
|
+
width: 100%; }
|
|
12113
|
+
|
|
12114
|
+
.deonar-modal-close-btn-wrapper svg {
|
|
12115
|
+
fill: #fff; }
|
|
12116
|
+
|
|
11799
12117
|
@media screen and (max-width: 320px) {
|
|
11800
12118
|
.mobile-CardWrapper {
|
|
11801
12119
|
min-height: 30vh; }
|
|
@@ -11849,6 +12167,246 @@ button.submit-bar:hover {
|
|
|
11849
12167
|
-webkit-transform: rotate(1turn);
|
|
11850
12168
|
transform: rotate(1turn); } }
|
|
11851
12169
|
|
|
12170
|
+
@media screen and (max-width: 400px) {
|
|
12171
|
+
.verify-receipt-page .verify-reciept-value {
|
|
12172
|
+
text-align: left; }
|
|
12173
|
+
.verify-receipt-page .citizen .main {
|
|
12174
|
+
padding-top: 60px; } }
|
|
12175
|
+
|
|
12176
|
+
.auction-form-grid {
|
|
12177
|
+
display: grid;
|
|
12178
|
+
grid-gap: 16px 24px;
|
|
12179
|
+
gap: 16px 24px; }
|
|
12180
|
+
|
|
12181
|
+
@media (max-width: 768px) {
|
|
12182
|
+
.auction-form-grid {
|
|
12183
|
+
grid-template-columns: 1fr !important; } }
|
|
12184
|
+
|
|
12185
|
+
.auction-field-label {
|
|
12186
|
+
display: block;
|
|
12187
|
+
font-size: 13px;
|
|
12188
|
+
font-weight: 600;
|
|
12189
|
+
color: #374151;
|
|
12190
|
+
margin-bottom: 4px; }
|
|
12191
|
+
|
|
12192
|
+
.auction-field-label .auction-field-required {
|
|
12193
|
+
color: #ec0000;
|
|
12194
|
+
margin-left: 4px; }
|
|
12195
|
+
|
|
12196
|
+
.auction-field-wrapper {
|
|
12197
|
+
position: relative; }
|
|
12198
|
+
|
|
12199
|
+
.auction-field-icon {
|
|
12200
|
+
position: absolute;
|
|
12201
|
+
left: 12px;
|
|
12202
|
+
top: 50%;
|
|
12203
|
+
-webkit-transform: translateY(-50%);
|
|
12204
|
+
transform: translateY(-50%);
|
|
12205
|
+
display: -webkit-box;
|
|
12206
|
+
display: -ms-flexbox;
|
|
12207
|
+
display: flex;
|
|
12208
|
+
-webkit-box-align: center;
|
|
12209
|
+
-ms-flex-align: center;
|
|
12210
|
+
align-items: center;
|
|
12211
|
+
color: #9ca3af;
|
|
12212
|
+
pointer-events: none;
|
|
12213
|
+
z-index: 1; }
|
|
12214
|
+
|
|
12215
|
+
.auction-field-input, .auction-field-select, .auction-field-textarea {
|
|
12216
|
+
width: 100%;
|
|
12217
|
+
padding: 10px 14px;
|
|
12218
|
+
font-size: 14px;
|
|
12219
|
+
border-radius: 8px;
|
|
12220
|
+
border: 1px solid #d1d5db;
|
|
12221
|
+
outline: none;
|
|
12222
|
+
-webkit-transition: border-color .2s;
|
|
12223
|
+
transition: border-color .2s;
|
|
12224
|
+
background-color: #fff;
|
|
12225
|
+
color: #1f2937;
|
|
12226
|
+
max-height: 40px; }
|
|
12227
|
+
|
|
12228
|
+
.auction-field-input:focus, .auction-field-select:focus, .auction-field-textarea:focus {
|
|
12229
|
+
border-color: #097d28;
|
|
12230
|
+
-webkit-box-shadow: 0 0 0 2px rgba(102, 249, 22, 0.1);
|
|
12231
|
+
box-shadow: 0 0 0 2px rgba(102, 249, 22, 0.1); }
|
|
12232
|
+
|
|
12233
|
+
.auction-field-input.has-icon, .auction-field-select.has-icon, .auction-field-textarea.has-icon {
|
|
12234
|
+
padding-left: 40px; }
|
|
12235
|
+
|
|
12236
|
+
.auction-field-input.has-error, .auction-field-select.has-error, .auction-field-textarea.has-error {
|
|
12237
|
+
border-color: #e20000; }
|
|
12238
|
+
|
|
12239
|
+
.auction-field-input:disabled, .auction-field-select:disabled, .auction-field-textarea:disabled {
|
|
12240
|
+
background-color: #f3f4f6;
|
|
12241
|
+
cursor: not-allowed; }
|
|
12242
|
+
|
|
12243
|
+
.auction-field-select {
|
|
12244
|
+
cursor: pointer; }
|
|
12245
|
+
|
|
12246
|
+
.auction-field-textarea {
|
|
12247
|
+
resize: vertical; }
|
|
12248
|
+
|
|
12249
|
+
.auction-field-error {
|
|
12250
|
+
font-size: 12px;
|
|
12251
|
+
color: #e20000 !important;
|
|
12252
|
+
margin-top: 4px;
|
|
12253
|
+
display: block; }
|
|
12254
|
+
|
|
12255
|
+
.auction-radio-group {
|
|
12256
|
+
grid-gap: 16px;
|
|
12257
|
+
gap: 16px;
|
|
12258
|
+
-ms-flex-wrap: wrap;
|
|
12259
|
+
flex-wrap: wrap; }
|
|
12260
|
+
|
|
12261
|
+
.auction-radio-group, .auction-radio-label {
|
|
12262
|
+
display: -webkit-box;
|
|
12263
|
+
display: -ms-flexbox;
|
|
12264
|
+
display: flex; }
|
|
12265
|
+
|
|
12266
|
+
.auction-radio-label {
|
|
12267
|
+
-webkit-box-align: center;
|
|
12268
|
+
-ms-flex-align: center;
|
|
12269
|
+
align-items: center;
|
|
12270
|
+
grid-gap: 6px;
|
|
12271
|
+
gap: 6px;
|
|
12272
|
+
font-size: 14px;
|
|
12273
|
+
color: #374151;
|
|
12274
|
+
cursor: pointer; }
|
|
12275
|
+
|
|
12276
|
+
.auction-radio-label input[type=radio], .auction-radio-label .checkbox-wrap .input-emp[type=radio], .checkbox-wrap .auction-radio-label .input-emp[type=radio] {
|
|
12277
|
+
accent-color: #097d28; }
|
|
12278
|
+
|
|
12279
|
+
.auction-radio-label.disabled {
|
|
12280
|
+
cursor: not-allowed; }
|
|
12281
|
+
|
|
12282
|
+
.auction-submit-btn {
|
|
12283
|
+
padding: 10px 32px;
|
|
12284
|
+
background-color: #097d28;
|
|
12285
|
+
color: #fff;
|
|
12286
|
+
border: none;
|
|
12287
|
+
border-radius: 8px;
|
|
12288
|
+
font-size: 14px;
|
|
12289
|
+
font-weight: 600;
|
|
12290
|
+
cursor: pointer;
|
|
12291
|
+
-webkit-transition: background-color .2s;
|
|
12292
|
+
transition: background-color .2s; }
|
|
12293
|
+
|
|
12294
|
+
.auction-submit-btn:hover {
|
|
12295
|
+
background-color: #12ad3b; }
|
|
12296
|
+
|
|
12297
|
+
.auction-btn {
|
|
12298
|
+
padding: 10px 32px;
|
|
12299
|
+
border: none;
|
|
12300
|
+
border-radius: 8px;
|
|
12301
|
+
font-size: 14px;
|
|
12302
|
+
font-weight: 600;
|
|
12303
|
+
cursor: pointer;
|
|
12304
|
+
-webkit-transition: all .2s;
|
|
12305
|
+
transition: all .2s;
|
|
12306
|
+
display: -webkit-inline-box;
|
|
12307
|
+
display: -ms-inline-flexbox;
|
|
12308
|
+
display: inline-flex;
|
|
12309
|
+
-webkit-box-align: center;
|
|
12310
|
+
-ms-flex-align: center;
|
|
12311
|
+
align-items: center;
|
|
12312
|
+
-webkit-box-pack: center;
|
|
12313
|
+
-ms-flex-pack: center;
|
|
12314
|
+
justify-content: center; }
|
|
12315
|
+
|
|
12316
|
+
.auction-btn:disabled {
|
|
12317
|
+
opacity: .5;
|
|
12318
|
+
cursor: not-allowed; }
|
|
12319
|
+
|
|
12320
|
+
.auction-btn-primary {
|
|
12321
|
+
background-color: #097d28;
|
|
12322
|
+
color: #fff; }
|
|
12323
|
+
.auction-btn-primary:hover {
|
|
12324
|
+
background-color: #12ad3b; }
|
|
12325
|
+
|
|
12326
|
+
.auction-btn-primary:hover:not(:disabled) {
|
|
12327
|
+
background-color: #12ad3b; }
|
|
12328
|
+
|
|
12329
|
+
.auction-btn-secondary {
|
|
12330
|
+
background-color: #f3f4f6;
|
|
12331
|
+
color: #374151; }
|
|
12332
|
+
|
|
12333
|
+
.auction-btn-secondary:hover:not(:disabled) {
|
|
12334
|
+
background-color: #e5e7eb; }
|
|
12335
|
+
|
|
12336
|
+
.auction-btn-outline {
|
|
12337
|
+
background-color: initial;
|
|
12338
|
+
color: #f97316;
|
|
12339
|
+
border: 1px solid #f97316; }
|
|
12340
|
+
|
|
12341
|
+
.auction-btn-outline:hover:not(:disabled) {
|
|
12342
|
+
background-color: #fff7ed; }
|
|
12343
|
+
|
|
12344
|
+
.auction-btn-danger {
|
|
12345
|
+
background-color: #ef4444;
|
|
12346
|
+
color: #fff; }
|
|
12347
|
+
|
|
12348
|
+
.auction-btn-danger:hover:not(:disabled) {
|
|
12349
|
+
background-color: #dc2626; }
|
|
12350
|
+
|
|
12351
|
+
.auction-btn-ghost {
|
|
12352
|
+
background-color: initial;
|
|
12353
|
+
color: #6b7280; }
|
|
12354
|
+
|
|
12355
|
+
.auction-btn-ghost:hover:not(:disabled) {
|
|
12356
|
+
background-color: #f3f4f6;
|
|
12357
|
+
color: #374151; }
|
|
12358
|
+
|
|
12359
|
+
.auction-submit-btn:disabled {
|
|
12360
|
+
opacity: .5;
|
|
12361
|
+
cursor: not-allowed; }
|
|
12362
|
+
|
|
12363
|
+
.auction-page .employeeCard {
|
|
12364
|
+
margin-left: 0 !important;
|
|
12365
|
+
margin-right: 0 !important; }
|
|
12366
|
+
|
|
12367
|
+
.uuid-click-field {
|
|
12368
|
+
cursor: pointer;
|
|
12369
|
+
color: #136906;
|
|
12370
|
+
background: #dcffc7;
|
|
12371
|
+
padding: 2px 8px;
|
|
12372
|
+
border-radius: 30px;
|
|
12373
|
+
position: relative;
|
|
12374
|
+
-webkit-transition: padding-right .1s ease-in-out,background .2s ease-in-out;
|
|
12375
|
+
transition: padding-right .1s ease-in-out,background .2s ease-in-out;
|
|
12376
|
+
overflow: hidden; }
|
|
12377
|
+
|
|
12378
|
+
.uuid-click-field:hover {
|
|
12379
|
+
padding-right: 20px;
|
|
12380
|
+
background: #b0e0b0; }
|
|
12381
|
+
|
|
12382
|
+
.uuid-click-field:after {
|
|
12383
|
+
content: "";
|
|
12384
|
+
position: absolute;
|
|
12385
|
+
right: 4px;
|
|
12386
|
+
top: 50%;
|
|
12387
|
+
-webkit-transform: translateY(-50%);
|
|
12388
|
+
transform: translateY(-50%);
|
|
12389
|
+
width: 18px;
|
|
12390
|
+
height: 18px;
|
|
12391
|
+
background-image: url('data:image/svg+xml;utf8,<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M9.71069 18.2929C10.1012 18.6834 10.7344 18.6834 11.1249 18.2929L16.0123 13.4006C16.7927 12.6195 16.7924 11.3537 16.0117 10.5729L11.1213 5.68254C10.7308 5.29202 10.0976 5.29202 9.70708 5.68254C9.31655 6.07307 9.31655 6.70623 9.70708 7.09676L13.8927 11.2824C14.2833 11.6729 14.2833 12.3061 13.8927 12.6966L9.71069 16.8787C9.32016 17.2692 9.32016 17.9023 9.71069 18.2929Z" fill="%23136906"></path> </g></svg>');
|
|
12392
|
+
background-size: contain;
|
|
12393
|
+
background-repeat: no-repeat;
|
|
12394
|
+
opacity: 0;
|
|
12395
|
+
-webkit-transition: opacity .3s ease-in-out;
|
|
12396
|
+
transition: opacity .3s ease-in-out; }
|
|
12397
|
+
|
|
12398
|
+
.uuid-click-field:hover:after {
|
|
12399
|
+
opacity: 1; }
|
|
12400
|
+
|
|
12401
|
+
.auction-page .deonar-modal-content {
|
|
12402
|
+
margin-top: 0;
|
|
12403
|
+
padding: 0 0 60px !important; }
|
|
12404
|
+
|
|
12405
|
+
.qa-field.radio .auction-field-wrapper {
|
|
12406
|
+
padding: 8px;
|
|
12407
|
+
border: 1px solid rgba(128, 128, 128, 0.36863);
|
|
12408
|
+
border-radius: 8px; }
|
|
12409
|
+
|
|
11852
12410
|
@media (max-width: 768px) {
|
|
11853
12411
|
.deonar-security {
|
|
11854
12412
|
display: -webkit-box;
|
|
@@ -12463,9 +13021,9 @@ button.submit-bar:hover {
|
|
|
12463
13021
|
opacity: 1; }
|
|
12464
13022
|
|
|
12465
13023
|
:root {
|
|
12466
|
-
--primary-color:#
|
|
12467
|
-
--primary-hover:#
|
|
12468
|
-
--primary-light:#
|
|
13024
|
+
--primary-color:#d1b03f;
|
|
13025
|
+
--primary-hover:#b49326;
|
|
13026
|
+
--primary-light:#fffbeb;
|
|
12469
13027
|
--secondary-color:#64748b;
|
|
12470
13028
|
--secondary-light:#f1f5f9;
|
|
12471
13029
|
--success-color:#059669;
|
|
@@ -12473,8 +13031,8 @@ button.submit-bar:hover {
|
|
|
12473
13031
|
--danger-color:#dc2626;
|
|
12474
13032
|
--dark-color:#1e293b;
|
|
12475
13033
|
--light-color:#f8fafc;
|
|
12476
|
-
--border-color:#
|
|
12477
|
-
--text-primary:#
|
|
13034
|
+
--border-color:#fde68a;
|
|
13035
|
+
--text-primary:#92400e;
|
|
12478
13036
|
--text-secondary:#64748b;
|
|
12479
13037
|
--shadow-sm:0 1px 2px 0 rgba(0,0,0,0.05);
|
|
12480
13038
|
--shadow-md:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1);
|
|
@@ -12488,17 +13046,21 @@ button.submit-bar:hover {
|
|
|
12488
13046
|
|
|
12489
13047
|
body {
|
|
12490
13048
|
font-family: Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
|
|
12491
|
-
background: linear-gradient(135deg, #
|
|
13049
|
+
background: linear-gradient(135deg, #fffbeb, #f8fafc);
|
|
12492
13050
|
background: linear-gradient(135deg, var(--primary-light), var(--light-color));
|
|
12493
|
-
color: #
|
|
13051
|
+
color: #92400e;
|
|
12494
13052
|
color: var(--text-primary);
|
|
12495
|
-
line-height: 1.6;
|
|
12496
13053
|
min-height: 100vh; }
|
|
12497
13054
|
|
|
13055
|
+
.inventory_container, body {
|
|
13056
|
+
line-height: 1.6; }
|
|
13057
|
+
|
|
12498
13058
|
.inventory_container {
|
|
12499
13059
|
max-width: 2000px;
|
|
12500
13060
|
margin: 0 auto;
|
|
12501
13061
|
padding: 2rem; }
|
|
13062
|
+
.inventory_container * {
|
|
13063
|
+
line-height: inherit; }
|
|
12502
13064
|
|
|
12503
13065
|
.inventory_header {
|
|
12504
13066
|
text-align: center;
|
|
@@ -12512,7 +13074,7 @@ body {
|
|
|
12512
13074
|
box-shadow: var(--shadow-md); }
|
|
12513
13075
|
|
|
12514
13076
|
.inventory_header h1 {
|
|
12515
|
-
color: #
|
|
13077
|
+
color: #d1b03f;
|
|
12516
13078
|
color: var(--primary-color);
|
|
12517
13079
|
font-size: 2.5rem;
|
|
12518
13080
|
font-weight: 700;
|
|
@@ -12535,7 +13097,7 @@ body {
|
|
|
12535
13097
|
transition: all .3s ease; }
|
|
12536
13098
|
|
|
12537
13099
|
.inventory_form-header {
|
|
12538
|
-
background: linear-gradient(135deg, #
|
|
13100
|
+
background: linear-gradient(135deg, #d1b03f, #b49326);
|
|
12539
13101
|
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
|
|
12540
13102
|
color: #fff;
|
|
12541
13103
|
padding: 2rem;
|
|
@@ -12569,10 +13131,10 @@ body {
|
|
|
12569
13131
|
.inventory_form-label {
|
|
12570
13132
|
display: block;
|
|
12571
13133
|
font-weight: 600;
|
|
12572
|
-
color: #
|
|
12573
|
-
color: var(--text-primary);
|
|
13134
|
+
color: #92400e;
|
|
12574
13135
|
margin-bottom: .5rem;
|
|
12575
|
-
font-size: .
|
|
13136
|
+
font-size: .85rem;
|
|
13137
|
+
letter-spacing: .2px; }
|
|
12576
13138
|
|
|
12577
13139
|
.inventory_required {
|
|
12578
13140
|
color: #dc2626;
|
|
@@ -12581,27 +13143,31 @@ body {
|
|
|
12581
13143
|
|
|
12582
13144
|
.inventory_form-input, .inventory_form-select, .inventory_form-textarea {
|
|
12583
13145
|
width: 100%;
|
|
12584
|
-
padding:
|
|
12585
|
-
border:
|
|
12586
|
-
border:
|
|
12587
|
-
|
|
12588
|
-
|
|
12589
|
-
|
|
12590
|
-
|
|
12591
|
-
|
|
12592
|
-
|
|
12593
|
-
|
|
12594
|
-
line-height: normal; }
|
|
13146
|
+
padding: 10px 14px;
|
|
13147
|
+
border: 1.5px solid #fde68a;
|
|
13148
|
+
border-radius: 10px;
|
|
13149
|
+
font-size: 14px;
|
|
13150
|
+
-webkit-transition: all .25s ease;
|
|
13151
|
+
transition: all .25s ease;
|
|
13152
|
+
background: #fffbeb;
|
|
13153
|
+
color: #1e293b;
|
|
13154
|
+
line-height: normal;
|
|
13155
|
+
height: 44px; }
|
|
12595
13156
|
|
|
12596
13157
|
.inventory_form-input:focus, .inventory_form-select:focus, .inventory_form-textarea:focus {
|
|
12597
13158
|
outline: none;
|
|
12598
|
-
border-color: #
|
|
12599
|
-
|
|
12600
|
-
|
|
12601
|
-
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
|
|
13159
|
+
border-color: #d1b03f;
|
|
13160
|
+
-webkit-box-shadow: 0 0 0 3px rgba(209, 176, 63, 0.15);
|
|
13161
|
+
box-shadow: 0 0 0 3px rgba(209, 176, 63, 0.15);
|
|
12602
13162
|
-webkit-transform: translateY(-1px);
|
|
12603
13163
|
transform: translateY(-1px); }
|
|
12604
13164
|
|
|
13165
|
+
.inventory_form-input:disabled, .inventory_form-select:disabled, .inventory_form-textarea:disabled {
|
|
13166
|
+
background: #f9f6ee;
|
|
13167
|
+
border-color: #e2e8f0;
|
|
13168
|
+
color: #6b7280;
|
|
13169
|
+
cursor: not-allowed; }
|
|
13170
|
+
|
|
12605
13171
|
.inventory_form-textarea {
|
|
12606
13172
|
resize: vertical;
|
|
12607
13173
|
min-height: 100px; }
|
|
@@ -12624,7 +13190,7 @@ body {
|
|
|
12624
13190
|
align-items: center;
|
|
12625
13191
|
cursor: pointer;
|
|
12626
13192
|
padding: .75rem 1rem;
|
|
12627
|
-
border: 2px solid #
|
|
13193
|
+
border: 2px solid #fde68a;
|
|
12628
13194
|
border: 2px solid var(--border-color);
|
|
12629
13195
|
border-radius: 8px;
|
|
12630
13196
|
-webkit-transition: all .3s ease;
|
|
@@ -12633,41 +13199,39 @@ body {
|
|
|
12633
13199
|
min-width: 140px; }
|
|
12634
13200
|
|
|
12635
13201
|
.inventory_radio-option:hover {
|
|
12636
|
-
border-color: #
|
|
13202
|
+
border-color: #d1b03f;
|
|
12637
13203
|
border-color: var(--primary-color);
|
|
12638
|
-
background: #
|
|
13204
|
+
background: #fffbeb;
|
|
12639
13205
|
background: var(--primary-light); }
|
|
12640
13206
|
|
|
12641
13207
|
.inventory_radio-option input[type=radio], .inventory_radio-option .checkbox-wrap .input-emp[type=radio], .checkbox-wrap .inventory_radio-option .input-emp[type=radio] {
|
|
12642
13208
|
margin-right: .5rem;
|
|
12643
|
-
accent-color: #
|
|
13209
|
+
accent-color: #d1b03f;
|
|
12644
13210
|
accent-color: var(--primary-color); }
|
|
12645
13211
|
|
|
12646
13212
|
.inventory_radio-option.selected {
|
|
12647
|
-
border-color: #
|
|
13213
|
+
border-color: #d1b03f;
|
|
12648
13214
|
border-color: var(--primary-color);
|
|
12649
|
-
background: #
|
|
13215
|
+
background: #fffbeb;
|
|
12650
13216
|
background: var(--primary-light);
|
|
12651
13217
|
font-weight: 600; }
|
|
12652
13218
|
|
|
12653
13219
|
.inventory_section-divider {
|
|
12654
13220
|
border: none;
|
|
12655
13221
|
height: 1px;
|
|
12656
|
-
background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#
|
|
12657
|
-
background: linear-gradient(90deg, transparent, #
|
|
13222
|
+
background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#fde68a), to(transparent));
|
|
13223
|
+
background: linear-gradient(90deg, transparent, #fde68a, transparent);
|
|
12658
13224
|
background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--border-color)), to(transparent));
|
|
12659
13225
|
background: linear-gradient(90deg, transparent, var(--border-color), transparent);
|
|
12660
13226
|
margin: 2.5rem 0; }
|
|
12661
13227
|
|
|
12662
13228
|
.inventory_section-title {
|
|
12663
|
-
font-size:
|
|
12664
|
-
font-weight:
|
|
12665
|
-
color: #
|
|
12666
|
-
|
|
12667
|
-
|
|
12668
|
-
|
|
12669
|
-
border-bottom: 2px solid #dbeafe;
|
|
12670
|
-
border-bottom: 2px solid var(--primary-light); }
|
|
13229
|
+
font-size: 1rem;
|
|
13230
|
+
font-weight: 700;
|
|
13231
|
+
color: #b49326;
|
|
13232
|
+
margin-bottom: 1.2rem;
|
|
13233
|
+
padding-bottom: .4rem;
|
|
13234
|
+
border-bottom: 2px solid #fde68a; }
|
|
12671
13235
|
|
|
12672
13236
|
.inventory_button-group {
|
|
12673
13237
|
display: -webkit-box;
|
|
@@ -12696,7 +13260,7 @@ body {
|
|
|
12696
13260
|
min-width: 120px; }
|
|
12697
13261
|
|
|
12698
13262
|
.inventory_btn-primary {
|
|
12699
|
-
background: linear-gradient(135deg, #
|
|
13263
|
+
background: linear-gradient(135deg, #d1b03f, #b49326);
|
|
12700
13264
|
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
|
|
12701
13265
|
color: #fff;
|
|
12702
13266
|
-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
@@ -12717,11 +13281,11 @@ body {
|
|
|
12717
13281
|
background: var(--secondary-light);
|
|
12718
13282
|
color: #64748b;
|
|
12719
13283
|
color: var(--secondary-color);
|
|
12720
|
-
border: 2px solid #
|
|
13284
|
+
border: 2px solid #fde68a;
|
|
12721
13285
|
border: 2px solid var(--border-color); }
|
|
12722
13286
|
|
|
12723
13287
|
.inventory_btn-secondary:hover {
|
|
12724
|
-
background: #
|
|
13288
|
+
background: #fde68a;
|
|
12725
13289
|
background: var(--border-color);
|
|
12726
13290
|
-webkit-transform: translateY(-1px);
|
|
12727
13291
|
transform: translateY(-1px); }
|
|
@@ -13226,7 +13790,7 @@ body {
|
|
|
13226
13790
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
|
|
13227
13791
|
-webkit-box-shadow: var(--shadow-md);
|
|
13228
13792
|
box-shadow: var(--shadow-md);
|
|
13229
|
-
border: 1px solid #
|
|
13793
|
+
border: 1px solid #fde68a;
|
|
13230
13794
|
border: 1px solid var(--border-color); }
|
|
13231
13795
|
|
|
13232
13796
|
.Inventory-table table {
|
|
@@ -13236,7 +13800,7 @@ body {
|
|
|
13236
13800
|
background-color: #fff; }
|
|
13237
13801
|
|
|
13238
13802
|
.Inventory-table thead {
|
|
13239
|
-
background: linear-gradient(135deg, #
|
|
13803
|
+
background: linear-gradient(135deg, #d1b03f, #b49326);
|
|
13240
13804
|
background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
|
|
13241
13805
|
position: sticky;
|
|
13242
13806
|
top: 0;
|
|
@@ -13248,7 +13812,7 @@ body {
|
|
|
13248
13812
|
font-weight: 600;
|
|
13249
13813
|
font-size: 14px;
|
|
13250
13814
|
color: #fff;
|
|
13251
|
-
border-bottom: 2px solid #
|
|
13815
|
+
border-bottom: 2px solid #b49326;
|
|
13252
13816
|
border-bottom: 2px solid var(--primary-hover);
|
|
13253
13817
|
text-transform: uppercase;
|
|
13254
13818
|
letter-spacing: .5px;
|
|
@@ -13256,7 +13820,7 @@ body {
|
|
|
13256
13820
|
position: relative; }
|
|
13257
13821
|
|
|
13258
13822
|
.Inventory-table thead th:hover {
|
|
13259
|
-
background-color: #
|
|
13823
|
+
background-color: #b49326;
|
|
13260
13824
|
background-color: var(--primary-hover); }
|
|
13261
13825
|
|
|
13262
13826
|
.Inventory-table thead th:not(:last-child):after {
|
|
@@ -13274,16 +13838,16 @@ body {
|
|
|
13274
13838
|
.Inventory-table tbody tr {
|
|
13275
13839
|
-webkit-transition: all .2s ease-in-out;
|
|
13276
13840
|
transition: all .2s ease-in-out;
|
|
13277
|
-
border-bottom: 1px solid #
|
|
13841
|
+
border-bottom: 1px solid #fde68a;
|
|
13278
13842
|
border-bottom: 1px solid var(--border-color); }
|
|
13279
13843
|
|
|
13280
13844
|
.Inventory-table tbody tr:hover {
|
|
13281
|
-
background-color: #
|
|
13845
|
+
background-color: #fffbeb !important;
|
|
13282
13846
|
background-color: var(--primary-light) !important;
|
|
13283
13847
|
-webkit-transform: translateX(2px);
|
|
13284
13848
|
transform: translateX(2px);
|
|
13285
|
-
-webkit-box-shadow: inset 3px 0 0 #
|
|
13286
|
-
box-shadow: inset 3px 0 0 #
|
|
13849
|
+
-webkit-box-shadow: inset 3px 0 0 #d1b03f;
|
|
13850
|
+
box-shadow: inset 3px 0 0 #d1b03f;
|
|
13287
13851
|
-webkit-box-shadow: inset 3px 0 0 var(--primary-color);
|
|
13288
13852
|
box-shadow: inset 3px 0 0 var(--primary-color); }
|
|
13289
13853
|
|
|
@@ -13297,10 +13861,10 @@ body {
|
|
|
13297
13861
|
.Inventory-table tbody td {
|
|
13298
13862
|
padding: 12px;
|
|
13299
13863
|
font-size: 14px;
|
|
13300
|
-
color: #
|
|
13864
|
+
color: #92400e;
|
|
13301
13865
|
color: var(--text-primary);
|
|
13302
13866
|
vertical-align: middle;
|
|
13303
|
-
line-height: 1.
|
|
13867
|
+
line-height: 1.6; }
|
|
13304
13868
|
|
|
13305
13869
|
.Inventory-table tbody td:last-child {
|
|
13306
13870
|
border-right: none; }
|
|
@@ -13325,7 +13889,7 @@ body {
|
|
|
13325
13889
|
z-index: 10; }
|
|
13326
13890
|
|
|
13327
13891
|
.table-border-style {
|
|
13328
|
-
border: 1px solid #
|
|
13892
|
+
border: 1px solid #fde68a;
|
|
13329
13893
|
border: 1px solid var(--border-color); }
|
|
13330
13894
|
|
|
13331
13895
|
.loader-overlay {
|
|
@@ -13449,7 +14013,7 @@ body {
|
|
|
13449
14013
|
display: block; }
|
|
13450
14014
|
.mobile-card-view .Inventory-table tbody tr {
|
|
13451
14015
|
background-color: #fff;
|
|
13452
|
-
border: 1px solid #
|
|
14016
|
+
border: 1px solid #fde68a;
|
|
13453
14017
|
border: 1px solid var(--border-color);
|
|
13454
14018
|
border-radius: 8px;
|
|
13455
14019
|
margin-bottom: 10px;
|
|
@@ -13495,7 +14059,7 @@ body {
|
|
|
13495
14059
|
box-shadow: none !important; } }
|
|
13496
14060
|
|
|
13497
14061
|
.Inventory-table:focus-within, .Inventory-table[focus-within] {
|
|
13498
|
-
outline: 2px solid #
|
|
14062
|
+
outline: 2px solid #d1b03f;
|
|
13499
14063
|
outline: 2px solid var(--primary-color);
|
|
13500
14064
|
outline-offset: 2px; }
|
|
13501
14065
|
|
|
@@ -13512,7 +14076,7 @@ body {
|
|
|
13512
14076
|
border-radius: 3px; }
|
|
13513
14077
|
|
|
13514
14078
|
.Inventory-table::-webkit-scrollbar-thumb:hover {
|
|
13515
|
-
background: #
|
|
14079
|
+
background: #d1b03f;
|
|
13516
14080
|
background: var(--primary-color); }
|
|
13517
14081
|
|
|
13518
14082
|
.inv-badge {
|