@pmidc/upyog-css 1.2.36-dev.1.15 → 1.2.36-dev.1.17

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.15",
3
+ "version": "1.2.36-dev.1.17",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -119,6 +119,17 @@
119
119
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
120
120
  }
121
121
 
122
+ .new-inbox-tenant-selector {
123
+ display: flex;
124
+ flex-direction: column;
125
+ align-items: flex-start;
126
+ gap: 10px;
127
+ }
128
+
129
+ .new-inbox-tenant-dropdown {
130
+ width: min(100%, 340px);
131
+ }
132
+
122
133
  .new-inbox-table-card {
123
134
  margin-top: 16px;
124
135
  background: #ffffff;
@@ -177,6 +188,10 @@
177
188
 
178
189
  /* Mobile responsive styles */
179
190
  @media screen and (max-width: 768px) {
191
+ .new-inbox-tenant-dropdown {
192
+ width: 100%;
193
+ }
194
+
180
195
  .new-inbox-topbar {
181
196
  flex-direction: column;
182
197
  align-items: stretch;
@@ -278,4 +278,70 @@
278
278
  .view-button {
279
279
  width: 80%;
280
280
  }
281
-
281
+
282
+ .disabled-CustomUpload {
283
+ padding-top: 12px;
284
+ padding-bottom: 12px;
285
+ padding-left: 5px;
286
+ }
287
+
288
+ .rich-textbox-wrapper {
289
+ width: 100%;
290
+ }
291
+
292
+ .rich-textbox-toolbar {
293
+ background: #f7f9fb;
294
+ border: 1px solid #e6edf3;
295
+ padding: 6px;
296
+ border-radius: 6px;
297
+ display: flex;
298
+ align-items: center;
299
+ }
300
+
301
+ .rich-textbox-toolbar button {
302
+ background: transparent;
303
+ border: none;
304
+ padding: 6px 8px;
305
+ margin: 0 2px;
306
+ cursor: pointer;
307
+ border-radius: 4px;
308
+ color: #2f3b45;
309
+ font-weight: 600;
310
+ }
311
+
312
+ .rich-textbox-toolbar button:hover {
313
+ background: rgba(47,59,69,0.06);
314
+ }
315
+
316
+ .rich-textbox-toolbar button:active {
317
+ background: rgba(47,59,69,0.12);
318
+ }
319
+
320
+ .rich-textbox-toolbar button[title="Bold"] {
321
+ width: 32px;
322
+ height: 32px;
323
+ }
324
+
325
+ .rich-textbox-toolbar button[title="Italic"] {
326
+ width: 32px;
327
+ height: 32px;
328
+ }
329
+
330
+ .rich-textbox-toolbar button[title="Underline"] {
331
+ width: 32px;
332
+ height: 32px;
333
+ }
334
+
335
+ .rich-textbox-textarea {
336
+ width: 100%;
337
+ border: 1px solid #e6edf3;
338
+ border-radius: 6px;
339
+ padding: 10px;
340
+ font-size: 14px;
341
+ line-height: 1.4;
342
+ color: #222;
343
+ }
344
+
345
+ .rich-textbox-wrapper .rich-textbox-toolbar div {
346
+ color: #8592a0;
347
+ }
@@ -450,4 +450,22 @@
450
450
  max-width: none;
451
451
  min-width: 0;
452
452
  width: auto;
453
+ }
454
+
455
+ .fire-noc-doc-required-card {
456
+ background: #FAFAFA;
457
+ border: 1px solid #D6D5D4;
458
+ padding: 8px;
459
+ border-radius: 4px;
460
+ max-width: 600px;
461
+ min-width: 95%;
462
+ margin-bottom: 15px;
463
+ padding-top: 15px;
464
+ }
465
+
466
+ .fire-noc-doc-required-field {
467
+ min-width: 100%;
468
+ display: flex;
469
+ flex-direction: column;
470
+ gap: 10px;
453
471
  }