@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/dist/index.css +107 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/modules/BPA/index.scss +113 -1
package/dist/index.css
CHANGED
|
@@ -24048,6 +24048,11 @@ body {
|
|
|
24048
24048
|
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
|
|
24049
24049
|
}
|
|
24050
24050
|
|
|
24051
|
+
.upload-file-message {
|
|
24052
|
+
padding: 15px 0;
|
|
24053
|
+
font-size: 14px;
|
|
24054
|
+
}
|
|
24055
|
+
|
|
24051
24056
|
.advisory-text {
|
|
24052
24057
|
font-size: 13px;
|
|
24053
24058
|
color: red;
|
|
@@ -24280,6 +24285,108 @@ body {
|
|
|
24280
24285
|
padding-left: 5px;
|
|
24281
24286
|
}
|
|
24282
24287
|
|
|
24288
|
+
.rich-textbox-wrapper {
|
|
24289
|
+
width: 100%;
|
|
24290
|
+
}
|
|
24291
|
+
|
|
24292
|
+
.rich-textbox-toolbar {
|
|
24293
|
+
background: #f7f9fb;
|
|
24294
|
+
border: 1px solid #e6edf3;
|
|
24295
|
+
padding: 6px;
|
|
24296
|
+
border-radius: 6px;
|
|
24297
|
+
display: -webkit-box;
|
|
24298
|
+
display: -ms-flexbox;
|
|
24299
|
+
display: flex;
|
|
24300
|
+
-webkit-box-align: center;
|
|
24301
|
+
-ms-flex-align: center;
|
|
24302
|
+
align-items: center;
|
|
24303
|
+
}
|
|
24304
|
+
|
|
24305
|
+
.rich-textbox-toolbar button {
|
|
24306
|
+
background: transparent;
|
|
24307
|
+
border: none;
|
|
24308
|
+
padding: 6px 8px;
|
|
24309
|
+
margin: 0 2px;
|
|
24310
|
+
cursor: pointer;
|
|
24311
|
+
border-radius: 4px;
|
|
24312
|
+
color: #2f3b45;
|
|
24313
|
+
font-weight: 600;
|
|
24314
|
+
}
|
|
24315
|
+
|
|
24316
|
+
.rich-textbox-toolbar button:hover {
|
|
24317
|
+
background: rgba(47, 59, 69, 0.06);
|
|
24318
|
+
}
|
|
24319
|
+
|
|
24320
|
+
.rich-textbox-toolbar button:active {
|
|
24321
|
+
background: rgba(47, 59, 69, 0.12);
|
|
24322
|
+
}
|
|
24323
|
+
|
|
24324
|
+
.rich-textbox-toolbar button[title=Bold], .rich-textbox-toolbar button[title=Italic], .rich-textbox-toolbar button[title=Underline] {
|
|
24325
|
+
width: 32px;
|
|
24326
|
+
height: 32px;
|
|
24327
|
+
}
|
|
24328
|
+
|
|
24329
|
+
.rich-textbox-textarea {
|
|
24330
|
+
width: 100%;
|
|
24331
|
+
border: 1px solid #e6edf3;
|
|
24332
|
+
border-radius: 6px;
|
|
24333
|
+
padding: 10px;
|
|
24334
|
+
font-size: 14px;
|
|
24335
|
+
line-height: 1.4;
|
|
24336
|
+
color: #222;
|
|
24337
|
+
}
|
|
24338
|
+
|
|
24339
|
+
.rich-textbox-wrapper .rich-textbox-toolbar div {
|
|
24340
|
+
color: #8592a0;
|
|
24341
|
+
}
|
|
24342
|
+
|
|
24343
|
+
.investor-notice-container {
|
|
24344
|
+
color: #d32f2f;
|
|
24345
|
+
font-family: Roboto, Helvetica Neue, sans-serif;
|
|
24346
|
+
font-size: 15px;
|
|
24347
|
+
line-height: 1.6;
|
|
24348
|
+
padding: 10px 20px;
|
|
24349
|
+
}
|
|
24350
|
+
|
|
24351
|
+
.investor-notice-container p {
|
|
24352
|
+
margin-bottom: 16px;
|
|
24353
|
+
}
|
|
24354
|
+
|
|
24355
|
+
.investor-notice-container .notice-salutation {
|
|
24356
|
+
margin-bottom: 20px;
|
|
24357
|
+
}
|
|
24358
|
+
|
|
24359
|
+
.investor-notice-container .notice-list {
|
|
24360
|
+
list-style: disc !important;
|
|
24361
|
+
padding-left: 20px !important;
|
|
24362
|
+
margin: 16px 0 !important;
|
|
24363
|
+
}
|
|
24364
|
+
|
|
24365
|
+
.investor-notice-container .notice-list li {
|
|
24366
|
+
display: list-item !important;
|
|
24367
|
+
margin-bottom: 8px;
|
|
24368
|
+
}
|
|
24369
|
+
|
|
24370
|
+
.investor-notice-container .notice-link {
|
|
24371
|
+
color: #06c;
|
|
24372
|
+
text-decoration: underline;
|
|
24373
|
+
cursor: pointer;
|
|
24374
|
+
}
|
|
24375
|
+
|
|
24376
|
+
.investor-notice-container .notice-link:hover {
|
|
24377
|
+
color: #049;
|
|
24378
|
+
}
|
|
24379
|
+
|
|
24380
|
+
.investor-notice-container .notice-body-link {
|
|
24381
|
+
margin-top: -8px;
|
|
24382
|
+
margin-bottom: 20px;
|
|
24383
|
+
}
|
|
24384
|
+
|
|
24385
|
+
.investor-notice-container .notice-footer {
|
|
24386
|
+
margin-top: 24px;
|
|
24387
|
+
line-height: 1.4;
|
|
24388
|
+
}
|
|
24389
|
+
|
|
24283
24390
|
.bpa-site-photograph-container {
|
|
24284
24391
|
padding: 50px 0;
|
|
24285
24392
|
display: -webkit-box;
|