@pmidc/upyog-css 1.2.32 → 1.2.34

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": "@pmidc/upyog-css",
3
- "version": "1.2.32",
3
+ "version": "1.2.34",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -273,9 +273,10 @@
273
273
 
274
274
  .customTable th,
275
275
  .customTable td {
276
- text-align: left;
276
+ text-align: justify;
277
277
  border-bottom: 1px solid #e1e8f0;
278
278
  padding: 14px 16px;
279
+ max-width: 400px;
279
280
  }
280
281
 
281
282
  .customTable tr {
package/src/index.scss CHANGED
@@ -1770,14 +1770,151 @@ input[type="date"] {
1770
1770
  margin-right: 4px;
1771
1771
  }
1772
1772
 
1773
+ /* Fee History Desktop View - NOC/CLU */
1774
+ .custom-fix-fee-history-wrapper {
1775
+ margin-top: 16px;
1776
+ }
1777
+
1778
+ .custom-fix-fee-history-toggle {
1779
+ display: flex;
1780
+ align-items: center;
1781
+ cursor: pointer;
1782
+ padding: 12px 0;
1783
+ border-bottom: 1px solid #ddd;
1784
+ }
1785
+
1786
+ .custom-fix-fee-history-toggle-text {
1787
+ font-weight: bold;
1788
+ font-size: 16px;
1789
+ flex: 1;
1790
+ }
1791
+
1792
+ .custom-fix-fee-history-toggle-icon {
1793
+ font-size: 18px;
1794
+ font-weight: bold;
1795
+ }
1796
+
1797
+ .custom-fix-fee-history-table-container {
1798
+ overflow-x: auto;
1799
+ margin-top: 16px;
1800
+ }
1801
+
1802
+ .custom-fix-fee-history-table {
1803
+ width: 100%;
1804
+ border-collapse: collapse;
1805
+ min-width: 600px;
1806
+ }
1807
+
1808
+ .custom-fix-fee-history-table-header {
1809
+ padding: 8px;
1810
+ border: 1px solid #ddd;
1811
+ font-weight: bold;
1812
+ background-color: #1f3a9f;
1813
+ color: #fff;
1814
+ min-width: 140px;
1815
+ }
1816
+
1817
+ .custom-fix-fee-history-table-header-fee {
1818
+ padding: 8px;
1819
+ border: 1px solid #ddd;
1820
+ font-weight: bold;
1821
+ background-color: #1f3a9f;
1822
+ color: #fff;
1823
+ min-width: 150px;
1824
+ }
1825
+
1826
+ .custom-fix-fee-history-table-cell-label {
1827
+ padding: 8px;
1828
+ border: 1px solid #ddd;
1829
+ font-weight: bold;
1830
+ background-color: #f9f9f9;
1831
+ }
1832
+
1833
+ .custom-fix-fee-history-table-cell-value {
1834
+ padding: 8px;
1835
+ border: 1px solid #ddd;
1836
+ }
1837
+
1838
+ .custom-fix-fee-history-table-cell-separator {
1839
+ padding: 8px;
1840
+ border: 1px solid #ddd;
1841
+ font-weight: bold;
1842
+ background-color: #f9f9f9;
1843
+ border-bottom: 3px solid #999999;
1844
+ }
1845
+
1846
+ .custom-fix-fee-history-table-cell-separator-value {
1847
+ padding: 8px;
1848
+ border: 1px solid #ddd;
1849
+ border-bottom: 3px solid #999999;
1850
+ }
1851
+
1852
+ .custom-fix-fee-history-table-cell-separator-last {
1853
+ padding: 8px;
1854
+ border: 1px solid #ddd;
1855
+ font-weight: bold;
1856
+ background-color: #f9f9f9;
1857
+ border-bottom: none;
1858
+ }
1859
+
1860
+ .custom-fix-fee-history-table-cell-separator-value-last {
1861
+ padding: 8px;
1862
+ border: 1px solid #ddd;
1863
+ border-bottom: none;
1864
+ }
1865
+
1773
1866
 
1774
1867
  .custom-fee-table-input {
1775
1868
  width: 100%;
1776
1869
  border-radius: 4px;
1777
- font-size: 13px;
1870
+ font-size: 15px;
1778
1871
  box-sizing: border-box;
1779
1872
  }
1780
1873
 
1874
+ /* Textarea Styles for CLU Fee Table */
1875
+ .custom-fee-table-textarea {
1876
+ min-height: 60px;
1877
+ max-height: 240px;
1878
+ word-wrap: break-word;
1879
+ white-space: pre-wrap;
1880
+ resize: vertical;
1881
+ padding: 10px 12px;
1882
+ border: 1px solid #CCCCCC;
1883
+ border-radius: 4px;
1884
+ font-size: 15px;
1885
+ line-height: 1.5;
1886
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
1887
+ }
1888
+
1889
+ .custom-fee-table-textarea:focus {
1890
+ outline: none;
1891
+ border-color: #1e3a8a;
1892
+ box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
1893
+ }
1894
+
1895
+ .custom-fee-table-textarea:disabled {
1896
+ background-color: #F5F5F5;
1897
+ color: #999;
1898
+ cursor: not-allowed;
1899
+ }
1900
+
1901
+ .custom-fee-remark-display {
1902
+ padding: 10px 12px;
1903
+ border: 1px solid #E0E0E0;
1904
+ border-radius: 4px;
1905
+ background-color: #F9F9F9;
1906
+ font-size: 15px;
1907
+ line-height: 1.5;
1908
+ word-wrap: break-word;
1909
+ white-space: pre-wrap;
1910
+ max-height: 240px;
1911
+ overflow-y: auto;
1912
+ min-height: 40px;
1913
+ display: flex;
1914
+ align-items: flex-start;
1915
+ color: #333;
1916
+ }
1917
+
1781
1918
 
1782
1919
  .custom-fee-mobile-cards {
1783
1920
  display: flex;
@@ -1810,14 +1947,14 @@ input[type="date"] {
1810
1947
 
1811
1948
  .custom-fee-card-type {
1812
1949
  font-weight: 700;
1813
- font-size: 14px;
1950
+ font-size: 15px;
1814
1951
  color: #1A1A1A;
1815
1952
  text-transform: capitalize;
1816
1953
  letter-spacing: 0.3px;
1817
1954
  }
1818
1955
 
1819
1956
  .custom-fee-card-original-amount {
1820
- font-size: 12px;
1957
+ font-size: 15px;
1821
1958
  color: #888;
1822
1959
  font-weight: 500;
1823
1960
  }
@@ -2054,6 +2191,7 @@ input[type="date"] {
2054
2191
  .checklist-table-cell-doc-name {
2055
2192
  font-size: 16px;
2056
2193
  min-width: 150px;
2194
+ max-width: 340px;
2057
2195
  }
2058
2196
 
2059
2197
  .checklist-table-cell-file {
@@ -2067,11 +2205,147 @@ input[type="date"] {
2067
2205
  .checklist-table-input {
2068
2206
  width: 100%;
2069
2207
  padding: 8px;
2070
-
2071
2208
  border-radius: 4px;
2072
2209
  font-size: 13px;
2073
2210
  box-sizing: border-box;
2074
2211
  }
2212
+
2213
+ /* Mobile Card View for Document Checklist */
2214
+ .checklist-mobile-cards {
2215
+ display: flex;
2216
+ flex-direction: column;
2217
+ gap: 10px;
2218
+ padding: 0;
2219
+ }
2220
+
2221
+ .checklist-mobile-card {
2222
+ border-bottom: 1px solid #E0E0E0;
2223
+ padding: 12px 0;
2224
+ }
2225
+
2226
+ .checklist-card-header {
2227
+ display: flex;
2228
+ gap: 8px;
2229
+ margin-bottom: 8px;
2230
+ align-items: center;
2231
+ margin-left: 10px;
2232
+ }
2233
+
2234
+ .checklist-card-sr-no {
2235
+ font-weight: 600;
2236
+ font-size: 14px;
2237
+ color: #333;
2238
+ min-width: 20px;
2239
+ }
2240
+
2241
+ .checklist-card-doc-name {
2242
+ font-weight: 600;
2243
+ font-size: 13px;
2244
+ color: #333;
2245
+ flex: 1;
2246
+ }
2247
+
2248
+ .checklist-card-content {
2249
+ display: flex;
2250
+ flex-direction: column;
2251
+ gap: 8px;
2252
+ margin-left: 28px;
2253
+ }
2254
+
2255
+ .checklist-card-row {
2256
+ display: flex;
2257
+ flex-direction: column;
2258
+ gap: 4px;
2259
+ }
2260
+
2261
+ .checklist-card-label {
2262
+ font-weight: 500;
2263
+ font-size: 11px;
2264
+ color: #666;
2265
+ text-transform: uppercase;
2266
+ letter-spacing: 0.3px;
2267
+ }
2268
+
2269
+ .checklist-card-remark {
2270
+ font-size: 13px;
2271
+ line-height: 1.4;
2272
+ word-wrap: break-word;
2273
+ white-space: pre-wrap;
2274
+ color: #333;
2275
+ }
2276
+
2277
+ /* Textarea Styles for CLU Document Checklist */
2278
+ .checklist-table-textarea {
2279
+ min-height: 60px;
2280
+ max-height: 240px;
2281
+ word-wrap: break-word;
2282
+ white-space: pre-wrap;
2283
+ resize: vertical;
2284
+ padding: 14px 16px;
2285
+ border: 1px solid #CCCCCC;
2286
+ border-radius: 4px;
2287
+ font-size: 15px;
2288
+ line-height: 1.5;
2289
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
2290
+ width: 100%;
2291
+ box-sizing: border-box;
2292
+ font-family: inherit;
2293
+ text-align: justify;
2294
+ }
2295
+
2296
+ .checklist-table-textarea:focus {
2297
+ outline: none;
2298
+ border-color: #1e3a8a;
2299
+ box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.1);
2300
+ }
2301
+
2302
+ .checklist-table-textarea:disabled {
2303
+ background-color: #F5F5F5;
2304
+ color: #999;
2305
+ cursor: not-allowed;
2306
+ border-color: #e1e8f0;
2307
+ }
2308
+
2309
+ @media (max-width: 1024px) {
2310
+ .checklist-table-textarea {
2311
+ padding: 12px 14px;
2312
+ font-size: 13px;
2313
+ }
2314
+ }
2315
+
2316
+ @media (max-width: 768px) {
2317
+ .checklist-table-textarea {
2318
+ padding: 10px 12px;
2319
+ font-size: 12px;
2320
+ min-height: 50px;
2321
+ }
2322
+ }
2323
+
2324
+ .checklist-remark-display {
2325
+ padding: 14px 16px;
2326
+ font-size: 15px;
2327
+ line-height: 1.5;
2328
+ word-wrap: break-word;
2329
+ white-space: pre-wrap;
2330
+ color: #000000;
2331
+ text-align: justify;
2332
+ font-weight: 600;
2333
+ }
2334
+
2335
+ @media (max-width: 1024px) {
2336
+ .checklist-remark-display {
2337
+ padding: 12px 14px;
2338
+ font-size: 15px;
2339
+ }
2340
+ }
2341
+
2342
+ @media (max-width: 768px) {
2343
+ .checklist-remark-display {
2344
+ padding: 10px 12px;
2345
+ font-size: 14px;
2346
+ }
2347
+ }
2348
+
2075
2349
  @media (min-width: 1024px) {
2076
2350
  .data-card{
2077
2351
  .employee-card-sub-heade {