@tattvafoundation/upyog-css 1.0.44 → 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 +324 -84
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/PropertySearchForm.scss +1 -1
- package/src/components/bmc.scss +275 -0
- package/src/components/hoc/InboxComposer.scss +1 -1
- package/src/components/inventory.scss +43 -24
- package/src/pages/citizen/DocumentList.scss +1 -1
package/package.json
CHANGED
package/src/components/bmc.scss
CHANGED
|
@@ -2409,4 +2409,279 @@ button.submit-bar:hover {
|
|
|
2409
2409
|
.verify-receipt-page .citizen .main {
|
|
2410
2410
|
padding-top: 60px;
|
|
2411
2411
|
}
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
.auction-form-grid {
|
|
2415
|
+
display: grid;
|
|
2416
|
+
gap: 16px 24px;
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
@media (max-width: 768px) {
|
|
2420
|
+
.auction-form-grid {
|
|
2421
|
+
grid-template-columns: 1fr !important;
|
|
2422
|
+
}
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
.auction-field-label {
|
|
2426
|
+
display: block;
|
|
2427
|
+
font-size: 13px;
|
|
2428
|
+
font-weight: 600;
|
|
2429
|
+
color: #374151;
|
|
2430
|
+
margin-bottom: 4px;
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
.auction-field-label .auction-field-required {
|
|
2434
|
+
color: #ec0000;
|
|
2435
|
+
margin-left: 4px;
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2438
|
+
.auction-field-wrapper {
|
|
2439
|
+
position: relative;
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
.auction-field-icon {
|
|
2443
|
+
position: absolute;
|
|
2444
|
+
left: 12px;
|
|
2445
|
+
top: 50%;
|
|
2446
|
+
transform: translateY(-50%);
|
|
2447
|
+
display: flex;
|
|
2448
|
+
align-items: center;
|
|
2449
|
+
color: #9ca3af;
|
|
2450
|
+
pointer-events: none;
|
|
2451
|
+
z-index: 1;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
.auction-field-input,
|
|
2455
|
+
.auction-field-select,
|
|
2456
|
+
.auction-field-textarea {
|
|
2457
|
+
width: 100%;
|
|
2458
|
+
padding: 10px 14px;
|
|
2459
|
+
font-size: 14px;
|
|
2460
|
+
border-radius: 8px;
|
|
2461
|
+
border: 1px solid #d1d5db;
|
|
2462
|
+
outline: none;
|
|
2463
|
+
transition: border-color 0.2s;
|
|
2464
|
+
background-color: #fff;
|
|
2465
|
+
color: #1f2937;
|
|
2466
|
+
max-height: 40px;
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
.auction-field-input:focus,
|
|
2470
|
+
.auction-field-select:focus,
|
|
2471
|
+
.auction-field-textarea:focus {
|
|
2472
|
+
border-color: #097d28;
|
|
2473
|
+
box-shadow: 0 0 0 2px rgb(102 249 22 / 10%);
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.auction-field-input.has-icon,
|
|
2477
|
+
.auction-field-select.has-icon,
|
|
2478
|
+
.auction-field-textarea.has-icon {
|
|
2479
|
+
padding-left: 40px;
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
.auction-field-input.has-error,
|
|
2483
|
+
.auction-field-select.has-error,
|
|
2484
|
+
.auction-field-textarea.has-error {
|
|
2485
|
+
border-color: #e20000;
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
.auction-field-input:disabled,
|
|
2489
|
+
.auction-field-select:disabled,
|
|
2490
|
+
.auction-field-textarea:disabled {
|
|
2491
|
+
background-color: #f3f4f6;
|
|
2492
|
+
cursor: not-allowed;
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
.auction-field-select {
|
|
2496
|
+
cursor: pointer;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
.auction-field-textarea {
|
|
2500
|
+
resize: vertical;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.auction-field-error {
|
|
2504
|
+
font-size: 12px;
|
|
2505
|
+
color: #e20000 !important;
|
|
2506
|
+
margin-top: 4px;
|
|
2507
|
+
display: block;
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
|
|
2511
|
+
.auction-radio-group {
|
|
2512
|
+
display: flex;
|
|
2513
|
+
gap: 16px;
|
|
2514
|
+
flex-wrap: wrap;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
.auction-radio-label {
|
|
2518
|
+
display: flex;
|
|
2519
|
+
align-items: center;
|
|
2520
|
+
gap: 6px;
|
|
2521
|
+
font-size: 14px;
|
|
2522
|
+
color: #374151;
|
|
2523
|
+
cursor: pointer;
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
.auction-radio-label input[type="radio"] {
|
|
2527
|
+
accent-color: #097d28;
|
|
2528
|
+
}
|
|
2529
|
+
|
|
2530
|
+
.auction-radio-label.disabled {
|
|
2531
|
+
cursor: not-allowed;
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2534
|
+
.auction-submit-btn {
|
|
2535
|
+
padding: 10px 32px;
|
|
2536
|
+
background-color: #097d28;
|
|
2537
|
+
color: #fff;
|
|
2538
|
+
border: none;
|
|
2539
|
+
border-radius: 8px;
|
|
2540
|
+
font-size: 14px;
|
|
2541
|
+
font-weight: 600;
|
|
2542
|
+
cursor: pointer;
|
|
2543
|
+
transition: background-color 0.2s;
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
.auction-submit-btn:hover {
|
|
2547
|
+
background-color: #12ad3b;
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
.auction-submit-btn:disabled {
|
|
2551
|
+
opacity: 0.5;
|
|
2552
|
+
cursor: not-allowed;
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
|
|
2556
|
+
|
|
2557
|
+
/* ======================
|
|
2558
|
+
Auction Buttons
|
|
2559
|
+
====================== */
|
|
2560
|
+
.auction-btn {
|
|
2561
|
+
padding: 10px 32px;
|
|
2562
|
+
border: none;
|
|
2563
|
+
border-radius: 8px;
|
|
2564
|
+
font-size: 14px;
|
|
2565
|
+
font-weight: 600;
|
|
2566
|
+
cursor: pointer;
|
|
2567
|
+
transition: all 0.2s;
|
|
2568
|
+
display: inline-flex;
|
|
2569
|
+
align-items: center;
|
|
2570
|
+
justify-content: center;
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
.auction-btn:disabled {
|
|
2574
|
+
opacity: 0.5;
|
|
2575
|
+
cursor: not-allowed;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
/* Primary */
|
|
2579
|
+
.auction-btn-primary {
|
|
2580
|
+
background-color: #097d28;
|
|
2581
|
+
color: #fff;
|
|
2582
|
+
&:hover{
|
|
2583
|
+
background-color: #12ad3b;
|
|
2584
|
+
}
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
.auction-btn-primary:hover:not(:disabled) {
|
|
2588
|
+
background-color: #12ad3b;
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
/* Secondary */
|
|
2592
|
+
.auction-btn-secondary {
|
|
2593
|
+
background-color: #f3f4f6;
|
|
2594
|
+
color: #374151;
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
.auction-btn-secondary:hover:not(:disabled) {
|
|
2598
|
+
background-color: #e5e7eb;
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
/* Outline */
|
|
2602
|
+
.auction-btn-outline {
|
|
2603
|
+
background-color: transparent;
|
|
2604
|
+
color: #f97316;
|
|
2605
|
+
border: 1px solid #f97316;
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
.auction-btn-outline:hover:not(:disabled) {
|
|
2609
|
+
background-color: #fff7ed;
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
/* Danger */
|
|
2613
|
+
.auction-btn-danger {
|
|
2614
|
+
background-color: #ef4444;
|
|
2615
|
+
color: #fff;
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
.auction-btn-danger:hover:not(:disabled) {
|
|
2619
|
+
background-color: #dc2626;
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
/* Ghost */
|
|
2623
|
+
.auction-btn-ghost {
|
|
2624
|
+
background-color: transparent;
|
|
2625
|
+
color: #6b7280;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
.auction-btn-ghost:hover:not(:disabled) {
|
|
2629
|
+
background-color: #f3f4f6;
|
|
2630
|
+
color: #374151;
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2633
|
+
.auction-submit-btn:disabled {
|
|
2634
|
+
opacity: 0.5;
|
|
2635
|
+
cursor: not-allowed;
|
|
2636
|
+
}
|
|
2637
|
+
|
|
2638
|
+
.auction-page .employeeCard {
|
|
2639
|
+
margin-left: 0 !important;
|
|
2640
|
+
margin-right: 0 !important;
|
|
2641
|
+
}
|
|
2642
|
+
.uuid-click-field {
|
|
2643
|
+
cursor: pointer;
|
|
2644
|
+
color: #136906;
|
|
2645
|
+
background: #dcffc7;
|
|
2646
|
+
padding: 2px 8px;
|
|
2647
|
+
border-radius: 30px;
|
|
2648
|
+
position: relative;
|
|
2649
|
+
transition: padding-right 0.1s ease-in-out, background 0.2s ease-in-out;
|
|
2650
|
+
overflow: hidden;
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
.uuid-click-field:hover {
|
|
2654
|
+
padding-right: 20px;
|
|
2655
|
+
background: #b0e0b0;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.uuid-click-field:after {
|
|
2659
|
+
content: "";
|
|
2660
|
+
position: absolute;
|
|
2661
|
+
right: 4px;
|
|
2662
|
+
top: 50%;
|
|
2663
|
+
transform: translateY(-50%);
|
|
2664
|
+
width: 18px;
|
|
2665
|
+
height: 18px;
|
|
2666
|
+
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>');
|
|
2667
|
+
background-size: contain;
|
|
2668
|
+
background-repeat: no-repeat;
|
|
2669
|
+
opacity: 0;
|
|
2670
|
+
transition: opacity 0.3s ease-in-out;
|
|
2671
|
+
}
|
|
2672
|
+
|
|
2673
|
+
|
|
2674
|
+
.uuid-click-field:hover:after {
|
|
2675
|
+
opacity: 1;
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
|
|
2679
|
+
.auction-page .deonar-modal-content {
|
|
2680
|
+
margin-top: 0;
|
|
2681
|
+
padding: 0px 0px 60px !important;
|
|
2682
|
+
}
|
|
2683
|
+
.qa-field.radio .auction-field-wrapper {
|
|
2684
|
+
padding: 8px;
|
|
2685
|
+
border: 1px solid #8080805e;
|
|
2686
|
+
border-radius: 8px;
|
|
2412
2687
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/* Color Palette -
|
|
1
|
+
/* Color Palette - BMC Gold Theme */
|
|
2
2
|
:root {
|
|
3
|
-
--primary-color: #
|
|
4
|
-
--primary-hover: #
|
|
5
|
-
--primary-light: #
|
|
3
|
+
--primary-color: #d1b03f;
|
|
4
|
+
--primary-hover: #b49326;
|
|
5
|
+
--primary-light: #fffbeb;
|
|
6
6
|
--secondary-color: #64748b;
|
|
7
7
|
--secondary-light: #f1f5f9;
|
|
8
8
|
--success-color: #059669;
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
--danger-color: #dc2626;
|
|
11
11
|
--dark-color: #1e293b;
|
|
12
12
|
--light-color: #f8fafc;
|
|
13
|
-
--border-color: #
|
|
14
|
-
--text-primary: #
|
|
13
|
+
--border-color: #fde68a;
|
|
14
|
+
--text-primary: #92400e;
|
|
15
15
|
--text-secondary: #64748b;
|
|
16
16
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
17
17
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
@@ -37,6 +37,15 @@ body {
|
|
|
37
37
|
max-width: 2000px;
|
|
38
38
|
margin: 0 auto;
|
|
39
39
|
padding: 2rem;
|
|
40
|
+
line-height: 1.6;
|
|
41
|
+
|
|
42
|
+
* {
|
|
43
|
+
line-height: inherit;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
p, span, div, label, h1, h2, h3, h4, h5, h6, td, th, li, button, input, select, textarea {
|
|
47
|
+
line-height: 1.6;
|
|
48
|
+
}
|
|
40
49
|
}
|
|
41
50
|
|
|
42
51
|
/* Header Styles */
|
|
@@ -114,9 +123,10 @@ body {
|
|
|
114
123
|
.inventory_form-label {
|
|
115
124
|
display: block;
|
|
116
125
|
font-weight: 600;
|
|
117
|
-
color:
|
|
126
|
+
color: #92400e;
|
|
118
127
|
margin-bottom: 0.5rem;
|
|
119
|
-
font-size: 0.
|
|
128
|
+
font-size: 0.85rem;
|
|
129
|
+
letter-spacing: 0.2px;
|
|
120
130
|
}
|
|
121
131
|
|
|
122
132
|
.inventory_required {
|
|
@@ -129,13 +139,13 @@ body {
|
|
|
129
139
|
.inventory_form-select,
|
|
130
140
|
.inventory_form-textarea {
|
|
131
141
|
width: 100%;
|
|
132
|
-
padding: 10px;
|
|
133
|
-
border:
|
|
134
|
-
border-radius:
|
|
135
|
-
font-size:
|
|
136
|
-
transition: all 0.
|
|
137
|
-
background: #
|
|
138
|
-
color: #
|
|
142
|
+
padding: 10px 14px;
|
|
143
|
+
border: 1.5px solid #fde68a;
|
|
144
|
+
border-radius: 10px;
|
|
145
|
+
font-size: 14px;
|
|
146
|
+
transition: all 0.25s ease;
|
|
147
|
+
background: #fffbeb;
|
|
148
|
+
color: #1e293b;
|
|
139
149
|
line-height: normal;
|
|
140
150
|
height: 44px;
|
|
141
151
|
}
|
|
@@ -144,11 +154,20 @@ body {
|
|
|
144
154
|
.inventory_form-select:focus,
|
|
145
155
|
.inventory_form-textarea:focus {
|
|
146
156
|
outline: none;
|
|
147
|
-
border-color:
|
|
148
|
-
box-shadow: 0 0 0 3px rgba(
|
|
157
|
+
border-color: #d1b03f;
|
|
158
|
+
box-shadow: 0 0 0 3px rgba(209, 176, 63, 0.15);
|
|
149
159
|
transform: translateY(-1px);
|
|
150
160
|
}
|
|
151
161
|
|
|
162
|
+
.inventory_form-input:disabled,
|
|
163
|
+
.inventory_form-select:disabled,
|
|
164
|
+
.inventory_form-textarea:disabled {
|
|
165
|
+
background: #f9f6ee;
|
|
166
|
+
border-color: #e2e8f0;
|
|
167
|
+
color: #6b7280;
|
|
168
|
+
cursor: not-allowed;
|
|
169
|
+
}
|
|
170
|
+
|
|
152
171
|
.inventory_form-textarea {
|
|
153
172
|
resize: vertical;
|
|
154
173
|
min-height: 100px;
|
|
@@ -199,12 +218,12 @@ body {
|
|
|
199
218
|
}
|
|
200
219
|
|
|
201
220
|
.inventory_section-title {
|
|
202
|
-
font-size:
|
|
203
|
-
font-weight:
|
|
204
|
-
color:
|
|
205
|
-
margin-bottom: 1.
|
|
206
|
-
padding-bottom: 0.
|
|
207
|
-
border-bottom: 2px solid
|
|
221
|
+
font-size: 1rem;
|
|
222
|
+
font-weight: 700;
|
|
223
|
+
color: #b49326;
|
|
224
|
+
margin-bottom: 1.2rem;
|
|
225
|
+
padding-bottom: 0.4rem;
|
|
226
|
+
border-bottom: 2px solid #fde68a;
|
|
208
227
|
}
|
|
209
228
|
|
|
210
229
|
/* Button Styles */
|
|
@@ -806,7 +825,7 @@ body {
|
|
|
806
825
|
font-size: 14px;
|
|
807
826
|
color: var(--text-primary);
|
|
808
827
|
vertical-align: middle;
|
|
809
|
-
line-height: 1.
|
|
828
|
+
line-height: 1.6;
|
|
810
829
|
}
|
|
811
830
|
|
|
812
831
|
.Inventory-table tbody td:last-child {
|