@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/src/components/bmc.scss
CHANGED
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
}
|
|
16
16
|
body,
|
|
17
17
|
html {
|
|
18
|
+
font-family: "Poppins", sans-serif !important;
|
|
18
19
|
font-size: var(--base-font-size);
|
|
19
|
-
font-family: "Poppins", sans-serif;
|
|
20
20
|
}
|
|
21
21
|
body {
|
|
22
22
|
background-color: var(--background-color);
|
|
@@ -1626,60 +1626,283 @@ body {
|
|
|
1626
1626
|
font-weight: 100;
|
|
1627
1627
|
}
|
|
1628
1628
|
|
|
1629
|
+
/* ============================================
|
|
1630
|
+
CITIZEN SIDEBAR - Collapsed/Expanded Design
|
|
1631
|
+
============================================ */
|
|
1632
|
+
|
|
1633
|
+
/* --- SideBarStatic container (outer wrapper in flex layout) --- */
|
|
1629
1634
|
.SideBarStatic {
|
|
1630
1635
|
width: 60px;
|
|
1631
|
-
|
|
1632
|
-
overflow: hidden;
|
|
1636
|
+
overflow: visible;
|
|
1633
1637
|
height: 100%;
|
|
1638
|
+
z-index: 100;
|
|
1639
|
+
flex-shrink: 0;
|
|
1634
1640
|
}
|
|
1635
1641
|
|
|
1636
|
-
/*
|
|
1642
|
+
/* --- drawer-desktop (the actual fixed sidebar panel) --- */
|
|
1637
1643
|
.drawer-desktop {
|
|
1638
1644
|
width: 60px;
|
|
1639
|
-
transition:
|
|
1645
|
+
transition: width 0.3s ease;
|
|
1640
1646
|
height: 100%;
|
|
1647
|
+
overflow: hidden;
|
|
1648
|
+
overflow-y: auto;
|
|
1649
|
+
font-family: 'Open Sans', sans-serif;
|
|
1650
|
+
background-color: #f5eacd;
|
|
1651
|
+
position: fixed;
|
|
1652
|
+
top: 0;
|
|
1653
|
+
bottom: 0;
|
|
1654
|
+
left: 0;
|
|
1655
|
+
padding-top: 80px;
|
|
1656
|
+
z-index: 100;
|
|
1657
|
+
box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06);
|
|
1641
1658
|
}
|
|
1642
1659
|
|
|
1643
1660
|
.drawer-desktop:hover {
|
|
1644
|
-
width:
|
|
1645
|
-
|
|
1661
|
+
width: 220px;
|
|
1662
|
+
box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
|
|
1646
1663
|
}
|
|
1647
1664
|
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1665
|
+
/* --- Profile Section --- */
|
|
1666
|
+
.drawer-desktop .profile-section {
|
|
1667
|
+
display: flex;
|
|
1668
|
+
flex-direction: column;
|
|
1669
|
+
align-items: center;
|
|
1670
|
+
padding: 16px 8px 0 8px;
|
|
1671
|
+
background-color: transparent;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
/* Profile image - collapsed: small circle centered in 60px */
|
|
1675
|
+
.drawer-desktop .profile-section img {
|
|
1676
|
+
width: 36px !important;
|
|
1677
|
+
height: 36px !important;
|
|
1678
|
+
object-fit: cover;
|
|
1679
|
+
object-position: center;
|
|
1680
|
+
border-radius: 50%;
|
|
1681
|
+
margin: 0 auto 8px !important;
|
|
1682
|
+
transition: width 0.3s ease, height 0.3s ease;
|
|
1683
|
+
border: 2px solid #C8850A;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
/* Profile image - expanded: larger */
|
|
1687
|
+
.drawer-desktop:hover .profile-section img {
|
|
1688
|
+
width: 72px !important;
|
|
1689
|
+
height: 72px !important;
|
|
1690
|
+
margin-bottom: 12px !important;
|
|
1651
1691
|
}
|
|
1652
1692
|
|
|
1693
|
+
/* Profile name - hidden when collapsed */
|
|
1653
1694
|
.drawer-desktop .profile-section .name-Profile {
|
|
1654
1695
|
display: none;
|
|
1655
|
-
/* Hide profile name when collapsed */
|
|
1656
1696
|
}
|
|
1657
1697
|
|
|
1658
1698
|
.drawer-desktop:hover .profile-section .name-Profile {
|
|
1659
1699
|
display: block;
|
|
1660
|
-
/* Show profile name when expanded */
|
|
1661
1700
|
}
|
|
1662
1701
|
|
|
1702
|
+
.drawer-desktop .profile-section .name-Profile .label-text {
|
|
1703
|
+
text-align: center;
|
|
1704
|
+
font-weight: 700;
|
|
1705
|
+
font-size: 15px;
|
|
1706
|
+
color: #0b0c0c;
|
|
1707
|
+
letter-spacing: 0.3px;
|
|
1708
|
+
line-height: 1.3;
|
|
1709
|
+
white-space: nowrap;
|
|
1710
|
+
overflow: hidden;
|
|
1711
|
+
text-overflow: ellipsis;
|
|
1712
|
+
max-width: 190px;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
/* Profile location/phone - hidden when collapsed */
|
|
1663
1716
|
.drawer-desktop .profile-section .loc-Profile {
|
|
1664
1717
|
display: none;
|
|
1665
|
-
/* Hide profile location when collapsed */
|
|
1666
1718
|
}
|
|
1667
1719
|
|
|
1668
1720
|
.drawer-desktop:hover .profile-section .loc-Profile {
|
|
1669
1721
|
display: block;
|
|
1670
|
-
/* Show profile location when expanded */
|
|
1671
1722
|
}
|
|
1672
1723
|
|
|
1673
|
-
.drawer-desktop .profile-section .label-text {
|
|
1724
|
+
.drawer-desktop .profile-section .loc-Profile .label-text {
|
|
1674
1725
|
text-align: center;
|
|
1726
|
+
font-size: 13px;
|
|
1727
|
+
color: #767676;
|
|
1728
|
+
white-space: nowrap;
|
|
1729
|
+
overflow: hidden;
|
|
1730
|
+
text-overflow: ellipsis;
|
|
1731
|
+
max-width: 190px;
|
|
1675
1732
|
}
|
|
1676
1733
|
|
|
1677
|
-
|
|
1678
|
-
|
|
1734
|
+
/* Profile divider - hidden when collapsed */
|
|
1735
|
+
.drawer-desktop .profile-section .profile-divider {
|
|
1736
|
+
display: none;
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
.drawer-desktop:hover .profile-section .profile-divider {
|
|
1740
|
+
display: block;
|
|
1741
|
+
border-top: 1px solid #d6d5d4;
|
|
1742
|
+
width: 85%;
|
|
1743
|
+
margin: 12px auto 4px;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
/* --- Menu Items --- */
|
|
1747
|
+
|
|
1748
|
+
.drawer-desktop .sidebar-list {
|
|
1749
|
+
padding: 4px 8px !important;
|
|
1750
|
+
margin: 0;
|
|
1751
|
+
border-left: none !important;
|
|
1679
1752
|
}
|
|
1680
1753
|
|
|
1681
|
-
.
|
|
1682
|
-
|
|
1754
|
+
.drawer-desktop .sidebar-list.active {
|
|
1755
|
+
border-left: none !important;
|
|
1756
|
+
padding-left: 8px !important;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.drawer-desktop .sidebar-list.active .menu-label {
|
|
1760
|
+
color: #b08905;
|
|
1761
|
+
font-weight: 600;
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
.drawer-desktop .sidebar-list.active .icon {
|
|
1765
|
+
fill: #b08905 !important;
|
|
1766
|
+
color: #b08905 !important;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1769
|
+
.drawer-desktop .menu-item {
|
|
1770
|
+
display: flex !important;
|
|
1771
|
+
align-items: center;
|
|
1772
|
+
min-height: 42px;
|
|
1773
|
+
line-height: 42px;
|
|
1774
|
+
padding: 0;
|
|
1775
|
+
cursor: pointer;
|
|
1776
|
+
border-radius: 10px;
|
|
1777
|
+
transition: background-color 0.2s ease;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.drawer-desktop .menu-item:hover {
|
|
1781
|
+
background-color: rgba(200, 133, 10, 0.08);
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
/* Active: gold-tinted pill background on the menu-item */
|
|
1785
|
+
.drawer-desktop .sidebar-list.active .menu-item {
|
|
1786
|
+
background-color: rgba(176, 137, 5, 0.14);
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
/* Icon - centered in 60px when collapsed */
|
|
1790
|
+
.drawer-desktop .menu-item .icon {
|
|
1791
|
+
display: flex !important;
|
|
1792
|
+
align-items: center;
|
|
1793
|
+
justify-content: center;
|
|
1794
|
+
float: none !important;
|
|
1795
|
+
width: 21px !important;
|
|
1796
|
+
height: 21px !important;
|
|
1797
|
+
min-width: 21px;
|
|
1798
|
+
margin: 0 !important;
|
|
1799
|
+
margin-left: 11px !important;
|
|
1800
|
+
margin-right: 11px !important;
|
|
1801
|
+
fill: rgb(117, 117, 117);
|
|
1802
|
+
color: rgb(117, 117, 117);
|
|
1803
|
+
transition: fill 0.2s ease, color 0.2s ease, margin 0.3s ease;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
/* Menu label - hidden when collapsed */
|
|
1807
|
+
.drawer-desktop .menu-item .menu-label {
|
|
1808
|
+
display: none;
|
|
1809
|
+
margin-left: 0;
|
|
1810
|
+
font-size: 14px;
|
|
1811
|
+
color: #5f5c62;
|
|
1812
|
+
white-space: normal !important;
|
|
1813
|
+
word-wrap: break-word;
|
|
1814
|
+
overflow: visible !important;
|
|
1815
|
+
text-overflow: unset !important;
|
|
1816
|
+
line-height: 1.3;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
/* Show labels on hover (expanded state) */
|
|
1820
|
+
.drawer-desktop:hover .menu-item .menu-label {
|
|
1821
|
+
display: block;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
/* Adjust icon margin when expanded */
|
|
1825
|
+
.drawer-desktop:hover .menu-item .icon {
|
|
1826
|
+
margin-left: 12px !important;
|
|
1827
|
+
margin-right: 10px !important;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
/* Expanded: add left border indicator to active item */
|
|
1831
|
+
.drawer-desktop:hover .sidebar-list.active {
|
|
1832
|
+
border-left: 3px solid #b08905;
|
|
1833
|
+
padding-left: 5px;
|
|
1834
|
+
border-radius: 0 10px 10px 0;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
/* --- Scrollbar styling --- */
|
|
1838
|
+
.drawer-desktop::-webkit-scrollbar {
|
|
1839
|
+
width: 4px;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.drawer-desktop::-webkit-scrollbar-track {
|
|
1843
|
+
background: transparent;
|
|
1844
|
+
}
|
|
1845
|
+
|
|
1846
|
+
.drawer-desktop::-webkit-scrollbar-thumb {
|
|
1847
|
+
background-color: rgba(176, 137, 5, 0.3);
|
|
1848
|
+
border-radius: 4px;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
.drawer-desktop::-webkit-scrollbar-thumb:hover {
|
|
1852
|
+
background-color: rgba(176, 137, 5, 0.5);
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
/* --- Link styling --- */
|
|
1856
|
+
.drawer-desktop .sidebar-list a {
|
|
1857
|
+
text-decoration: none;
|
|
1858
|
+
color: inherit;
|
|
1859
|
+
display: block;
|
|
1860
|
+
width: 100%;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
/* Menu wrapper */
|
|
1864
|
+
.drawer-desktop .drawer-menu-list {
|
|
1865
|
+
padding-top: 4px;
|
|
1866
|
+
background-color: #f5eacd;
|
|
1867
|
+
}
|
|
1868
|
+
|
|
1869
|
+
/* --- Content width overrides (sidebar is 60px, not 219px) --- */
|
|
1870
|
+
@media (min-width: 780px) {
|
|
1871
|
+
.SideBarStatic {
|
|
1872
|
+
width: 60px;
|
|
1873
|
+
background: transparent;
|
|
1874
|
+
margin-top: -24px;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.moduleLinkHomePage {
|
|
1878
|
+
width: calc(100% - 60px) !important;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.citizen-form-wrapper {
|
|
1882
|
+
width: calc(100% - 60px) !important;
|
|
1883
|
+
}
|
|
1884
|
+
|
|
1885
|
+
.citizen-obps-wrapper,
|
|
1886
|
+
.selection-card-wrapper,
|
|
1887
|
+
.fsm-citizen-wrapper,
|
|
1888
|
+
.pgr-citizen-wrapper,
|
|
1889
|
+
.pt-citizen,
|
|
1890
|
+
.bill-citizen,
|
|
1891
|
+
.bills-citizen-wrapper,
|
|
1892
|
+
.payer-bills-citizen-wrapper,
|
|
1893
|
+
.engagement-citizen-wrapper,
|
|
1894
|
+
.citizen-all-services-wrapper,
|
|
1895
|
+
.mcollect-citizen,
|
|
1896
|
+
.ws-citizen-wrapper,
|
|
1897
|
+
.tl-citizen {
|
|
1898
|
+
width: calc(100% - 60px) !important;
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
@media (max-width: 780px) {
|
|
1903
|
+
.SideBarStatic {
|
|
1904
|
+
display: none;
|
|
1905
|
+
}
|
|
1683
1906
|
}
|
|
1684
1907
|
|
|
1685
1908
|
.card p.message-text {
|
|
@@ -1946,6 +2169,154 @@ button.submit-bar:hover {
|
|
|
1946
2169
|
width: auto;
|
|
1947
2170
|
padding: 0;
|
|
1948
2171
|
}
|
|
2172
|
+
.deonar-flowchart .employee .ground-container {
|
|
2173
|
+
margin-bottom: 0px !important;
|
|
2174
|
+
}
|
|
2175
|
+
.flowchart-header {
|
|
2176
|
+
--r: 70px;
|
|
2177
|
+
|
|
2178
|
+
line-height: 3;
|
|
2179
|
+
padding-inline: 1em;
|
|
2180
|
+
border-inline: var(--r) solid #0000;
|
|
2181
|
+
border-radius: calc(2*var(--r)) calc(2*var(--r)) 0 0/var(--r);
|
|
2182
|
+
mask:
|
|
2183
|
+
radial-gradient(var(--r) at var(--r) 0,#0000 98%,#000 101%)
|
|
2184
|
+
calc(-1*var(--r)) 100%/100% var(--r) repeat-x,
|
|
2185
|
+
conic-gradient(#000 0 0) padding-box;
|
|
2186
|
+
background: #bd5532 border-box;
|
|
2187
|
+
width: fit-content;
|
|
2188
|
+
background-color: rgb(229 116 0);
|
|
2189
|
+
color: white;
|
|
2190
|
+
font-weight: 700;
|
|
2191
|
+
}
|
|
2192
|
+
.verify-receipt-page .citizen .main {
|
|
2193
|
+
width: 100%;
|
|
2194
|
+
padding-top: 82px;
|
|
2195
|
+
justify-content: center;
|
|
2196
|
+
}
|
|
2197
|
+
.verify-receipt-page .verify-reciept-main {
|
|
2198
|
+
max-width: 700px;
|
|
2199
|
+
width: 100%;
|
|
2200
|
+
padding: 12px;
|
|
2201
|
+
background-color: #f3f4f6;
|
|
2202
|
+
box-sizing: border-box;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
.verify-receipt-page .verify-reciept-card {
|
|
2206
|
+
padding: 16px;
|
|
2207
|
+
border-radius: 12px;
|
|
2208
|
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
|
2209
|
+
background-color: #ffffff;
|
|
2210
|
+
width: 100%;
|
|
2211
|
+
box-sizing: border-box;
|
|
2212
|
+
overflow-x: hidden;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.verify-receipt-page .verify-reciept-card-header {
|
|
2216
|
+
color: #1f2937;
|
|
2217
|
+
border-bottom: 1px solid #e5e7eb;
|
|
2218
|
+
padding-bottom: 12px;
|
|
2219
|
+
margin-bottom: 16px;
|
|
2220
|
+
font-size: clamp(16px, 4vw, 20px);
|
|
2221
|
+
font-weight: 700;
|
|
2222
|
+
display: flex;
|
|
2223
|
+
align-items: center;
|
|
2224
|
+
gap: 8px;
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
.verify-receipt-page .verify-reciept-header-icon {
|
|
2228
|
+
width: 28px;
|
|
2229
|
+
height: 28px;
|
|
2230
|
+
border-radius: 50%;
|
|
2231
|
+
background-color: #2563eb;
|
|
2232
|
+
display: inline-flex;
|
|
2233
|
+
align-items: center;
|
|
2234
|
+
justify-content: center;
|
|
2235
|
+
flex-shrink: 0;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.verify-receipt-page .verify-reciept-row {
|
|
2239
|
+
display: flex;
|
|
2240
|
+
flex-direction: row;
|
|
2241
|
+
justify-content: space-between;
|
|
2242
|
+
align-items: flex-start;
|
|
2243
|
+
padding: 10px 0;
|
|
2244
|
+
border-bottom: 1px solid #f3f4f6;
|
|
2245
|
+
gap: 8px;
|
|
2246
|
+
flex-wrap: wrap;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
.verify-receipt-page .verify-reciept-row.last {
|
|
2250
|
+
border-bottom: none;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
.verify-receipt-page .verify-reciept-label {
|
|
2254
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
2255
|
+
color: #6b7280;
|
|
2256
|
+
font-weight: 500;
|
|
2257
|
+
flex: 1 1 40%;
|
|
2258
|
+
min-width: 120px;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
.verify-receipt-page .verify-reciept-value {
|
|
2262
|
+
font-size: clamp(12px, 3vw, 14px);
|
|
2263
|
+
color: #1f2937;
|
|
2264
|
+
font-weight: 400;
|
|
2265
|
+
flex: 1 1 50%;
|
|
2266
|
+
text-align: right;
|
|
2267
|
+
word-break: break-word;
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
.verify-receipt-page .verify-reciept-value.bold {
|
|
2271
|
+
font-weight: 600;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.verify-receipt-page .verify-reciept-badge {
|
|
2275
|
+
font-weight: 700;
|
|
2276
|
+
color: #2563eb;
|
|
2277
|
+
font-size: clamp(13px, 3.5vw, 15px);
|
|
2278
|
+
background: #eff6ff;
|
|
2279
|
+
padding: 2px 8px;
|
|
2280
|
+
border-radius: 6px;
|
|
2281
|
+
display: inline-block;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
.verify-receipt-page .verify-reciept-amount {
|
|
2285
|
+
color: #059669;
|
|
2286
|
+
font-weight: 700;
|
|
2287
|
+
font-size: clamp(14px, 4vw, 18px);
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
.verify-receipt-page .verify-reciept-error-card {
|
|
2291
|
+
padding: 20px;
|
|
2292
|
+
border-radius: 12px;
|
|
2293
|
+
margin: 16px;
|
|
2294
|
+
background-color: #fff5f5;
|
|
2295
|
+
border: 1px solid #fecaca;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2298
|
+
.verify-receipt-page .verify-reciept-error-label {
|
|
2299
|
+
color: #dc2626;
|
|
2300
|
+
font-weight: 600;
|
|
2301
|
+
text-align: center;
|
|
2302
|
+
font-size: clamp(13px, 3.5vw, 15px);
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
.verify-receipt-page .verify-reciept-section-title {
|
|
2306
|
+
font-size: 11px;
|
|
2307
|
+
font-weight: 600;
|
|
2308
|
+
color: #9ca3af;
|
|
2309
|
+
text-transform: uppercase;
|
|
2310
|
+
letter-spacing: 0.08em;
|
|
2311
|
+
padding: 10px 0 4px;
|
|
2312
|
+
}
|
|
2313
|
+
.add-citizen-form-fields .bmc-col3-card {
|
|
2314
|
+
width: 100%;
|
|
2315
|
+
}
|
|
2316
|
+
.deonar-modal-close-btn-wrapper svg {
|
|
2317
|
+
fill: #fff;
|
|
2318
|
+
}
|
|
2319
|
+
|
|
1949
2320
|
/* Extra Small Mobile Phones (up to 320px) */
|
|
1950
2321
|
@media screen and (max-width: 320px) {
|
|
1951
2322
|
.mobile-CardWrapper {
|
|
@@ -2029,3 +2400,288 @@ button.submit-bar:hover {
|
|
|
2029
2400
|
}
|
|
2030
2401
|
}
|
|
2031
2402
|
|
|
2403
|
+
|
|
2404
|
+
|
|
2405
|
+
@media screen and (max-width: 400px) {
|
|
2406
|
+
.verify-receipt-page .verify-reciept-value {
|
|
2407
|
+
text-align: left;
|
|
2408
|
+
}
|
|
2409
|
+
.verify-receipt-page .citizen .main {
|
|
2410
|
+
padding-top: 60px;
|
|
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;
|
|
2687
|
+
}
|