@tattvafoundation/upyog-css 1.0.38 → 1.0.39
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 +66 -4
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/bmc.scss +56 -3
package/package.json
CHANGED
package/src/components/bmc.scss
CHANGED
|
@@ -1762,6 +1762,30 @@ button.submit-bar:hover {
|
|
|
1762
1762
|
border-color: #b08905 !important;
|
|
1763
1763
|
}
|
|
1764
1764
|
}
|
|
1765
|
+
.bmc-input-field-textarea textarea{
|
|
1766
|
+
border-radius: 6px;
|
|
1767
|
+
border: 1px solid #d1d5db;
|
|
1768
|
+
padding: 8px;
|
|
1769
|
+
transition: border-color 0.3s ease-in-out;
|
|
1770
|
+
font-size: 15px;
|
|
1771
|
+
}
|
|
1772
|
+
.bmc-input-field-textarea textarea:disabled{
|
|
1773
|
+
border-color: #9ca3af;
|
|
1774
|
+
}
|
|
1775
|
+
.bmc-input-field-textarea textarea:focus{
|
|
1776
|
+
border-color: #b08905;
|
|
1777
|
+
}
|
|
1778
|
+
.bmc-input-field-textarea textarea:hover{
|
|
1779
|
+
border-color: #b08905 !important;
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
.bmc-input-field input:disabled,
|
|
1783
|
+
.bmc-input-field textarea:disabled,
|
|
1784
|
+
.bmc-date-picker input:disabled,
|
|
1785
|
+
.multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master:disabled{
|
|
1786
|
+
border-color: #9ca3af;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1765
1789
|
.multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master-active {
|
|
1766
1790
|
border-color: #b08905;
|
|
1767
1791
|
border-radius: 6px;
|
|
@@ -1812,6 +1836,9 @@ button.submit-bar:hover {
|
|
|
1812
1836
|
top: 50%;
|
|
1813
1837
|
transform: translateY(-50%);
|
|
1814
1838
|
}
|
|
1839
|
+
.bmc-input-field textarea{
|
|
1840
|
+
height: unset !important;
|
|
1841
|
+
}
|
|
1815
1842
|
|
|
1816
1843
|
.bmc-marquee-container {
|
|
1817
1844
|
position: absolute;
|
|
@@ -1850,6 +1877,24 @@ button.submit-bar:hover {
|
|
|
1850
1877
|
.bmc-radio-button-container.inspection .radio-wrap div:nth-child(3) label {
|
|
1851
1878
|
line-height: 20px;
|
|
1852
1879
|
}
|
|
1880
|
+
.bmc-print-btn {
|
|
1881
|
+
border-bottom: 2px solid #000000;
|
|
1882
|
+
outline: none;
|
|
1883
|
+
background-color: #0c8145;
|
|
1884
|
+
cursor: pointer;
|
|
1885
|
+
border-radius: 6px;
|
|
1886
|
+
transition: all 0.3s ease-in-out;
|
|
1887
|
+
display: flex;
|
|
1888
|
+
align-items: center;
|
|
1889
|
+
justify-content: center;
|
|
1890
|
+
}
|
|
1891
|
+
.bmc-print-btn:hover{
|
|
1892
|
+
background-color: #076233 !important;
|
|
1893
|
+
box-shadow: none !important;
|
|
1894
|
+
border-bottom: none !important;
|
|
1895
|
+
border-radius: 6px;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1853
1898
|
.bmc-submit-btn {
|
|
1854
1899
|
border-bottom: 2px solid #8f6d0d;
|
|
1855
1900
|
outline: none;
|
|
@@ -1857,6 +1902,9 @@ button.submit-bar:hover {
|
|
|
1857
1902
|
cursor: pointer;
|
|
1858
1903
|
border-radius: 6px;
|
|
1859
1904
|
transition: all 0.3s ease-in-out;
|
|
1905
|
+
display: flex;
|
|
1906
|
+
align-items: center;
|
|
1907
|
+
justify-content: center;
|
|
1860
1908
|
}
|
|
1861
1909
|
.bmc-submit-btn:hover{
|
|
1862
1910
|
background-color: rgb(209, 176, 63) !important;
|
|
@@ -1865,9 +1913,11 @@ button.submit-bar:hover {
|
|
|
1865
1913
|
border-radius: 6px;
|
|
1866
1914
|
}
|
|
1867
1915
|
|
|
1868
|
-
.bmc-submit-btn:disabled
|
|
1869
|
-
|
|
1916
|
+
.bmc-submit-btn:disabled,
|
|
1917
|
+
.bmc-print-btn:disabled {
|
|
1918
|
+
background: gray !important;
|
|
1870
1919
|
cursor: not-allowed;
|
|
1920
|
+
border: none;
|
|
1871
1921
|
}
|
|
1872
1922
|
|
|
1873
1923
|
@keyframes marquee {
|
|
@@ -1888,7 +1938,10 @@ button.submit-bar:hover {
|
|
|
1888
1938
|
position: relative;
|
|
1889
1939
|
z-index: 2;
|
|
1890
1940
|
}
|
|
1891
|
-
|
|
1941
|
+
.search-btn-wrapper .bmc-col3-card {
|
|
1942
|
+
width: auto;
|
|
1943
|
+
padding: 0;
|
|
1944
|
+
}
|
|
1892
1945
|
/* Extra Small Mobile Phones (up to 320px) */
|
|
1893
1946
|
@media screen and (max-width: 320px) {
|
|
1894
1947
|
.mobile-CardWrapper {
|