@pmidc/upyog-css 1.2.36-dev.1.12 → 1.2.36-dev.1.14

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.12",
3
+ "version": "1.2.36-dev.1.14",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -31,6 +31,11 @@
31
31
  display: table;
32
32
  overflow: hidden;
33
33
  }
34
+
35
+ .table.cancel-table {
36
+ display: block !important;
37
+ overflow: scroll !important;
38
+ }
34
39
  }
35
40
 
36
41
  .table:hover {
@@ -22,9 +22,10 @@
22
22
 
23
23
  .center-flex-mobile {
24
24
  display: flex;
25
+ flex-direction: row;
25
26
  justify-content: center;
26
- width: 80%;
27
27
  margin-bottom: 10px;
28
+ width: 50%
28
29
  }
29
30
 
30
31
  .video-preview {
@@ -93,8 +94,11 @@
93
94
  }
94
95
 
95
96
  .close-btn {
96
- background-color: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
97
- padding: 8px 16px;
97
+ padding: 5px 10px;
98
+ &:hover {
99
+ transform: translateY(-2px) !important;
100
+ box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
101
+ }
98
102
  }
99
103
 
100
104
  .advisory-text {
@@ -207,4 +211,71 @@
207
211
  color: black;
208
212
  display: inline;
209
213
  padding-left: 180px;
210
- }
214
+ }
215
+
216
+ .custom-loader-overlay {
217
+ position: fixed;
218
+ top: 0;
219
+ left: 0;
220
+ width: 100%;
221
+ height: 100vh;
222
+ display: flex;
223
+ flex-direction: column;
224
+ align-items: center;
225
+ justify-content: center;
226
+ background-color: rgba(255, 255, 255, 0.95);
227
+ z-index: 9999;
228
+ gap: 30px;
229
+ backdrop-filter: blur(15px);
230
+ }
231
+
232
+ .custom-loader-spinner-wrapper {
233
+ width: 130px;
234
+ height: 130px;
235
+ position: relative;
236
+ display: flex;
237
+ align-items: center;
238
+ justify-content: center;
239
+ filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
240
+ }
241
+
242
+ .custom-loader-spinner {
243
+ position: absolute;
244
+ width: 100%;
245
+ height: 100%;
246
+ border: 12px solid #f0f0f0;
247
+ border-top: 12px solid #1a1a1a;
248
+ border-right: 12px solid #1a1a1a;
249
+ border-radius: 50%;
250
+ animation: spin 0.8s linear infinite;
251
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
252
+ }
253
+
254
+ .custom-loader-text {
255
+ font-size: 18px;
256
+ font-weight: 700;
257
+ color: #1a1a1a;
258
+ letter-spacing: 0.5px;
259
+ display: flex;
260
+ align-items: baseline;
261
+ gap: 2px;
262
+ }
263
+
264
+ .custom-loader-dots {
265
+ min-width: 20px;
266
+ display: inline-block;
267
+ }
268
+
269
+ @keyframes spin {
270
+ 0% {
271
+ transform: rotate(0deg);
272
+ }
273
+ 100% {
274
+ transform: rotate(360deg);
275
+ }
276
+ }
277
+
278
+ .view-button {
279
+ width: 80%;
280
+ }
281
+
@@ -343,9 +343,7 @@
343
343
  /* Each document block */
344
344
  .obps-document-detail-item {
345
345
  display: flex;
346
- flex-wrap: wrap;
347
- justify-content: flex-start;
348
- align-content: center;
346
+ flex-direction: row;
349
347
  }
350
348
 
351
349
  /* Clickable link */