@pmidc/upyog-css 1.2.29 → 1.2.30

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.29",
3
+ "version": "1.2.30",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -80,12 +80,8 @@
80
80
  justify-content: center;
81
81
  height: auto;
82
82
  min-height: 40px;
83
- width: 100%;
84
83
  margin: 0;
85
84
 
86
- @media (min-width: 768px) {
87
- width: 30%;
88
- }
89
85
 
90
86
  &:hover {
91
87
  background-color: #1e3a8a !important;
@@ -144,4 +140,3 @@
144
140
  margin-top: 10px;
145
141
  }
146
142
 
147
-
@@ -138,3 +138,9 @@
138
138
  .mobile-number-input-with-prefix {
139
139
  padding-left: 45px !important;
140
140
  }
141
+
142
+ @media only screen and (max-width: 768px) {
143
+ .employee-card-input {
144
+ font-size: 14px;
145
+ }
146
+ }
package/src/index.scss CHANGED
@@ -1668,17 +1668,27 @@ input[type="date"] {
1668
1668
  border-collapse: collapse;
1669
1669
  }
1670
1670
 
1671
- /* CLU Fee Table Header */
1671
+
1672
1672
  .custom-fee-table-header {
1673
1673
  padding: 14px 12px;
1674
1674
  font-size: 12px;
1675
1675
  white-space: nowrap;
1676
+ background: linear-gradient(135deg, #1e3a8a, #2563eb);
1677
+ color: white;
1678
+ font-weight: 600;
1679
+ text-align: left;
1676
1680
  }
1677
1681
 
1678
- /* CLU Fee Table Cells */
1682
+
1679
1683
  .custom-fee-table-cell {
1680
1684
  padding: 14px 12px;
1681
- font-size: 13px;
1685
+ font-size: 16px;
1686
+ }
1687
+ @media (max-width: 768px) {
1688
+ .custom-fee-table-cell {
1689
+ font-size: 13px;
1690
+ padding: 10px 8px;
1691
+ }
1682
1692
  }
1683
1693
 
1684
1694
  .custom-fee-table-cell-taxhead {
@@ -1693,7 +1703,7 @@ input[type="date"] {
1693
1703
  padding: 14px 12px;
1694
1704
  }
1695
1705
 
1696
- /* CLU Fee History Wrapper */
1706
+
1697
1707
  .custom-fee-history-section {
1698
1708
  margin-top: 16px;
1699
1709
  }
@@ -1718,15 +1728,19 @@ input[type="date"] {
1718
1728
  border-collapse: collapse;
1719
1729
  }
1720
1730
 
1721
- /* CLU Fee History Header */
1731
+
1722
1732
  .custom-fee-history-header {
1723
1733
  padding: 12px 8px;
1724
- font-size: 12px;
1734
+ font-size: 14px;
1725
1735
  white-space: nowrap;
1726
1736
  min-width: 120px;
1737
+ background-color: #0d43a7;
1738
+ color: white;
1739
+ font-weight: 600;
1740
+ text-align: left;
1727
1741
  }
1728
1742
 
1729
- /* CLU Fee History Cell */
1743
+
1730
1744
  .custom-fee-history-cell {
1731
1745
  padding: 12px 8px;
1732
1746
  min-width: 120px;
@@ -1734,7 +1748,7 @@ input[type="date"] {
1734
1748
  }
1735
1749
 
1736
1750
  .custom-fee-history-content {
1737
- font-size: 12px;
1751
+ font-size: 14px;
1738
1752
  }
1739
1753
 
1740
1754
  .custom-fee-history-row {
@@ -1749,16 +1763,245 @@ input[type="date"] {
1749
1763
  word-break: break-word;
1750
1764
  }
1751
1765
 
1752
- /* CLU Fee Table Input */
1766
+ .custom-fee-history-label-bold {
1767
+ color: #333;
1768
+ font-weight: 700;
1769
+ font-size: 15px;
1770
+ margin-right: 4px;
1771
+ }
1772
+
1773
+
1753
1774
  .custom-fee-table-input {
1754
1775
  width: 100%;
1755
- padding: 8px;
1756
- border: 1px solid #ccc;
1757
1776
  border-radius: 4px;
1758
1777
  font-size: 13px;
1759
1778
  box-sizing: border-box;
1760
1779
  }
1761
1780
 
1781
+
1782
+ .custom-fee-mobile-cards {
1783
+ display: flex;
1784
+ flex-direction: column;
1785
+ gap: 12px;
1786
+ padding: 0;
1787
+ }
1788
+
1789
+ .custom-fee-card {
1790
+ background: white;
1791
+ border: 1px solid #E0E0E0;
1792
+ border-radius: 8px;
1793
+ padding: 16px;
1794
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
1795
+ transition: box-shadow 0.2s ease;
1796
+
1797
+ &:hover {
1798
+ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
1799
+ }
1800
+ }
1801
+
1802
+ .custom-fee-card-header {
1803
+ display: flex;
1804
+ justify-content: space-between;
1805
+ align-items: center;
1806
+ margin-bottom: 12px;
1807
+ padding-bottom: 12px;
1808
+ border-bottom: 2px solid #F0F0F0;
1809
+ }
1810
+
1811
+ .custom-fee-card-type {
1812
+ font-weight: 700;
1813
+ font-size: 14px;
1814
+ color: #1A1A1A;
1815
+ text-transform: capitalize;
1816
+ letter-spacing: 0.3px;
1817
+ }
1818
+
1819
+ .custom-fee-card-original-amount {
1820
+ font-size: 12px;
1821
+ color: #888;
1822
+ font-weight: 500;
1823
+ }
1824
+
1825
+ .custom-fee-card-content {
1826
+ display: flex;
1827
+ flex-direction: column;
1828
+ gap: 14px;
1829
+ }
1830
+
1831
+ .custom-fee-card-row {
1832
+ display: flex;
1833
+ gap: 12px;
1834
+ }
1835
+
1836
+ .custom-fee-card-field {
1837
+ display: flex;
1838
+ flex-direction: column;
1839
+ gap: 6px;
1840
+ flex: 1;
1841
+ }
1842
+
1843
+ .custom-fee-card-label {
1844
+ font-weight: 600;
1845
+ font-size: 12px;
1846
+ color: #000000;
1847
+ text-transform: uppercase;
1848
+ letter-spacing: 0.5px;
1849
+ }
1850
+
1851
+ .custom-fee-card-value {
1852
+ font-size: 13px;
1853
+ color: #333;
1854
+ padding: 8px;
1855
+ background: #F9F9F9;
1856
+ border-radius: 4px;
1857
+ min-height: 32px;
1858
+ display: flex;
1859
+ align-items: center;
1860
+ border: 1px solid #E8E8E8;
1861
+ }
1862
+
1863
+ /* Total Row Special Styling */
1864
+ .custom-fee-card-total-row {
1865
+ background: linear-gradient(135deg, #F5F7FA 0%, #F0F3F8 100%);
1866
+ border: 2px solid #D0D8E8;
1867
+ margin-top: 8px;
1868
+
1869
+ .custom-fee-card-header {
1870
+ display: none;
1871
+ }
1872
+ }
1873
+
1874
+ .custom-fee-card-total-content {
1875
+ display: flex;
1876
+ flex-direction: column;
1877
+ gap: 8px;
1878
+ align-items: center;
1879
+ text-align: center;
1880
+ padding: 12px 0;
1881
+ }
1882
+
1883
+ .custom-fee-card-total-label {
1884
+ font-size: 12px;
1885
+ color: #1f4ed4;
1886
+ font-weight: 600;
1887
+ text-transform: uppercase;
1888
+ letter-spacing: 0.5px;
1889
+ }
1890
+
1891
+ .custom-fee-card-total-value {
1892
+ font-size: 24px;
1893
+ font-weight: 800;
1894
+ color: #1A1A1A;
1895
+ letter-spacing: 0.2px;
1896
+ }
1897
+
1898
+ .custom-fee-card-total-words {
1899
+ font-size: 11px;
1900
+ color: #1f4ed4;
1901
+ font-style: italic;
1902
+ margin-top: 4px;
1903
+ line-height: 1.4;
1904
+ }
1905
+
1906
+
1907
+ /* Mobile History Section */
1908
+ .custom-fee-mobile-wrapper {
1909
+ display: flex;
1910
+ flex-direction: column;
1911
+ gap: 16px;
1912
+ }
1913
+
1914
+ .custom-fee-mobile-history {
1915
+ background: white;
1916
+ border: 1px solid #E0E0E0;
1917
+ overflow: hidden;
1918
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
1919
+ margin-top: 20px;
1920
+ }
1921
+
1922
+ .custom-fee-history-toggle-mobile {
1923
+ display: flex;
1924
+ justify-content: space-between;
1925
+ align-items: center;
1926
+ padding: 16px;
1927
+ cursor: pointer;
1928
+ background: linear-gradient(135deg, #F5F7FA 0%, #F0F3F8 100%);
1929
+ border-bottom: 1px solid #E0E0E0;
1930
+ transition: all 0.2s ease;
1931
+
1932
+ &:active {
1933
+ background: linear-gradient(135deg, #F0F3F8 0%, #E8ECFA 100%);
1934
+ }
1935
+ }
1936
+
1937
+ .custom-fee-history-title {
1938
+ font-weight: 700;
1939
+ font-size: 14px;
1940
+ color: #1A1A1A;
1941
+ text-transform: uppercase;
1942
+ letter-spacing: 0.5px;
1943
+ }
1944
+
1945
+ .custom-fee-history-icon {
1946
+ font-size: 12px;
1947
+ color: #666;
1948
+ font-weight: 600;
1949
+ }
1950
+
1951
+ .custom-fee-history-cards {
1952
+ display: flex;
1953
+ flex-direction: column;
1954
+ gap: 12px;
1955
+ }
1956
+
1957
+ .custom-fee-history-card {
1958
+ background: #F9F9F9;
1959
+ border: 1px solid #E8E8E8;
1960
+ border-radius: 6px;
1961
+ overflow: hidden;
1962
+ }
1963
+
1964
+ .custom-fee-history-card-header {
1965
+ background: #0d43a7;
1966
+ padding: 12px 16px;
1967
+ font-weight: 600;
1968
+ font-size: 15px;
1969
+ color: white;
1970
+ border-bottom: 1px solid #0d43a7;
1971
+ text-transform: uppercase;
1972
+ letter-spacing: 0.3px;
1973
+ }
1974
+
1975
+ .custom-fee-history-card-content {
1976
+ padding: 12px 16px;
1977
+ display: flex;
1978
+ flex-direction: column;
1979
+ gap: 10px;
1980
+ }
1981
+
1982
+ .custom-fee-history-entry {
1983
+ padding: 8px 0;
1984
+ border-bottom: 1px solid #E8E8E8;
1985
+
1986
+ &:last-child {
1987
+ border-bottom: none;
1988
+ }
1989
+ }
1990
+
1991
+ .custom-fee-history-item {
1992
+ font-size: 14px;
1993
+ color: #555;
1994
+ line-height: 1.5;
1995
+ word-break: break-word;
1996
+ }
1997
+
1998
+ .custom-fee-history-label-bold {
1999
+ color: #333;
2000
+ font-weight: 700;
2001
+ font-size: 15px;
2002
+ margin-right: 4px;
2003
+ }
2004
+
1762
2005
  /* NOC Document Checklist Table Wrapper */
1763
2006
  .checklist-document-table-wrapper {
1764
2007
  overflow-x: auto;
@@ -1809,7 +2052,7 @@ input[type="date"] {
1809
2052
  }
1810
2053
 
1811
2054
  .checklist-table-cell-doc-name {
1812
- font-size: 13px;
2055
+ font-size: 16px;
1813
2056
  min-width: 150px;
1814
2057
  }
1815
2058
 
@@ -1824,8 +2067,21 @@ input[type="date"] {
1824
2067
  .checklist-table-input {
1825
2068
  width: 100%;
1826
2069
  padding: 8px;
1827
- border: 1px solid #ccc;
2070
+
1828
2071
  border-radius: 4px;
1829
2072
  font-size: 13px;
1830
2073
  box-sizing: border-box;
1831
2074
  }
2075
+ @media (min-width: 1024px) {
2076
+ .data-card{
2077
+ .employee-card-sub-heade {
2078
+ margin-bottom: 40px;
2079
+ font-size: 18px;
2080
+ font-weight: 700;
2081
+ color: #1e293b;
2082
+ text-align: left;
2083
+ text-transform: uppercase;
2084
+ letter-spacing: .4px;
2085
+ }
2086
+ }
2087
+ }
@@ -218,6 +218,7 @@
218
218
  color: #374151;
219
219
  line-height: 1.6;
220
220
  overflow-wrap: break-word;
221
+ word-break: break-word;
221
222
  }
222
223
 
223
224
  .custom-doc-container {