@pmidc/upyog-css 1.2.36-dev.1.1 → 1.2.36-dev.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pmidc/upyog-css",
3
- "version": "1.2.36-dev.1.1",
3
+ "version": "1.2.36-dev.1.3",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -102,7 +102,9 @@
102
102
  }
103
103
  }
104
104
  input {
105
- @apply absolute opacity-0 h-full;
105
+ @apply absolute opacity-0;
106
+ height: 40px;
107
+ width: 175px;
106
108
  top: 20%;
107
109
  left: 3%;
108
110
  }
package/src/index.scss CHANGED
@@ -141,6 +141,7 @@
141
141
  @import "./modules/hrms/index.scss";
142
142
  @import "./modules/BPA/index.scss";
143
143
  @import "./pages/common/sitePhotoGraphs.scss";
144
+ @import "./modules/TL/index.scss";
144
145
 
145
146
  .display-none {
146
147
  display: none;
@@ -999,16 +1000,14 @@
999
1000
  }
1000
1001
 
1001
1002
  .options-card {
1002
- max-height: 350px; /* Upper limit to trigger scrolling */
1003
- min-height: 20px; /* Always some visible height */
1004
- overflow-y: auto; /* Vertical scrolling only */
1005
- overflow-x: hidden; /* No horizontal scroll */
1006
- border: 1px solid #ccc; /* Optional: visual boundary */
1007
- border-radius: 8px; /* Rounded corners for a modern look */
1008
- background-color: #fff; /* Ensure readable background */
1003
+ max-height: 350px;
1004
+ overflow-y: auto;
1005
+ overflow-x: hidden;
1006
+ border: 1px solid #ccc;
1007
+ border-radius: 8px;
1008
+ background-color: #fff;
1009
1009
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
1010
1010
  padding: 4px 0;
1011
- z-index: 1000; /* Ensure it appears above other elements */
1012
1011
  }
1013
1012
 
1014
1013
  /* ===== TimelineHOC CSS ===== */
@@ -2402,3 +2401,6 @@ input[type="date"] {
2402
2401
  width: 100%;
2403
2402
  }
2404
2403
  }
2404
+ .hrms-text-transform{
2405
+ text-transform: none !important;
2406
+ }
@@ -50,11 +50,12 @@
50
50
 
51
51
  /* Button */
52
52
  .upload-file-button {
53
- height: auto;
54
- min-height: 40px;
55
- max-height: 40px;
56
- width: 43%;
57
- padding: 0;
53
+ position: absolute;
54
+ opacity: 0;
55
+ height: 40px;
56
+ width: 175px;
57
+ top: 10px;
58
+ left: 15px;
58
59
  }
59
60
 
60
61
  /* Hide elements */
@@ -90,6 +91,28 @@
90
91
  color: red;
91
92
  }
92
93
 
94
+ .advisory-text {
95
+ font-size: 13px;
96
+ color: red;
97
+ margin: 0;
98
+ }
99
+
100
+ .upload-file-new {
101
+ min-height: 56px;
102
+ @apply relative border border-input-border w-full;
103
+ border-radius: 10px;
104
+
105
+ div {
106
+ @apply flex flex-row h-full items-center pl-md mt-sm mb-sm flex-wrap;
107
+ border-radius: 10px;
108
+
109
+ .file-upload-status {
110
+ @apply text-body-s-dt ml-sm;
111
+ }
112
+ }
113
+
114
+ }
115
+
93
116
  /* Mobile */
94
117
  @media (max-width: 768px) {
95
118
  .upload-tag-container {