@tattvafoundation/upyog-css 1.0.44 → 1.0.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tattvafoundation/upyog-css",
3
- "version": "1.0.44",
3
+ "version": "1.0.46",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -3,7 +3,7 @@
3
3
  @apply w-full;
4
4
  display: flex;
5
5
  margin-right: 10px;
6
- justify-content: end;
6
+ justify-content: flex-end;
7
7
  align-items: center;
8
8
  .pt-search-action-submit button {
9
9
  width: 100% !important;
@@ -9,6 +9,7 @@
9
9
  --modal-background: #fff;
10
10
  --background-color: white;
11
11
  --text-color: black;
12
+ --text-main-color: #000;
12
13
  }
13
14
  * {
14
15
  font-size: var(--base-font-size);
@@ -17,6 +18,7 @@ body,
17
18
  html {
18
19
  font-family: "Poppins", sans-serif !important;
19
20
  font-size: var(--base-font-size);
21
+ color: var(--text-color) !important;
20
22
  }
21
23
  body {
22
24
  background-color: var(--background-color);
@@ -2409,4 +2411,283 @@ button.submit-bar:hover {
2409
2411
  .verify-receipt-page .citizen .main {
2410
2412
  padding-top: 60px;
2411
2413
  }
2414
+ }
2415
+
2416
+ .auction-form-grid {
2417
+ display: grid;
2418
+ gap: 16px 24px;
2419
+ }
2420
+
2421
+ @media (max-width: 768px) {
2422
+ .auction-form-grid {
2423
+ grid-template-columns: 1fr !important;
2424
+ }
2425
+ }
2426
+
2427
+ .auction-field-label {
2428
+ display: block;
2429
+ font-size: 13px;
2430
+ font-weight: 600;
2431
+ color: #374151;
2432
+ margin-bottom: 4px;
2433
+ }
2434
+
2435
+ .auction-field-label .auction-field-required {
2436
+ color: #ec0000;
2437
+ margin-left: 4px;
2438
+ }
2439
+
2440
+ .auction-field-wrapper {
2441
+ position: relative;
2442
+ }
2443
+
2444
+ .auction-field-icon {
2445
+ position: absolute;
2446
+ left: 12px;
2447
+ top: 50%;
2448
+ transform: translateY(-50%);
2449
+ display: flex;
2450
+ align-items: center;
2451
+ color: #9ca3af;
2452
+ pointer-events: none;
2453
+ z-index: 1;
2454
+ }
2455
+
2456
+ .auction-field-input,
2457
+ .auction-field-select,
2458
+ .auction-field-textarea {
2459
+ width: 100%;
2460
+ padding: 10px 14px;
2461
+ font-size: 14px;
2462
+ border-radius: 8px;
2463
+ border: 1px solid #d1d5db;
2464
+ outline: none;
2465
+ transition: border-color 0.2s;
2466
+ background-color: #fff;
2467
+ color: #1f2937;
2468
+ max-height: 40px;
2469
+ }
2470
+ .auction-field-textarea {
2471
+ max-height: unset;
2472
+ }
2473
+
2474
+ .auction-field-input:focus,
2475
+ .auction-field-select:focus,
2476
+ .auction-field-textarea:focus {
2477
+ border-color: #097d28;
2478
+ box-shadow: 0 0 0 2px rgb(102 249 22 / 10%);
2479
+ }
2480
+
2481
+ .auction-field-input.has-icon,
2482
+ .auction-field-select.has-icon,
2483
+ .auction-field-textarea.has-icon {
2484
+ padding-left: 40px;
2485
+ }
2486
+
2487
+ .auction-field-input.has-error,
2488
+ .auction-field-select.has-error,
2489
+ .auction-field-textarea.has-error {
2490
+ border-color: #e20000;
2491
+ }
2492
+
2493
+ .auction-field-input:disabled,
2494
+ .auction-field-select:disabled,
2495
+ .auction-field-textarea:disabled {
2496
+ background-color: #f3f4f6;
2497
+ cursor: not-allowed;
2498
+ }
2499
+
2500
+ .auction-field-select {
2501
+ cursor: pointer;
2502
+ }
2503
+
2504
+ .auction-field-textarea {
2505
+ resize: vertical;
2506
+ }
2507
+
2508
+ .auction-field-error {
2509
+ font-size: 12px;
2510
+ color: #e20000 !important;
2511
+ margin-top: 4px;
2512
+ display: block;
2513
+ }
2514
+
2515
+
2516
+ .auction-radio-group {
2517
+ display: flex;
2518
+ gap: 16px;
2519
+ flex-wrap: wrap;
2520
+ }
2521
+
2522
+ .auction-radio-label {
2523
+ display: flex;
2524
+ align-items: center;
2525
+ gap: 6px;
2526
+ font-size: 14px;
2527
+ color: #374151;
2528
+ cursor: pointer;
2529
+ }
2530
+
2531
+ .auction-radio-label input[type="radio"] {
2532
+ accent-color: #097d28;
2533
+ }
2534
+
2535
+ .auction-radio-label.disabled {
2536
+ cursor: not-allowed;
2537
+ }
2538
+
2539
+ .auction-submit-btn {
2540
+ padding: 10px 32px;
2541
+ background-color: #097d28;
2542
+ color: #fff;
2543
+ border: none;
2544
+ border-radius: 8px;
2545
+ font-size: 14px;
2546
+ font-weight: 600;
2547
+ cursor: pointer;
2548
+ transition: background-color 0.2s;
2549
+ }
2550
+
2551
+ .auction-submit-btn:hover {
2552
+ background-color: #12ad3b;
2553
+ }
2554
+
2555
+ .auction-submit-btn:disabled {
2556
+ opacity: 0.5;
2557
+ cursor: not-allowed;
2558
+ }
2559
+
2560
+
2561
+
2562
+ /* ======================
2563
+ Auction Buttons
2564
+ ====================== */
2565
+ .auction-btn {
2566
+ padding: 10px 32px;
2567
+ border: none;
2568
+ border-radius: 8px;
2569
+ font-size: 14px;
2570
+ font-weight: 600;
2571
+ cursor: pointer;
2572
+ transition: all 0.2s;
2573
+ display: inline-flex;
2574
+ align-items: center;
2575
+ justify-content: center;
2576
+ gap: 6px;
2577
+ }
2578
+
2579
+ .auction-btn:disabled {
2580
+ opacity: 0.5;
2581
+ cursor: not-allowed;
2582
+ }
2583
+
2584
+ /* Primary */
2585
+ .auction-btn-primary {
2586
+ background-color: #097d28;
2587
+ color: #fff;
2588
+ &:hover{
2589
+ background-color: #12ad3b;
2590
+ }
2591
+ }
2592
+
2593
+ .auction-btn-primary:hover:not(:disabled) {
2594
+ background-color: #12ad3b;
2595
+ }
2596
+
2597
+ /* Secondary */
2598
+ .auction-btn-secondary {
2599
+ background-color: #f3f4f6;
2600
+ color: #374151;
2601
+ }
2602
+
2603
+ .auction-btn-secondary:hover:not(:disabled) {
2604
+ background-color: #e5e7eb;
2605
+ }
2606
+
2607
+ /* Outline */
2608
+ .auction-btn-outline {
2609
+ background-color: transparent;
2610
+ color: #f97316;
2611
+ border: 1px solid #f97316;
2612
+ }
2613
+
2614
+ .auction-btn-outline:hover:not(:disabled) {
2615
+ background-color: #fff7ed;
2616
+ }
2617
+
2618
+ /* Danger */
2619
+ .auction-btn-danger {
2620
+ background-color: #ef4444;
2621
+ color: #fff;
2622
+ }
2623
+
2624
+ .auction-btn-danger:hover:not(:disabled) {
2625
+ background-color: #dc2626;
2626
+ }
2627
+
2628
+ /* Ghost */
2629
+ .auction-btn-ghost {
2630
+ background-color: transparent;
2631
+ color: #6b7280;
2632
+ }
2633
+
2634
+ .auction-btn-ghost:hover:not(:disabled) {
2635
+ background-color: #f3f4f6;
2636
+ color: #374151;
2637
+ }
2638
+
2639
+ .auction-submit-btn:disabled {
2640
+ opacity: 0.5;
2641
+ cursor: not-allowed;
2642
+ }
2643
+
2644
+ .auction-page .employeeCard {
2645
+ margin-left: 0 !important;
2646
+ margin-right: 0 !important;
2647
+ }
2648
+ .uuid-click-field {
2649
+ cursor: pointer;
2650
+ color: #136906;
2651
+ background: #dcffc7;
2652
+ padding: 2px 8px;
2653
+ border-radius: 30px;
2654
+ position: relative;
2655
+ transition: padding-right 0.1s ease-in-out, background 0.2s ease-in-out;
2656
+ overflow: hidden;
2657
+ }
2658
+
2659
+ .uuid-click-field:hover {
2660
+ padding-right: 20px;
2661
+ background: #b0e0b0;
2662
+ }
2663
+
2664
+ .uuid-click-field:after {
2665
+ content: "";
2666
+ position: absolute;
2667
+ right: 4px;
2668
+ top: 50%;
2669
+ transform: translateY(-50%);
2670
+ width: 18px;
2671
+ height: 18px;
2672
+ 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>');
2673
+ background-size: contain;
2674
+ background-repeat: no-repeat;
2675
+ opacity: 0;
2676
+ transition: opacity 0.3s ease-in-out;
2677
+ }
2678
+
2679
+
2680
+ .uuid-click-field:hover:after {
2681
+ opacity: 1;
2682
+ }
2683
+
2684
+
2685
+ .auction-page .deonar-modal-content {
2686
+ margin-top: 0;
2687
+ padding: 0px 0px 60px !important;
2688
+ }
2689
+ .qa-field.radio .auction-field-wrapper {
2690
+ padding: 8px;
2691
+ border: 1px solid #8080805e;
2692
+ border-radius: 8px;
2412
2693
  }
@@ -43,7 +43,7 @@
43
43
  .SubmitAndClearAllContainer {
44
44
  width: 100%;
45
45
  display: flex;
46
- justify-content: end;
46
+ justify-content: flex-end;
47
47
  align-items: center;
48
48
  .clear-search {
49
49
  width: 30%;
@@ -1,8 +1,8 @@
1
- /* Color Palette - Professional Blue Theme */
1
+ /* Color Palette - BMC Gold Theme */
2
2
  :root {
3
- --primary-color: #2563eb;
4
- --primary-hover: #1d4ed8;
5
- --primary-light: #dbeafe;
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: #e2e8f0;
14
- --text-primary: #0f172a;
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: var(--text-primary);
126
+ color: #92400e;
118
127
  margin-bottom: 0.5rem;
119
- font-size: 0.95rem;
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: 1px solid #000;
134
- border-radius: 0px;
135
- font-size: 16px;
136
- transition: all 0.3s ease;
137
- background: #e8f0fe;
138
- color: #000;
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: var(--primary-color);
148
- box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
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: 1.3rem;
203
- font-weight: 600;
204
- color: var(--primary-color);
205
- margin-bottom: 1.5rem;
206
- padding-bottom: 0.5rem;
207
- border-bottom: 2px solid var(--primary-light);
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.5;
828
+ line-height: 1.6;
810
829
  }
811
830
 
812
831
  .Inventory-table tbody td:last-child {
@@ -97,7 +97,7 @@
97
97
  display: flex;
98
98
  flex-wrap: wrap;
99
99
  gap:8px;
100
- align-items: end;
100
+ align-items: flex-end;
101
101
  span {
102
102
  padding-right: 20px;
103
103
  & .views {