@pmidc/upyog-css 1.2.36-UAT.17 → 1.2.36-UAT.19

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-UAT.17",
3
+ "version": "1.2.36-UAT.19",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "engines": {
@@ -101,6 +101,11 @@
101
101
  }
102
102
  }
103
103
 
104
+ .upload-file-message {
105
+ padding: 15px 0px;
106
+ font-size: 14px;
107
+ }
108
+
104
109
  .advisory-text {
105
110
  font-size: 13px;
106
111
  color: red;
@@ -284,4 +289,111 @@
284
289
  padding-bottom: 12px;
285
290
  padding-left: 5px;
286
291
  }
287
-
292
+
293
+ .rich-textbox-wrapper {
294
+ width: 100%;
295
+ }
296
+
297
+ .rich-textbox-toolbar {
298
+ background: #f7f9fb;
299
+ border: 1px solid #e6edf3;
300
+ padding: 6px;
301
+ border-radius: 6px;
302
+ display: flex;
303
+ align-items: center;
304
+ }
305
+
306
+ .rich-textbox-toolbar button {
307
+ background: transparent;
308
+ border: none;
309
+ padding: 6px 8px;
310
+ margin: 0 2px;
311
+ cursor: pointer;
312
+ border-radius: 4px;
313
+ color: #2f3b45;
314
+ font-weight: 600;
315
+ }
316
+
317
+ .rich-textbox-toolbar button:hover {
318
+ background: rgba(47,59,69,0.06);
319
+ }
320
+
321
+ .rich-textbox-toolbar button:active {
322
+ background: rgba(47,59,69,0.12);
323
+ }
324
+
325
+ .rich-textbox-toolbar button[title="Bold"] {
326
+ width: 32px;
327
+ height: 32px;
328
+ }
329
+
330
+ .rich-textbox-toolbar button[title="Italic"] {
331
+ width: 32px;
332
+ height: 32px;
333
+ }
334
+
335
+ .rich-textbox-toolbar button[title="Underline"] {
336
+ width: 32px;
337
+ height: 32px;
338
+ }
339
+
340
+ .rich-textbox-textarea {
341
+ width: 100%;
342
+ border: 1px solid #e6edf3;
343
+ border-radius: 6px;
344
+ padding: 10px;
345
+ font-size: 14px;
346
+ line-height: 1.4;
347
+ color: #222;
348
+ }
349
+
350
+ .rich-textbox-wrapper .rich-textbox-toolbar div {
351
+ color: #8592a0;
352
+ }
353
+
354
+ .investor-notice-container {
355
+ color: #d32f2f;
356
+ font-family: Roboto, "Helvetica Neue", sans-serif;
357
+ font-size: 15px;
358
+ line-height: 1.6;
359
+ padding: 10px 20px;
360
+ }
361
+
362
+ .investor-notice-container p {
363
+ margin-bottom: 16px;
364
+ }
365
+
366
+ .investor-notice-container .notice-salutation {
367
+ margin-bottom: 20px;
368
+ }
369
+
370
+ .investor-notice-container .notice-list {
371
+ list-style: disc !important;
372
+ padding-left: 20px !important;
373
+ margin: 16px 0 !important;
374
+ }
375
+
376
+ .investor-notice-container .notice-list li {
377
+ display: list-item !important;
378
+ margin-bottom: 8px;
379
+ }
380
+
381
+ .investor-notice-container .notice-link {
382
+ color: #0066cc;
383
+ text-decoration: underline;
384
+ cursor: pointer;
385
+ }
386
+
387
+ .investor-notice-container .notice-link:hover {
388
+ color: #004499;
389
+ }
390
+
391
+ .investor-notice-container .notice-body-link {
392
+ margin-top: -8px;
393
+ margin-bottom: 20px;
394
+ }
395
+
396
+ .investor-notice-container .notice-footer {
397
+ margin-top: 24px;
398
+ line-height: 1.4;
399
+ }