@pmidc/upyog-css 1.2.40 → 1.2.42
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 +73 -3
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/card.scss +1 -3
- package/src/index.scss +15 -0
- package/src/modules/BPA/index.scss +45 -0
- package/src/pages/employee/index.scss +8 -8
package/dist/index.css
CHANGED
|
@@ -1642,7 +1642,6 @@ body {
|
|
|
1642
1642
|
margin-bottom: 8px;
|
|
1643
1643
|
margin-top: 8px;
|
|
1644
1644
|
font-weight: 700;
|
|
1645
|
-
text-transform: uppercase;
|
|
1646
1645
|
letter-spacing: .5px;
|
|
1647
1646
|
width: 100%; }
|
|
1648
1647
|
.card .card-label-error {
|
|
@@ -1738,7 +1737,6 @@ body {
|
|
|
1738
1737
|
color: #0f172a;
|
|
1739
1738
|
margin-bottom: 8px;
|
|
1740
1739
|
font-weight: 700;
|
|
1741
|
-
text-transform: uppercase;
|
|
1742
1740
|
letter-spacing: .5px; }
|
|
1743
1741
|
.employeeCard .card-label-error {
|
|
1744
1742
|
display: block;
|
|
@@ -7991,7 +7989,7 @@ video::-webkit-media-controls-panel {
|
|
|
7991
7989
|
.employee .ground-container {
|
|
7992
7990
|
margin-bottom: 56px;
|
|
7993
7991
|
margin-left: 0;
|
|
7994
|
-
margin-top:
|
|
7992
|
+
margin-top: 5rem !important;
|
|
7995
7993
|
display: -webkit-box;
|
|
7996
7994
|
display: -ms-flexbox;
|
|
7997
7995
|
display: flex;
|
|
@@ -19652,6 +19650,57 @@ body {
|
|
|
19652
19650
|
-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
19653
19651
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
|
|
19654
19652
|
|
|
19653
|
+
.action-bar-wrap-menu {
|
|
19654
|
+
-webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 -2px 8px;
|
|
19655
|
+
box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.16);
|
|
19656
|
+
z-index: 100;
|
|
19657
|
+
height: auto;
|
|
19658
|
+
position: absolute;
|
|
19659
|
+
--bg-opacity:1;
|
|
19660
|
+
background-color: #fff;
|
|
19661
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
19662
|
+
text-align: right;
|
|
19663
|
+
top: 100%;
|
|
19664
|
+
left: 0;
|
|
19665
|
+
width: 100%; }
|
|
19666
|
+
.action-bar-wrap-menu div {
|
|
19667
|
+
width: 100%; }
|
|
19668
|
+
.action-bar-wrap-menu .menu-wrap-position {
|
|
19669
|
+
position: absolute;
|
|
19670
|
+
--bg-opacity:1;
|
|
19671
|
+
background-color: #fff;
|
|
19672
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
19673
|
+
text-align: left;
|
|
19674
|
+
margin-bottom: 4px;
|
|
19675
|
+
z-index: 30;
|
|
19676
|
+
cursor: pointer;
|
|
19677
|
+
top: 100%;
|
|
19678
|
+
left: 0;
|
|
19679
|
+
-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;
|
|
19680
|
+
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);
|
|
19681
|
+
width: auto;
|
|
19682
|
+
min-width: 200px;
|
|
19683
|
+
max-width: calc(100% - 16px);
|
|
19684
|
+
padding: 2px; }
|
|
19685
|
+
.action-bar-wrap-menu .menu-wrap-position div {
|
|
19686
|
+
height: 3rem;
|
|
19687
|
+
padding-left: 8px;
|
|
19688
|
+
padding-top: 16px;
|
|
19689
|
+
padding-bottom: 16px;
|
|
19690
|
+
font-size: 16px;
|
|
19691
|
+
line-height: 24px;
|
|
19692
|
+
--text-opacity:1;
|
|
19693
|
+
color: #0d43a7;
|
|
19694
|
+
color: rgba(13, 67, 167, var(--text-opacity)); }
|
|
19695
|
+
.action-bar-wrap-menu .menu-wrap-position div:hover {
|
|
19696
|
+
--bg-opacity:1;
|
|
19697
|
+
background-color: #eee;
|
|
19698
|
+
background-color: rgba(238, 238, 238, var(--bg-opacity));
|
|
19699
|
+
width: 100%; }
|
|
19700
|
+
|
|
19701
|
+
.card-dropdown-wrapper {
|
|
19702
|
+
position: relative; }
|
|
19703
|
+
|
|
19655
19704
|
@media (max-width: 768px) {
|
|
19656
19705
|
.upload-tag-container {
|
|
19657
19706
|
width: 80%; } }
|
|
@@ -21910,3 +21959,24 @@ input[type=date], .checkbox-wrap .input-emp[type=date] {
|
|
|
21910
21959
|
min-width: 360px;
|
|
21911
21960
|
max-width: 600px;
|
|
21912
21961
|
padding: 20px; }
|
|
21962
|
+
|
|
21963
|
+
.security-banner {
|
|
21964
|
+
width: 100%;
|
|
21965
|
+
max-width: 920px;
|
|
21966
|
+
margin: 1px auto 20px;
|
|
21967
|
+
padding: 16px 24px;
|
|
21968
|
+
border-radius: 12px;
|
|
21969
|
+
background: -webkit-gradient(linear, left top, right top, from(#1e4db7), to(#3a7bd5));
|
|
21970
|
+
background: linear-gradient(90deg, #1e4db7, #3a7bd5);
|
|
21971
|
+
color: #fff;
|
|
21972
|
+
-webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
|
|
21973
|
+
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
|
|
21974
|
+
display: -webkit-box;
|
|
21975
|
+
display: -ms-flexbox;
|
|
21976
|
+
display: flex;
|
|
21977
|
+
grid-gap: 14px;
|
|
21978
|
+
gap: 14px;
|
|
21979
|
+
-webkit-box-align: start;
|
|
21980
|
+
-ms-flex-align: start;
|
|
21981
|
+
align-items: flex-start;
|
|
21982
|
+
line-height: 1.6; }
|