@pmidc/upyog-css 1.2.36-dev.1.5 → 1.2.36-dev.1.7
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 +102 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/actionbar.scss +1 -1
- package/src/modules/BPA/index.scss +76 -0
- package/src/modules/TL/index.scss +13 -1
package/dist/index.css
CHANGED
|
@@ -3892,7 +3892,7 @@ body {
|
|
|
3892
3892
|
text-align: left;
|
|
3893
3893
|
margin-bottom: 4px;
|
|
3894
3894
|
z-index: 30;
|
|
3895
|
-
width:
|
|
3895
|
+
width: 257px;
|
|
3896
3896
|
right: 24px; }
|
|
3897
3897
|
.action-bar-wrap .menu-wrap div {
|
|
3898
3898
|
height: 3rem;
|
|
@@ -19655,6 +19655,91 @@ body {
|
|
|
19655
19655
|
line-height: 24px;
|
|
19656
19656
|
margin-left: 8px; }
|
|
19657
19657
|
|
|
19658
|
+
.inbox-name {
|
|
19659
|
+
display: inline;
|
|
19660
|
+
padding-left: 30px; }
|
|
19661
|
+
|
|
19662
|
+
.back-button-container {
|
|
19663
|
+
cursor: pointer;
|
|
19664
|
+
width: -webkit-fit-content;
|
|
19665
|
+
width: -moz-fit-content;
|
|
19666
|
+
width: fit-content;
|
|
19667
|
+
display: -webkit-box;
|
|
19668
|
+
display: -ms-flexbox;
|
|
19669
|
+
display: flex;
|
|
19670
|
+
font-family: Roboto Condensed,sans-serif;
|
|
19671
|
+
color: rgba(13, 67, 167, var(--text-opacity));
|
|
19672
|
+
font-size: 16px;
|
|
19673
|
+
line-height: 24px; }
|
|
19674
|
+
|
|
19675
|
+
.stepper-margin {
|
|
19676
|
+
margin-left: 30px; }
|
|
19677
|
+
|
|
19678
|
+
.document-link-bpa {
|
|
19679
|
+
text-decoration: none;
|
|
19680
|
+
cursor: pointer;
|
|
19681
|
+
-webkit-transition: -webkit-transform .2s,-webkit-box-shadow .2s;
|
|
19682
|
+
transition: -webkit-transform .2s,-webkit-box-shadow .2s;
|
|
19683
|
+
transition: transform .2s,box-shadow .2s;
|
|
19684
|
+
transition: transform .2s,box-shadow .2s,-webkit-transform .2s,-webkit-box-shadow .2s;
|
|
19685
|
+
width: 250px; }
|
|
19686
|
+
.document-link-bpa:hover .document-card {
|
|
19687
|
+
-webkit-transform: translateY(-4px);
|
|
19688
|
+
transform: translateY(-4px);
|
|
19689
|
+
-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
19690
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
|
|
19691
|
+
|
|
19692
|
+
.action-bar-wrap-menu {
|
|
19693
|
+
-webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 -2px 8px;
|
|
19694
|
+
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.16);
|
|
19695
|
+
z-index: 100;
|
|
19696
|
+
height: auto;
|
|
19697
|
+
position: absolute;
|
|
19698
|
+
--bg-opacity:1;
|
|
19699
|
+
background-color: #fff;
|
|
19700
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
19701
|
+
text-align: right;
|
|
19702
|
+
top: 100%;
|
|
19703
|
+
left: 0;
|
|
19704
|
+
width: 100%; }
|
|
19705
|
+
.action-bar-wrap-menu div {
|
|
19706
|
+
width: 100%; }
|
|
19707
|
+
.action-bar-wrap-menu .menu-wrap-position {
|
|
19708
|
+
position: absolute;
|
|
19709
|
+
--bg-opacity:1;
|
|
19710
|
+
background-color: #fff;
|
|
19711
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
19712
|
+
text-align: left;
|
|
19713
|
+
margin-bottom: 4px;
|
|
19714
|
+
z-index: 30;
|
|
19715
|
+
cursor: pointer;
|
|
19716
|
+
top: 100%;
|
|
19717
|
+
left: 0;
|
|
19718
|
+
-webkit-box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px, rgba(0, 0, 0, 0.12) 0 3px 14px 2px, rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
|
|
19719
|
+
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
19720
|
+
width: auto;
|
|
19721
|
+
min-width: 200px;
|
|
19722
|
+
max-width: calc(100% - 16px);
|
|
19723
|
+
padding: 2px; }
|
|
19724
|
+
.action-bar-wrap-menu .menu-wrap-position div {
|
|
19725
|
+
height: 3rem;
|
|
19726
|
+
padding-left: 8px;
|
|
19727
|
+
padding-top: 16px;
|
|
19728
|
+
padding-bottom: 16px;
|
|
19729
|
+
font-size: 16px;
|
|
19730
|
+
line-height: 24px;
|
|
19731
|
+
--text-opacity:1;
|
|
19732
|
+
color: #0d43a7;
|
|
19733
|
+
color: rgba(13, 67, 167, var(--text-opacity)); }
|
|
19734
|
+
.action-bar-wrap-menu .menu-wrap-position div:hover {
|
|
19735
|
+
--bg-opacity:1;
|
|
19736
|
+
background-color: #eee;
|
|
19737
|
+
background-color: rgba(238, 238, 238, var(--bg-opacity));
|
|
19738
|
+
width: 100%; }
|
|
19739
|
+
|
|
19740
|
+
.card-dropdown-wrapper {
|
|
19741
|
+
position: relative; }
|
|
19742
|
+
|
|
19658
19743
|
@media (max-width: 768px) {
|
|
19659
19744
|
.upload-tag-container {
|
|
19660
19745
|
width: 80%; } }
|
|
@@ -20398,6 +20483,22 @@ body {
|
|
|
20398
20483
|
cursor: pointer !important;
|
|
20399
20484
|
margin: 0 !important; }
|
|
20400
20485
|
|
|
20486
|
+
.TL-Tradetype-disabled {
|
|
20487
|
+
height: 50px !important;
|
|
20488
|
+
border: 1px solid #d1d5db !important;
|
|
20489
|
+
border-radius: 8px !important;
|
|
20490
|
+
background-color: #fafafa !important;
|
|
20491
|
+
display: -webkit-box !important;
|
|
20492
|
+
display: -ms-flexbox !important;
|
|
20493
|
+
display: flex !important;
|
|
20494
|
+
-webkit-box-align: center !important;
|
|
20495
|
+
-ms-flex-align: center !important;
|
|
20496
|
+
align-items: center !important;
|
|
20497
|
+
padding-left: 10px !important;
|
|
20498
|
+
font-size: 16px !important;
|
|
20499
|
+
color: #333 !important;
|
|
20500
|
+
margin-bottom: 8px !important; }
|
|
20501
|
+
|
|
20401
20502
|
.display-none {
|
|
20402
20503
|
display: none; }
|
|
20403
20504
|
|