@tattvafoundation/upyog-css 1.0.35 → 1.0.38
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 +220 -7
- package/dist/index.min.css +1 -1
- package/package.json +2 -2
- package/src/components/bmc.scss +176 -9
- package/src/components/multicolumn.scss +16 -1
package/package.json
CHANGED
package/src/components/bmc.scss
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
body,
|
|
17
17
|
html {
|
|
18
18
|
font-size: var(--base-font-size);
|
|
19
|
+
font-family: "Poppins", sans-serif;
|
|
19
20
|
}
|
|
20
21
|
body {
|
|
21
22
|
background-color: var(--background-color);
|
|
@@ -105,6 +106,11 @@ body {
|
|
|
105
106
|
.TLComments p {
|
|
106
107
|
font-size: 16px;
|
|
107
108
|
}
|
|
109
|
+
.bmc-label {
|
|
110
|
+
margin-bottom: 2px;
|
|
111
|
+
font-size: 14px;
|
|
112
|
+
font-weight: 500;
|
|
113
|
+
}
|
|
108
114
|
|
|
109
115
|
.bmc-tooltip {
|
|
110
116
|
position: absolute;
|
|
@@ -276,11 +282,11 @@ body {
|
|
|
276
282
|
.bmc-row-card-header {
|
|
277
283
|
background-color: #ffffff;
|
|
278
284
|
border: 1px solid var(--border-color);
|
|
279
|
-
border-radius:
|
|
285
|
+
border-radius: 8px;
|
|
280
286
|
box-shadow: 0 5px 10px var(--shadow-color);
|
|
281
287
|
padding: 2rem;
|
|
282
288
|
max-width: 100%;
|
|
283
|
-
margin-bottom:
|
|
289
|
+
margin-bottom: 0.5rem;
|
|
284
290
|
transition: box-shadow 0.3s ease;
|
|
285
291
|
}
|
|
286
292
|
|
|
@@ -404,10 +410,10 @@ body {
|
|
|
404
410
|
}
|
|
405
411
|
|
|
406
412
|
.bmc-title {
|
|
407
|
-
font-size:
|
|
413
|
+
font-size: 20px;
|
|
408
414
|
font-weight: bold;
|
|
409
415
|
color: var(--secondary-color);
|
|
410
|
-
padding-bottom:
|
|
416
|
+
padding-bottom: 10px;
|
|
411
417
|
}
|
|
412
418
|
|
|
413
419
|
/* Grid and Table */
|
|
@@ -672,17 +678,17 @@ body {
|
|
|
672
678
|
.bmc-row-card-header {
|
|
673
679
|
background-color: #fff;
|
|
674
680
|
border: 1px solid #ddd;
|
|
675
|
-
border-radius:
|
|
681
|
+
border-radius: 8px;
|
|
676
682
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
|
|
677
683
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
|
|
678
|
-
padding:
|
|
684
|
+
padding: 1.5rem;
|
|
679
685
|
max-width: 100%;
|
|
680
686
|
-webkit-transition: -webkit-box-shadow 0.3s ease;
|
|
681
687
|
transition: -webkit-box-shadow 0.3s ease;
|
|
682
688
|
transition: box-shadow 0.3s ease;
|
|
683
689
|
transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
|
|
684
690
|
transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
|
|
685
|
-
margin-bottom:
|
|
691
|
+
margin-bottom: .5rem;
|
|
686
692
|
}
|
|
687
693
|
|
|
688
694
|
.bmc-card-row,
|
|
@@ -808,10 +814,10 @@ body {
|
|
|
808
814
|
}
|
|
809
815
|
|
|
810
816
|
.bmc-title {
|
|
811
|
-
font-size:
|
|
817
|
+
font-size: 20px;
|
|
812
818
|
font-weight: 700;
|
|
813
819
|
color: #0b0c0c;
|
|
814
|
-
padding-bottom:
|
|
820
|
+
padding-bottom: 10px;
|
|
815
821
|
}
|
|
816
822
|
|
|
817
823
|
.bmc-card-button {
|
|
@@ -949,6 +955,20 @@ body {
|
|
|
949
955
|
text-align: center;
|
|
950
956
|
}
|
|
951
957
|
|
|
958
|
+
.loader {
|
|
959
|
+
border: 3px solid #f3f3f3;
|
|
960
|
+
border-top: 3px solid #d1b03f;
|
|
961
|
+
border-radius: 50%;
|
|
962
|
+
animation: spin .5s linear infinite;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
@keyframes spin {
|
|
966
|
+
0% { transform: rotate(0deg); }
|
|
967
|
+
100% { transform: rotate(360deg); }
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
|
|
971
|
+
|
|
952
972
|
@media only screen and (max-width: 768px) {
|
|
953
973
|
.bmc-card-aadharimage {
|
|
954
974
|
display: none;
|
|
@@ -1721,6 +1741,153 @@ button.submit-bar:hover {
|
|
|
1721
1741
|
text-align: center;
|
|
1722
1742
|
color: red;
|
|
1723
1743
|
}
|
|
1744
|
+
.bmc-input-field input,
|
|
1745
|
+
.bmc-input-field textarea,
|
|
1746
|
+
.bmc-date-picker input,
|
|
1747
|
+
.multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master {
|
|
1748
|
+
border-radius: 6px;
|
|
1749
|
+
border: 1px solid #d1d5db;
|
|
1750
|
+
padding: 8px;
|
|
1751
|
+
height: 2.4rem !important;
|
|
1752
|
+
transition: border-color 0.3s ease-in-out;
|
|
1753
|
+
font-size: 15px;
|
|
1754
|
+
&:disabled {
|
|
1755
|
+
border-color: #9ca3af;
|
|
1756
|
+
}
|
|
1757
|
+
&:focus {
|
|
1758
|
+
border-color: #b08905;
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
&:hover {
|
|
1762
|
+
border-color: #b08905 !important;
|
|
1763
|
+
}
|
|
1764
|
+
}
|
|
1765
|
+
.multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master-active {
|
|
1766
|
+
border-color: #b08905;
|
|
1767
|
+
border-radius: 6px;
|
|
1768
|
+
height: 2.4rem !important;
|
|
1769
|
+
}
|
|
1770
|
+
.multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master-active input {
|
|
1771
|
+
border-radius: 6px;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
.bmc-input-field .select {
|
|
1775
|
+
height: 2.4rem !important;
|
|
1776
|
+
background-color: white !important;
|
|
1777
|
+
border-radius: 6px;
|
|
1778
|
+
border: 1px solid #d1d5db;
|
|
1779
|
+
padding: 8px;
|
|
1780
|
+
transition: border-color 0.3s ease-in-out;
|
|
1781
|
+
font-size: 15px;
|
|
1782
|
+
&:disabled {
|
|
1783
|
+
border-color: #9ca3af;
|
|
1784
|
+
}
|
|
1785
|
+
&:focus {
|
|
1786
|
+
border-color: #b08905;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
&:hover {
|
|
1790
|
+
border-color: #b08905 !important;
|
|
1791
|
+
}
|
|
1792
|
+
}
|
|
1793
|
+
.bmc-input-field .select input {
|
|
1794
|
+
border: none;
|
|
1795
|
+
top: 50%;
|
|
1796
|
+
transform: translateY(-50%);
|
|
1797
|
+
padding: 0 !important;
|
|
1798
|
+
padding-left: 0 !important;
|
|
1799
|
+
}
|
|
1800
|
+
.bmc-input-field .select-active {
|
|
1801
|
+
border: 1px solid #b08905;
|
|
1802
|
+
border-radius: 6px;
|
|
1803
|
+
}
|
|
1804
|
+
.bmc-input-field .select-active input {
|
|
1805
|
+
border: none;
|
|
1806
|
+
box-shadow: none;
|
|
1807
|
+
border-radius: 6px;
|
|
1808
|
+
font-size: 15px;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
.bmc-input-field .select img, .bmc-input-field .select svg {
|
|
1812
|
+
top: 50%;
|
|
1813
|
+
transform: translateY(-50%);
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1816
|
+
.bmc-marquee-container {
|
|
1817
|
+
position: absolute;
|
|
1818
|
+
top: 0;
|
|
1819
|
+
left: 0;
|
|
1820
|
+
width: 100%;
|
|
1821
|
+
height: 100%;
|
|
1822
|
+
overflow: hidden;
|
|
1823
|
+
pointer-events: none;
|
|
1824
|
+
z-index: 1;
|
|
1825
|
+
display: flex;
|
|
1826
|
+
align-items: center;
|
|
1827
|
+
border-radius: 6px;
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.bmc-marquee-content {
|
|
1831
|
+
display: inline-block;
|
|
1832
|
+
white-space: nowrap;
|
|
1833
|
+
padding-left: 100%;
|
|
1834
|
+
animation: marquee 15s linear infinite;
|
|
1835
|
+
color: #9ca3af;
|
|
1836
|
+
font-size: 16px;
|
|
1837
|
+
}
|
|
1838
|
+
.bmc-radio-button-container .radio-wrap label {
|
|
1839
|
+
font-size: 14px;
|
|
1840
|
+
line-height: 16px;
|
|
1841
|
+
margin-left: 10px;
|
|
1842
|
+
}
|
|
1843
|
+
.bmc-radio-button-container .radio-wrap div:last-child {
|
|
1844
|
+
margin-bottom: 0px;
|
|
1845
|
+
}
|
|
1846
|
+
.bmc-radio-button-container.inspection .radio-wrap div:nth-child(3) {
|
|
1847
|
+
display: flex;
|
|
1848
|
+
align-items: center;
|
|
1849
|
+
}
|
|
1850
|
+
.bmc-radio-button-container.inspection .radio-wrap div:nth-child(3) label {
|
|
1851
|
+
line-height: 20px;
|
|
1852
|
+
}
|
|
1853
|
+
.bmc-submit-btn {
|
|
1854
|
+
border-bottom: 2px solid #8f6d0d;
|
|
1855
|
+
outline: none;
|
|
1856
|
+
background-color: rgb(209, 176, 63);
|
|
1857
|
+
cursor: pointer;
|
|
1858
|
+
border-radius: 6px;
|
|
1859
|
+
transition: all 0.3s ease-in-out;
|
|
1860
|
+
}
|
|
1861
|
+
.bmc-submit-btn:hover{
|
|
1862
|
+
background-color: rgb(209, 176, 63) !important;
|
|
1863
|
+
box-shadow: none !important;
|
|
1864
|
+
border-bottom: none !important;
|
|
1865
|
+
border-radius: 6px;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.bmc-submit-btn:disabled {
|
|
1869
|
+
background: gray;
|
|
1870
|
+
cursor: not-allowed;
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
@keyframes marquee {
|
|
1874
|
+
0% {
|
|
1875
|
+
transform: translateX(0);
|
|
1876
|
+
}
|
|
1877
|
+
100% {
|
|
1878
|
+
transform: translateX(-100%);
|
|
1879
|
+
}
|
|
1880
|
+
}
|
|
1881
|
+
.bmc-input-field
|
|
1882
|
+
.checkbox-no-height {
|
|
1883
|
+
height: auto !important;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.bmc-input-field input {
|
|
1887
|
+
background: transparent !important;
|
|
1888
|
+
position: relative;
|
|
1889
|
+
z-index: 2;
|
|
1890
|
+
}
|
|
1724
1891
|
|
|
1725
1892
|
/* Extra Small Mobile Phones (up to 320px) */
|
|
1726
1893
|
@media screen and (max-width: 320px) {
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
line-height: 20px;
|
|
5
5
|
color: rgba(11, 12, 12, 1);
|
|
6
6
|
width: 100%;
|
|
7
|
+
|
|
8
|
+
|
|
7
9
|
|
|
8
10
|
.master,
|
|
9
11
|
.master-active {
|
|
@@ -11,7 +13,7 @@
|
|
|
11
13
|
border: 1px solid rgba(70, 70, 70, 1);
|
|
12
14
|
height: 2rem;
|
|
13
15
|
width: 100%;
|
|
14
|
-
|
|
16
|
+
|
|
15
17
|
input[type="text"] {
|
|
16
18
|
position: absolute;
|
|
17
19
|
top: 0;
|
|
@@ -40,11 +42,24 @@
|
|
|
40
42
|
width: 2rem;
|
|
41
43
|
}
|
|
42
44
|
}
|
|
45
|
+
input[type="text"]:disabled{
|
|
46
|
+
opacity: 0.5;
|
|
47
|
+
cursor: not-allowed;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.disabled {
|
|
51
|
+
opacity: 0.8;
|
|
52
|
+
cursor: not-allowed;
|
|
53
|
+
input {
|
|
54
|
+
cursor: not-allowed;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
43
57
|
|
|
44
58
|
&:hover {
|
|
45
59
|
border-color: rgba(168, 34, 39, 1);
|
|
46
60
|
}
|
|
47
61
|
}
|
|
62
|
+
|
|
48
63
|
|
|
49
64
|
.master-active {
|
|
50
65
|
border: 1px solid rgba(168, 34, 39, 1);
|