@tattvafoundation/upyog-css 1.0.36 → 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/dist/index.css
CHANGED
|
@@ -11594,6 +11594,26 @@ button.submit-bar:hover {
|
|
|
11594
11594
|
.bmc-date-picker input:hover, .bmc-date-picker .checkbox-wrap .input-emp:hover, .checkbox-wrap .bmc-date-picker .input-emp:hover, .bmc-input-field input:hover, .bmc-input-field .checkbox-wrap .input-emp:hover, .checkbox-wrap .bmc-input-field .input-emp:hover, .bmc-input-field textarea:hover, .multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master:hover {
|
|
11595
11595
|
border-color: #b08905 !important; }
|
|
11596
11596
|
|
|
11597
|
+
.bmc-input-field-textarea textarea {
|
|
11598
|
+
border-radius: 6px;
|
|
11599
|
+
border: 1px solid #d1d5db;
|
|
11600
|
+
padding: 8px;
|
|
11601
|
+
-webkit-transition: border-color .3s ease-in-out;
|
|
11602
|
+
transition: border-color .3s ease-in-out;
|
|
11603
|
+
font-size: 15px; }
|
|
11604
|
+
|
|
11605
|
+
.bmc-input-field-textarea textarea:disabled {
|
|
11606
|
+
border-color: #9ca3af; }
|
|
11607
|
+
|
|
11608
|
+
.bmc-input-field-textarea textarea:focus {
|
|
11609
|
+
border-color: #b08905; }
|
|
11610
|
+
|
|
11611
|
+
.bmc-input-field-textarea textarea:hover {
|
|
11612
|
+
border-color: #b08905 !important; }
|
|
11613
|
+
|
|
11614
|
+
.bmc-date-picker input:disabled, .bmc-date-picker .checkbox-wrap .input-emp:disabled, .checkbox-wrap .bmc-date-picker .input-emp:disabled, .bmc-input-field input:disabled, .bmc-input-field .checkbox-wrap .input-emp:disabled, .checkbox-wrap .bmc-input-field .input-emp:disabled, .bmc-input-field textarea:disabled, .multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master:disabled {
|
|
11615
|
+
border-color: #9ca3af; }
|
|
11616
|
+
|
|
11597
11617
|
.multi-column-dropdown-wrap.bmc-multicolumn-dropdown-wrap .master-active {
|
|
11598
11618
|
border-color: #b08905;
|
|
11599
11619
|
border-radius: 6px;
|
|
@@ -11641,6 +11661,9 @@ button.submit-bar:hover {
|
|
|
11641
11661
|
-webkit-transform: translateY(-50%);
|
|
11642
11662
|
transform: translateY(-50%); }
|
|
11643
11663
|
|
|
11664
|
+
.bmc-input-field textarea {
|
|
11665
|
+
height: unset !important; }
|
|
11666
|
+
|
|
11644
11667
|
.bmc-marquee-container {
|
|
11645
11668
|
position: absolute;
|
|
11646
11669
|
top: 0;
|
|
@@ -11686,6 +11709,31 @@ button.submit-bar:hover {
|
|
|
11686
11709
|
.bmc-radio-button-container.inspection .radio-wrap div:nth-child(3) label {
|
|
11687
11710
|
line-height: 20px; }
|
|
11688
11711
|
|
|
11712
|
+
.bmc-print-btn {
|
|
11713
|
+
border-bottom: 2px solid #000;
|
|
11714
|
+
outline: none;
|
|
11715
|
+
background-color: #0c8145;
|
|
11716
|
+
cursor: pointer;
|
|
11717
|
+
border-radius: 6px;
|
|
11718
|
+
-webkit-transition: all .3s ease-in-out;
|
|
11719
|
+
transition: all .3s ease-in-out;
|
|
11720
|
+
display: -webkit-box;
|
|
11721
|
+
display: -ms-flexbox;
|
|
11722
|
+
display: flex;
|
|
11723
|
+
-webkit-box-align: center;
|
|
11724
|
+
-ms-flex-align: center;
|
|
11725
|
+
align-items: center;
|
|
11726
|
+
-webkit-box-pack: center;
|
|
11727
|
+
-ms-flex-pack: center;
|
|
11728
|
+
justify-content: center; }
|
|
11729
|
+
|
|
11730
|
+
.bmc-print-btn:hover {
|
|
11731
|
+
background-color: #076233 !important;
|
|
11732
|
+
-webkit-box-shadow: none !important;
|
|
11733
|
+
box-shadow: none !important;
|
|
11734
|
+
border-bottom: none !important;
|
|
11735
|
+
border-radius: 6px; }
|
|
11736
|
+
|
|
11689
11737
|
.bmc-submit-btn {
|
|
11690
11738
|
border-bottom: 2px solid #8f6d0d;
|
|
11691
11739
|
outline: none;
|
|
@@ -11693,7 +11741,16 @@ button.submit-bar:hover {
|
|
|
11693
11741
|
cursor: pointer;
|
|
11694
11742
|
border-radius: 6px;
|
|
11695
11743
|
-webkit-transition: all .3s ease-in-out;
|
|
11696
|
-
transition: all .3s ease-in-out;
|
|
11744
|
+
transition: all .3s ease-in-out;
|
|
11745
|
+
display: -webkit-box;
|
|
11746
|
+
display: -ms-flexbox;
|
|
11747
|
+
display: flex;
|
|
11748
|
+
-webkit-box-align: center;
|
|
11749
|
+
-ms-flex-align: center;
|
|
11750
|
+
align-items: center;
|
|
11751
|
+
-webkit-box-pack: center;
|
|
11752
|
+
-ms-flex-pack: center;
|
|
11753
|
+
justify-content: center; }
|
|
11697
11754
|
|
|
11698
11755
|
.bmc-submit-btn:hover {
|
|
11699
11756
|
background-color: #d1b03f !important;
|
|
@@ -11702,9 +11759,10 @@ button.submit-bar:hover {
|
|
|
11702
11759
|
border-bottom: none !important;
|
|
11703
11760
|
border-radius: 6px; }
|
|
11704
11761
|
|
|
11705
|
-
.bmc-submit-btn:disabled {
|
|
11706
|
-
background: grey;
|
|
11707
|
-
cursor: not-allowed;
|
|
11762
|
+
.bmc-print-btn:disabled, .bmc-submit-btn:disabled {
|
|
11763
|
+
background: grey !important;
|
|
11764
|
+
cursor: not-allowed;
|
|
11765
|
+
border: none; }
|
|
11708
11766
|
|
|
11709
11767
|
@-webkit-keyframes marquee {
|
|
11710
11768
|
0% {
|
|
@@ -11730,6 +11788,10 @@ button.submit-bar:hover {
|
|
|
11730
11788
|
position: relative;
|
|
11731
11789
|
z-index: 2; }
|
|
11732
11790
|
|
|
11791
|
+
.search-btn-wrapper .bmc-col3-card {
|
|
11792
|
+
width: auto;
|
|
11793
|
+
padding: 0; }
|
|
11794
|
+
|
|
11733
11795
|
@media screen and (max-width: 320px) {
|
|
11734
11796
|
.mobile-CardWrapper {
|
|
11735
11797
|
min-height: 30vh; }
|