@pmidc/upyog-css 1.2.36-UAT.17 → 1.2.36-UAT.18
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 +72 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/table.scss +15 -0
- package/src/modules/BPA/index.scss +66 -1
package/package.json
CHANGED
|
@@ -639,6 +639,21 @@ table tbody tr:nth-child(even) {
|
|
|
639
639
|
background-color: unset;
|
|
640
640
|
}
|
|
641
641
|
|
|
642
|
+
.obps-documents-table th:nth-child(1),
|
|
643
|
+
.obps-documents-table td:nth-child(1) {
|
|
644
|
+
width: 15% !important;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.obps-documents-table th:nth-child(2),
|
|
648
|
+
.obps-documents-table td:nth-child(2) {
|
|
649
|
+
width: 65% !important;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.obps-documents-table th:nth-child(3),
|
|
653
|
+
.obps-documents-table td:nth-child(3) {
|
|
654
|
+
width: 20% !important;
|
|
655
|
+
}
|
|
656
|
+
|
|
642
657
|
/* ============================================
|
|
643
658
|
RESPONSIVE TABLE STYLES
|
|
644
659
|
============================================ */
|
|
@@ -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,64 @@
|
|
|
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
|
+
}
|