@pmidc/upyog-css 1.2.36-dev.1.4 → 1.2.36-dev.1.6
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 +29 -6
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/actionbar.scss +1 -1
- package/src/index.scss +13 -7
- package/src/modules/BPA/index.scss +7 -5
- package/src/modules/TL/index.scss +13 -1
- package/src/pages/employee/index.scss +1 -1
package/package.json
CHANGED
package/src/index.scss
CHANGED
|
@@ -1000,12 +1000,12 @@
|
|
|
1000
1000
|
}
|
|
1001
1001
|
|
|
1002
1002
|
.options-card {
|
|
1003
|
-
max-height: 350px;
|
|
1004
|
-
overflow-y: auto;
|
|
1005
|
-
overflow-x: hidden;
|
|
1006
|
-
border: 1px solid #ccc;
|
|
1003
|
+
max-height: 350px;
|
|
1004
|
+
overflow-y: auto;
|
|
1005
|
+
overflow-x: hidden;
|
|
1006
|
+
border: 1px solid #ccc;
|
|
1007
1007
|
border-radius: 8px;
|
|
1008
|
-
background-color: #fff;
|
|
1008
|
+
background-color: #fff;
|
|
1009
1009
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
1010
1010
|
padding: 4px 0;
|
|
1011
1011
|
}
|
|
@@ -2401,14 +2401,20 @@ input[type="date"] {
|
|
|
2401
2401
|
width: 100%;
|
|
2402
2402
|
}
|
|
2403
2403
|
}
|
|
2404
|
-
.hrms-text-transform{
|
|
2404
|
+
.hrms-text-transform {
|
|
2405
2405
|
text-transform: none !important;
|
|
2406
2406
|
}
|
|
2407
2407
|
|
|
2408
|
-
|
|
2409
2408
|
.noc-popupStyles {
|
|
2410
2409
|
width: unset;
|
|
2411
2410
|
min-width: 360px;
|
|
2412
2411
|
max-width: 600px;
|
|
2413
2412
|
padding: 20px;
|
|
2414
2413
|
}
|
|
2414
|
+
|
|
2415
|
+
.engagementForm {
|
|
2416
|
+
width: 70%;
|
|
2417
|
+
@media (max-width: 768px) {
|
|
2418
|
+
width: 100%;
|
|
2419
|
+
}
|
|
2420
|
+
}
|
|
@@ -49,12 +49,9 @@
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
/* Button */
|
|
52
|
-
.upload-file-button {
|
|
53
|
-
position: absolute;
|
|
52
|
+
.upload-file-button {
|
|
54
53
|
height: 40px;
|
|
55
|
-
width: 175px;
|
|
56
|
-
top: 10px;
|
|
57
|
-
left: 15px;
|
|
54
|
+
width: 175px;
|
|
58
55
|
}
|
|
59
56
|
|
|
60
57
|
/* Hide elements */
|
|
@@ -112,6 +109,11 @@
|
|
|
112
109
|
|
|
113
110
|
}
|
|
114
111
|
|
|
112
|
+
.inbox-name {
|
|
113
|
+
display: inline;
|
|
114
|
+
padding-left: 30px;
|
|
115
|
+
}
|
|
116
|
+
|
|
115
117
|
/* Mobile */
|
|
116
118
|
@media (max-width: 768px) {
|
|
117
119
|
.upload-tag-container {
|
|
@@ -765,4 +765,16 @@
|
|
|
765
765
|
.TL-declaration-label {
|
|
766
766
|
cursor: pointer !important;
|
|
767
767
|
margin: 0 !important;
|
|
768
|
-
}
|
|
768
|
+
}
|
|
769
|
+
.TL-Tradetype-disabled {
|
|
770
|
+
height: 50px !important;
|
|
771
|
+
border: 1px solid #d1d5db !important;
|
|
772
|
+
border-radius: 8px !important;
|
|
773
|
+
background-color: #fafafa !important;
|
|
774
|
+
display: flex !important;
|
|
775
|
+
align-items: center !important;
|
|
776
|
+
padding-left: 10px !important;
|
|
777
|
+
font-size: 16px !important;
|
|
778
|
+
color: #333333 !important;
|
|
779
|
+
margin-bottom: 8px !important;
|
|
780
|
+
}
|