@pmidc/upyog-css 0.0.4 → 1.0.1
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/{example → dist}/index.css +271 -34
- package/dist/index.min.css +1 -0
- package/package.json +56 -46
- package/src/components/card.scss +4 -3
- package/src/index.scss +26 -0
- package/src/pages/employee/dashboard.scss +152 -0
- package/src/pages/employee/inbox.scss +40 -5
- package/src/pages/employee/index.scss +11 -5
- package/src/pages/employee/landing.scss +1 -0
- package/src/pages/employee/login.scss +3 -2
- package/src/pages/employee/surveys.scss +32 -0
- package/example/employee.html +0 -16
- package/example/garbage.webp +0 -0
- package/example/index.html +0 -374
- package/example/map.js +0 -72
- package/example/package.json +0 -24
- package/gulpfile.js +0 -55
- package/postcss.config.js +0 -55
- package/tailwind.config.js +0 -105
|
@@ -1395,8 +1395,6 @@ img, video {
|
|
|
1395
1395
|
--bg-opacity:1;
|
|
1396
1396
|
background-color: #fff;
|
|
1397
1397
|
background-color: rgba(255, 255, 255, var(--bg-opacity));
|
|
1398
|
-
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
|
|
1399
|
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
|
|
1400
1398
|
padding: 16px;
|
|
1401
1399
|
margin-bottom: 64px;
|
|
1402
1400
|
border-radius: 4px; }
|
|
@@ -1591,9 +1589,11 @@ img, video {
|
|
|
1591
1589
|
.employeeCard .employee-card-sub-header {
|
|
1592
1590
|
margin-bottom: 40px; }
|
|
1593
1591
|
.employeeCard .card-section-header {
|
|
1594
|
-
margin-bottom:
|
|
1592
|
+
margin-bottom: 20px;
|
|
1593
|
+
color: #0d43a7;
|
|
1595
1594
|
font-size: 24px;
|
|
1596
|
-
line-height: 32px;
|
|
1595
|
+
line-height: 32px;
|
|
1596
|
+
font-weight: 500; }
|
|
1597
1597
|
.employeeCard .card-section-sub-text {
|
|
1598
1598
|
--text-opacity:1;
|
|
1599
1599
|
color: #0b0c0c;
|
|
@@ -5729,6 +5729,9 @@ video::-webkit-media-controls-panel {
|
|
|
5729
5729
|
-ms-flex-line-pack: center;
|
|
5730
5730
|
align-content: center; }
|
|
5731
5731
|
|
|
5732
|
+
.employeeCard {
|
|
5733
|
+
width: 100% !important; }
|
|
5734
|
+
|
|
5732
5735
|
.banner .bannerCard {
|
|
5733
5736
|
min-width: 420px !important;
|
|
5734
5737
|
background-color: initial; }
|
|
@@ -6154,8 +6157,7 @@ video::-webkit-media-controls-panel {
|
|
|
6154
6157
|
background-color: "#152265";
|
|
6155
6158
|
text-align: "center";
|
|
6156
6159
|
color: #fff;
|
|
6157
|
-
margin-top: 170px;
|
|
6158
|
-
border: 1px solid #000; }
|
|
6160
|
+
margin-top: 170px; }
|
|
6159
6161
|
|
|
6160
6162
|
.footerText {
|
|
6161
6163
|
display: "flex";
|
|
@@ -6282,13 +6284,9 @@ video::-webkit-media-controls-panel {
|
|
|
6282
6284
|
padding-top: 88px; }
|
|
6283
6285
|
|
|
6284
6286
|
.employee .submit-bar header {
|
|
6285
|
-
height:
|
|
6287
|
+
height: 2rem !important;
|
|
6286
6288
|
line-height: 2rem !important;
|
|
6287
|
-
background-color: #2947a3;
|
|
6288
|
-
border-radius: 8px;
|
|
6289
|
-
border: transparent;
|
|
6290
|
-
-ms-flex-line-pack: center;
|
|
6291
|
-
align-content: center; }
|
|
6289
|
+
background-color: #2947a3; }
|
|
6292
6290
|
|
|
6293
6291
|
.employee .loginContainer {
|
|
6294
6292
|
padding-top: 88px;
|
|
@@ -6780,7 +6778,17 @@ video::-webkit-media-controls-panel {
|
|
|
6780
6778
|
|
|
6781
6779
|
@media only screen and (min-width: 300px) {
|
|
6782
6780
|
.employee .card-home {
|
|
6783
|
-
height: 220px;
|
|
6781
|
+
height: 220px;
|
|
6782
|
+
border-radius: 12px; } }
|
|
6783
|
+
|
|
6784
|
+
.pageCard {
|
|
6785
|
+
width: 100%;
|
|
6786
|
+
height: 100%;
|
|
6787
|
+
padding: 48px;
|
|
6788
|
+
grid-gap: 48px;
|
|
6789
|
+
gap: 48px;
|
|
6790
|
+
border-radius: 24px;
|
|
6791
|
+
background: #fff; }
|
|
6784
6792
|
|
|
6785
6793
|
.flex-fit {
|
|
6786
6794
|
display: -webkit-box;
|
|
@@ -7652,25 +7660,49 @@ video::-webkit-media-controls-panel {
|
|
|
7652
7660
|
.registryTable tBody tr td {
|
|
7653
7661
|
text-align: left; }
|
|
7654
7662
|
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
|
|
7660
|
-
|
|
7661
|
-
|
|
7662
|
-
|
|
7663
|
-
|
|
7664
|
-
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
|
|
7669
|
-
|
|
7670
|
-
|
|
7671
|
-
|
|
7672
|
-
|
|
7673
|
-
|
|
7663
|
+
@media only screen and (max-width: 640px) {
|
|
7664
|
+
.dashboardCardTypeOne {
|
|
7665
|
+
-webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
|
|
7666
|
+
box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
|
|
7667
|
+
background: #fff;
|
|
7668
|
+
height: 188px;
|
|
7669
|
+
padding: 16px 20px;
|
|
7670
|
+
grid-gap: 24px;
|
|
7671
|
+
gap: 24px;
|
|
7672
|
+
border-radius: 8px 0 0 0;
|
|
7673
|
+
border-top: 5px solid #2947a3;
|
|
7674
|
+
opacity: 1;
|
|
7675
|
+
width: 87%; }
|
|
7676
|
+
.dashboardCardTypeOneHeader {
|
|
7677
|
+
color: #14346d;
|
|
7678
|
+
font-family: Roboto;
|
|
7679
|
+
font-size: 20px;
|
|
7680
|
+
font-weight: 500;
|
|
7681
|
+
line-height: 24px;
|
|
7682
|
+
text-align: center;
|
|
7683
|
+
word-wrap: break-word;
|
|
7684
|
+
margin-left: 10%; } }
|
|
7685
|
+
|
|
7686
|
+
@media only screen and (min-width: 641px) {
|
|
7687
|
+
.dashboardCardTypeOne {
|
|
7688
|
+
-webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
|
|
7689
|
+
box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
|
|
7690
|
+
background: #fff;
|
|
7691
|
+
height: 188px;
|
|
7692
|
+
padding: 16px 20px;
|
|
7693
|
+
grid-gap: 24px;
|
|
7694
|
+
gap: 24px;
|
|
7695
|
+
border-radius: 8px 0 0 0;
|
|
7696
|
+
border-top: 5px solid #2947a3;
|
|
7697
|
+
opacity: 1;
|
|
7698
|
+
width: 100%; }
|
|
7699
|
+
.dashboardCardTypeOneHeader {
|
|
7700
|
+
color: #14346d;
|
|
7701
|
+
font-family: Roboto;
|
|
7702
|
+
font-size: 20px;
|
|
7703
|
+
font-weight: 500;
|
|
7704
|
+
line-height: 24px;
|
|
7705
|
+
text-align: left; } }
|
|
7674
7706
|
|
|
7675
7707
|
.secondary-action {
|
|
7676
7708
|
display: inline;
|
|
@@ -8218,9 +8250,18 @@ body {
|
|
|
8218
8250
|
.help-section-icon {
|
|
8219
8251
|
width: 70px;
|
|
8220
8252
|
height: 70px;
|
|
8221
|
-
background: -webkit-gradient(linear, left top, left bottom, from(#
|
|
8253
|
+
background: -webkit-gradient(linear, left top, left bottom, from(#ff895e), to(#d8693f));
|
|
8222
8254
|
background: linear-gradient(#ff895e, #d8693f);
|
|
8223
|
-
border-radius: 50%;
|
|
8255
|
+
border-radius: 50%;
|
|
8256
|
+
display: -webkit-box;
|
|
8257
|
+
display: -ms-flexbox;
|
|
8258
|
+
display: flex;
|
|
8259
|
+
-webkit-box-pack: center;
|
|
8260
|
+
-ms-flex-pack: center;
|
|
8261
|
+
justify-content: center;
|
|
8262
|
+
-webkit-box-align: center;
|
|
8263
|
+
-ms-flex-align: center;
|
|
8264
|
+
align-items: center; }
|
|
8224
8265
|
|
|
8225
8266
|
.about-section, .middle-section {
|
|
8226
8267
|
padding: 20px 60px; }
|
|
@@ -9368,6 +9409,32 @@ body {
|
|
|
9368
9409
|
padding: 0;
|
|
9369
9410
|
background: none; }
|
|
9370
9411
|
|
|
9412
|
+
.survey-grid-container {
|
|
9413
|
+
display: grid;
|
|
9414
|
+
grid-gap: 16px;
|
|
9415
|
+
gap: 16px; }
|
|
9416
|
+
|
|
9417
|
+
.survey-grid-container-input {
|
|
9418
|
+
padding: 8px;
|
|
9419
|
+
border: 1px solid #ccc;
|
|
9420
|
+
border-radius: 4px; }
|
|
9421
|
+
|
|
9422
|
+
@media (min-width: 320px) {
|
|
9423
|
+
.survey-grid-container {
|
|
9424
|
+
grid-template-columns: repeat(1, 1fr); } }
|
|
9425
|
+
|
|
9426
|
+
@media (min-width: 480px) {
|
|
9427
|
+
.survey-grid-container {
|
|
9428
|
+
grid-template-columns: repeat(2, 1fr); } }
|
|
9429
|
+
|
|
9430
|
+
@media (min-width: 768px) {
|
|
9431
|
+
.survey-grid-container {
|
|
9432
|
+
grid-template-columns: repeat(3, 1fr); } }
|
|
9433
|
+
|
|
9434
|
+
@media (min-width: 1024px) {
|
|
9435
|
+
.survey-grid-container {
|
|
9436
|
+
grid-template-columns: repeat(4, 1fr); } }
|
|
9437
|
+
|
|
9371
9438
|
.frame-54925, .frame-54925 * {
|
|
9372
9439
|
-webkit-box-sizing: border-box;
|
|
9373
9440
|
box-sizing: border-box; }
|
|
@@ -9824,6 +9891,158 @@ body {
|
|
|
9824
9891
|
outline: "none";
|
|
9825
9892
|
font-size: "29px"; }
|
|
9826
9893
|
|
|
9894
|
+
.employee-dashboard-container {
|
|
9895
|
+
display: -webkit-box;
|
|
9896
|
+
display: -ms-flexbox;
|
|
9897
|
+
display: flex;
|
|
9898
|
+
-webkit-box-orient: vertical;
|
|
9899
|
+
-webkit-box-direction: normal;
|
|
9900
|
+
-ms-flex-direction: column;
|
|
9901
|
+
flex-direction: column;
|
|
9902
|
+
grid-gap: 20px;
|
|
9903
|
+
gap: 20px;
|
|
9904
|
+
margin: 20px; }
|
|
9905
|
+
.employee-dashboard-container .employee-dashboard-welcome-card {
|
|
9906
|
+
height: 160px;
|
|
9907
|
+
border-radius: 12px;
|
|
9908
|
+
padding: 20px;
|
|
9909
|
+
margin-top: 20px;
|
|
9910
|
+
position: relative; }
|
|
9911
|
+
.employee-dashboard-container .employee-dashboard-welcome-card .employee-dashboard-welcome-card-entire-content {
|
|
9912
|
+
width: 374px;
|
|
9913
|
+
height: 108px;
|
|
9914
|
+
display: -webkit-box;
|
|
9915
|
+
display: -ms-flexbox;
|
|
9916
|
+
display: flex;
|
|
9917
|
+
-webkit-box-orient: vertical;
|
|
9918
|
+
-webkit-box-direction: normal;
|
|
9919
|
+
-ms-flex-direction: column;
|
|
9920
|
+
flex-direction: column;
|
|
9921
|
+
grid-gap: 16px;
|
|
9922
|
+
gap: 16px;
|
|
9923
|
+
top: 32px;
|
|
9924
|
+
left: 32px; }
|
|
9925
|
+
.employee-dashboard-container .employee-dashboard-welcome-card .employee-dashboard-welcome-card-heading {
|
|
9926
|
+
font-family: Noto Sans;
|
|
9927
|
+
font-weight: 500;
|
|
9928
|
+
font-size: 28px;
|
|
9929
|
+
line-height: 32px;
|
|
9930
|
+
letter-spacing: 0;
|
|
9931
|
+
color: #fff; }
|
|
9932
|
+
.employee-dashboard-container .employee-dashboard-welcome-card .employee-dashboard-welcome-card-content {
|
|
9933
|
+
color: #fff;
|
|
9934
|
+
font-family: Noto Sans;
|
|
9935
|
+
font-weight: 400;
|
|
9936
|
+
font-size: 14px;
|
|
9937
|
+
line-height: 20px;
|
|
9938
|
+
letter-spacing: .25px; }
|
|
9939
|
+
.employee-dashboard-container .employee-dashboard-card-grid {
|
|
9940
|
+
display: grid;
|
|
9941
|
+
grid-template-columns: repeat(1, 1fr);
|
|
9942
|
+
grid-gap: 20px;
|
|
9943
|
+
gap: 20px; }
|
|
9944
|
+
@media (min-width: 600px) {
|
|
9945
|
+
.employee-dashboard-container .employee-dashboard-card-grid {
|
|
9946
|
+
grid-template-columns: repeat(2, 1fr); } }
|
|
9947
|
+
@media (min-width: 1024px) {
|
|
9948
|
+
.employee-dashboard-container .employee-dashboard-card-grid {
|
|
9949
|
+
grid-template-columns: repeat(4, 1fr); } }
|
|
9950
|
+
.employee-dashboard-container .employee-dashboard-card {
|
|
9951
|
+
padding: 20px;
|
|
9952
|
+
border-radius: 12px;
|
|
9953
|
+
position: relative; }
|
|
9954
|
+
.employee-dashboard-container .employee-dashboard-card .employee-dashboard-card-heading-container {
|
|
9955
|
+
display: -webkit-box;
|
|
9956
|
+
display: -ms-flexbox;
|
|
9957
|
+
display: flex;
|
|
9958
|
+
-webkit-box-align: center;
|
|
9959
|
+
-ms-flex-align: center;
|
|
9960
|
+
align-items: center;
|
|
9961
|
+
margin-bottom: 10px;
|
|
9962
|
+
grid-gap: 5px;
|
|
9963
|
+
gap: 5px; }
|
|
9964
|
+
.employee-dashboard-container .employee-dashboard-card .employee-dashboard-card-heading {
|
|
9965
|
+
font-size: 22px;
|
|
9966
|
+
color: #fff;
|
|
9967
|
+
font-family: Noto Sans;
|
|
9968
|
+
font-weight: 400;
|
|
9969
|
+
line-height: 28px;
|
|
9970
|
+
letter-spacing: 0; }
|
|
9971
|
+
.employee-dashboard-container .employee-dashboard-card .employee-dashboard-card-content {
|
|
9972
|
+
color: #fff;
|
|
9973
|
+
font-family: Noto Sans;
|
|
9974
|
+
font-weight: 400;
|
|
9975
|
+
font-size: 14px;
|
|
9976
|
+
line-height: 20px;
|
|
9977
|
+
letter-spacing: .25px; }
|
|
9978
|
+
.employee-dashboard-container .employee-dashboard-table-and-services {
|
|
9979
|
+
display: -webkit-box;
|
|
9980
|
+
display: -ms-flexbox;
|
|
9981
|
+
display: flex;
|
|
9982
|
+
-webkit-box-orient: vertical;
|
|
9983
|
+
-webkit-box-direction: normal;
|
|
9984
|
+
-ms-flex-direction: column;
|
|
9985
|
+
flex-direction: column;
|
|
9986
|
+
grid-gap: 20px;
|
|
9987
|
+
gap: 20px; }
|
|
9988
|
+
@media (min-width: 1024px) {
|
|
9989
|
+
.employee-dashboard-container .employee-dashboard-table-and-services {
|
|
9990
|
+
-webkit-box-orient: horizontal;
|
|
9991
|
+
-webkit-box-direction: normal;
|
|
9992
|
+
-ms-flex-direction: row;
|
|
9993
|
+
flex-direction: row; } }
|
|
9994
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-table-container {
|
|
9995
|
+
-webkit-box-flex: 1;
|
|
9996
|
+
-ms-flex: 1;
|
|
9997
|
+
flex: 1; }
|
|
9998
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-table-container .employee-dashboard-table-header {
|
|
9999
|
+
display: -webkit-box;
|
|
10000
|
+
display: -ms-flexbox;
|
|
10001
|
+
display: flex;
|
|
10002
|
+
-webkit-box-pack: justify;
|
|
10003
|
+
-ms-flex-pack: justify;
|
|
10004
|
+
justify-content: space-between; }
|
|
10005
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-table-container .employee-dashboard-table-header .employee-dashboard-table-title {
|
|
10006
|
+
color: "white";
|
|
10007
|
+
font-family: Manrope;
|
|
10008
|
+
font-weight: 700;
|
|
10009
|
+
font-size: 20px;
|
|
10010
|
+
line-height: 27.32px;
|
|
10011
|
+
letter-spacing: 0; }
|
|
10012
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-table-container .employee-dashboard-table-header .employee-dashboard-view-all-link {
|
|
10013
|
+
color: #00f; }
|
|
10014
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-table-container .employee-dashboard-table-content {
|
|
10015
|
+
overflow: auto;
|
|
10016
|
+
width: 100%; }
|
|
10017
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-quick-services-container {
|
|
10018
|
+
-webkit-box-flex: 1;
|
|
10019
|
+
-ms-flex: 1;
|
|
10020
|
+
flex: 1; }
|
|
10021
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-quick-services-container .employee-dashboard-quick-services-header {
|
|
10022
|
+
display: -webkit-box;
|
|
10023
|
+
display: -ms-flexbox;
|
|
10024
|
+
display: flex;
|
|
10025
|
+
-webkit-box-pack: justify;
|
|
10026
|
+
-ms-flex-pack: justify;
|
|
10027
|
+
justify-content: space-between; }
|
|
10028
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-quick-services-container .employee-dashboard-quick-services-header .employee-dashboard-quick-services-title {
|
|
10029
|
+
color: "#000";
|
|
10030
|
+
font-family: Manrope;
|
|
10031
|
+
font-weight: 700;
|
|
10032
|
+
font-size: 20px;
|
|
10033
|
+
line-height: 27.32px;
|
|
10034
|
+
letter-spacing: 0; }
|
|
10035
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-quick-services-container .employee-dashboard-quick-services-header .employee-dashboard-view-all-link {
|
|
10036
|
+
color: #00f; }
|
|
10037
|
+
.employee-dashboard-container .employee-dashboard-table-and-services .employee-dashboard-quick-services-container .employee-dashboard-module-card-wrapper {
|
|
10038
|
+
display: -webkit-box;
|
|
10039
|
+
display: -ms-flexbox;
|
|
10040
|
+
display: flex;
|
|
10041
|
+
-ms-flex-wrap: wrap;
|
|
10042
|
+
flex-wrap: wrap;
|
|
10043
|
+
grid-gap: 20px;
|
|
10044
|
+
gap: 20px; }
|
|
10045
|
+
|
|
9827
10046
|
.display-none {
|
|
9828
10047
|
display: none; }
|
|
9829
10048
|
|
|
@@ -10379,6 +10598,24 @@ input[type=number], .checkbox-wrap .input-emp[type=number] {
|
|
|
10379
10598
|
width: unset;
|
|
10380
10599
|
margin-right: 1rem; }
|
|
10381
10600
|
|
|
10601
|
+
.ws-button {
|
|
10602
|
+
border: 1px solid grey;
|
|
10603
|
+
background-color: grey; }
|
|
10604
|
+
|
|
10605
|
+
.ws-button, .ws-search-button {
|
|
10606
|
+
display: block;
|
|
10607
|
+
height: 50%;
|
|
10608
|
+
width: 80%;
|
|
10609
|
+
text-align: "center";
|
|
10610
|
+
margin-top: 6%;
|
|
10611
|
+
color: "white"; }
|
|
10612
|
+
|
|
10613
|
+
.ws-search-button {
|
|
10614
|
+
border: 1px solid #000; }
|
|
10615
|
+
|
|
10616
|
+
.button {
|
|
10617
|
+
color: "white"; }
|
|
10618
|
+
|
|
10382
10619
|
.connection-details-old-value-wrapper .old-value-null-wrapper, .plumber-details-old-value-wrapper .old-value-null-wrapper {
|
|
10383
10620
|
visibility: hidden;
|
|
10384
10621
|
padding-bottom: 8px;
|