@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/dist/index.css
CHANGED
|
@@ -36,7 +36,6 @@ a {
|
|
|
36
36
|
abbr[title] {
|
|
37
37
|
border-bottom: none;
|
|
38
38
|
text-decoration: underline;
|
|
39
|
-
-webkit-text-decoration: underline dotted;
|
|
40
39
|
text-decoration: underline dotted;
|
|
41
40
|
}
|
|
42
41
|
|
|
@@ -5404,6 +5403,18 @@ body {
|
|
|
5404
5403
|
background-color: unset;
|
|
5405
5404
|
}
|
|
5406
5405
|
|
|
5406
|
+
.obps-documents-table td:first-child, .obps-documents-table th:first-child {
|
|
5407
|
+
width: 15% !important;
|
|
5408
|
+
}
|
|
5409
|
+
|
|
5410
|
+
.obps-documents-table td:nth-child(2), .obps-documents-table th:nth-child(2) {
|
|
5411
|
+
width: 65% !important;
|
|
5412
|
+
}
|
|
5413
|
+
|
|
5414
|
+
.obps-documents-table td:nth-child(3), .obps-documents-table th:nth-child(3) {
|
|
5415
|
+
width: 20% !important;
|
|
5416
|
+
}
|
|
5417
|
+
|
|
5407
5418
|
@media (max-width: 1024px) {
|
|
5408
5419
|
.customTable thead th, .dss-table-wrapper table thead th, .table thead th {
|
|
5409
5420
|
padding: 14px 16px;
|
|
@@ -24048,6 +24059,11 @@ body {
|
|
|
24048
24059
|
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
|
|
24049
24060
|
}
|
|
24050
24061
|
|
|
24062
|
+
.upload-file-message {
|
|
24063
|
+
padding: 15px 0;
|
|
24064
|
+
font-size: 14px;
|
|
24065
|
+
}
|
|
24066
|
+
|
|
24051
24067
|
.advisory-text {
|
|
24052
24068
|
font-size: 13px;
|
|
24053
24069
|
color: red;
|
|
@@ -24280,6 +24296,61 @@ body {
|
|
|
24280
24296
|
padding-left: 5px;
|
|
24281
24297
|
}
|
|
24282
24298
|
|
|
24299
|
+
.rich-textbox-wrapper {
|
|
24300
|
+
width: 100%;
|
|
24301
|
+
}
|
|
24302
|
+
|
|
24303
|
+
.rich-textbox-toolbar {
|
|
24304
|
+
background: #f7f9fb;
|
|
24305
|
+
border: 1px solid #e6edf3;
|
|
24306
|
+
padding: 6px;
|
|
24307
|
+
border-radius: 6px;
|
|
24308
|
+
display: -webkit-box;
|
|
24309
|
+
display: -ms-flexbox;
|
|
24310
|
+
display: flex;
|
|
24311
|
+
-webkit-box-align: center;
|
|
24312
|
+
-ms-flex-align: center;
|
|
24313
|
+
align-items: center;
|
|
24314
|
+
}
|
|
24315
|
+
|
|
24316
|
+
.rich-textbox-toolbar button {
|
|
24317
|
+
background: transparent;
|
|
24318
|
+
border: none;
|
|
24319
|
+
padding: 6px 8px;
|
|
24320
|
+
margin: 0 2px;
|
|
24321
|
+
cursor: pointer;
|
|
24322
|
+
border-radius: 4px;
|
|
24323
|
+
color: #2f3b45;
|
|
24324
|
+
font-weight: 600;
|
|
24325
|
+
}
|
|
24326
|
+
|
|
24327
|
+
.rich-textbox-toolbar button:hover {
|
|
24328
|
+
background: rgba(47, 59, 69, 0.06);
|
|
24329
|
+
}
|
|
24330
|
+
|
|
24331
|
+
.rich-textbox-toolbar button:active {
|
|
24332
|
+
background: rgba(47, 59, 69, 0.12);
|
|
24333
|
+
}
|
|
24334
|
+
|
|
24335
|
+
.rich-textbox-toolbar button[title=Bold], .rich-textbox-toolbar button[title=Italic], .rich-textbox-toolbar button[title=Underline] {
|
|
24336
|
+
width: 32px;
|
|
24337
|
+
height: 32px;
|
|
24338
|
+
}
|
|
24339
|
+
|
|
24340
|
+
.rich-textbox-textarea {
|
|
24341
|
+
width: 100%;
|
|
24342
|
+
border: 1px solid #e6edf3;
|
|
24343
|
+
border-radius: 6px;
|
|
24344
|
+
padding: 10px;
|
|
24345
|
+
font-size: 14px;
|
|
24346
|
+
line-height: 1.4;
|
|
24347
|
+
color: #222;
|
|
24348
|
+
}
|
|
24349
|
+
|
|
24350
|
+
.rich-textbox-wrapper .rich-textbox-toolbar div {
|
|
24351
|
+
color: #8592a0;
|
|
24352
|
+
}
|
|
24353
|
+
|
|
24283
24354
|
.bpa-site-photograph-container {
|
|
24284
24355
|
padding: 50px 0;
|
|
24285
24356
|
display: -webkit-box;
|