@pmidc/upyog-css 1.0.10 → 1.0.11
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 +111 -3
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/PageBasedInput.scss +1 -1
- package/src/components/card.scss +1 -1
- package/src/index.scss +3 -0
- package/src/pages/common/form.scss +26 -0
- package/src/pages/common/stepForm.scss +41 -0
- package/src/pages/employee/index.scss +173 -132
package/dist/index.css
CHANGED
|
@@ -1299,7 +1299,7 @@ img, video {
|
|
|
1299
1299
|
-webkit-box-shadow: 0 0 5px 0 rgba(34, 34, 34, 0.43922);
|
|
1300
1300
|
box-shadow: 0 0 5px 0 rgba(34, 34, 34, 0.43922);
|
|
1301
1301
|
border-radius: 4px;
|
|
1302
|
-
max-width:
|
|
1302
|
+
max-width: 60%; }
|
|
1303
1303
|
.card .card-header, .card-emp .card-header {
|
|
1304
1304
|
font-size: 32px;
|
|
1305
1305
|
line-height: 40px;
|
|
@@ -4964,7 +4964,7 @@ video::-webkit-media-controls-panel {
|
|
|
4964
4964
|
display: block;
|
|
4965
4965
|
position: relative; }
|
|
4966
4966
|
.PageBasedInputWrapper .card, .PageBasedInputWrapper .card-emp {
|
|
4967
|
-
max-width:
|
|
4967
|
+
max-width: 75%; }
|
|
4968
4968
|
.PageBasedInputWrapper button {
|
|
4969
4969
|
max-width: 240px; } }
|
|
4970
4970
|
|
|
@@ -6429,7 +6429,7 @@ video::-webkit-media-controls-panel {
|
|
|
6429
6429
|
white-space: nowrap;
|
|
6430
6430
|
height: calc(100vh - 36px);
|
|
6431
6431
|
padding-bottom: 5rem;
|
|
6432
|
-
background: -webkit-gradient(linear, left top, right bottom, from(#
|
|
6432
|
+
background: -webkit-gradient(linear, left top, right bottom, from(#3765ca), to(#294a97));
|
|
6433
6433
|
background: linear-gradient(to bottom right, #3765ca, #294a97); }
|
|
6434
6434
|
.citizen .sidebar .actions, .employee .sidebar .actions {
|
|
6435
6435
|
cursor: pointer;
|
|
@@ -6810,6 +6810,45 @@ video::-webkit-media-controls-panel {
|
|
|
6810
6810
|
border-radius: 24px;
|
|
6811
6811
|
background: #fff; }
|
|
6812
6812
|
|
|
6813
|
+
.ndcFormCard {
|
|
6814
|
+
max-width: 1200px;
|
|
6815
|
+
margin: auto;
|
|
6816
|
+
padding: 20px;
|
|
6817
|
+
background: #fff;
|
|
6818
|
+
border-radius: 10px;
|
|
6819
|
+
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
6820
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
|
|
6821
|
+
.ndcFormCard form {
|
|
6822
|
+
display: grid;
|
|
6823
|
+
grid-template-columns: repeat(3, 1fr);
|
|
6824
|
+
grid-gap: 20px;
|
|
6825
|
+
gap: 20px; }
|
|
6826
|
+
.ndcFormCard form .surveydetailsform-wrapper {
|
|
6827
|
+
display: -webkit-box;
|
|
6828
|
+
display: -ms-flexbox;
|
|
6829
|
+
display: flex;
|
|
6830
|
+
-webkit-box-orient: vertical;
|
|
6831
|
+
-webkit-box-direction: normal;
|
|
6832
|
+
-ms-flex-direction: column;
|
|
6833
|
+
flex-direction: column;
|
|
6834
|
+
width: 100%; }
|
|
6835
|
+
.ndcFormCard form .surveydetailsform-wrapper label {
|
|
6836
|
+
font-weight: 700;
|
|
6837
|
+
margin-bottom: 5px; }
|
|
6838
|
+
.ndcFormCard form .surveydetailsform-wrapper input, .ndcFormCard form .surveydetailsform-wrapper .checkbox-wrap .input-emp, .checkbox-wrap .ndcFormCard form .surveydetailsform-wrapper .input-emp {
|
|
6839
|
+
padding: 10px;
|
|
6840
|
+
border: 1px solid #ccc;
|
|
6841
|
+
border-radius: 5px; }
|
|
6842
|
+
.ndcFormCard form .surveydetailsform-wrapper p {
|
|
6843
|
+
color: red;
|
|
6844
|
+
font-size: 14px; }
|
|
6845
|
+
@media (max-width: 1024px) {
|
|
6846
|
+
.ndcFormCard form {
|
|
6847
|
+
grid-template-columns: repeat(2, 1fr); } }
|
|
6848
|
+
@media (max-width: 768px) {
|
|
6849
|
+
.ndcFormCard form {
|
|
6850
|
+
grid-template-columns: 1fr; } }
|
|
6851
|
+
|
|
6813
6852
|
.flex-fit {
|
|
6814
6853
|
display: -webkit-box;
|
|
6815
6854
|
display: -ms-flexbox;
|
|
@@ -10547,6 +10586,75 @@ body {
|
|
|
10547
10586
|
letter-spacing: .15px;
|
|
10548
10587
|
color: #1e293b; }
|
|
10549
10588
|
|
|
10589
|
+
.step-form-wrapper {
|
|
10590
|
+
width: 100%;
|
|
10591
|
+
-webkit-box-orient: horizontal;
|
|
10592
|
+
-ms-flex-direction: row;
|
|
10593
|
+
flex-direction: row;
|
|
10594
|
+
-webkit-box-align: start;
|
|
10595
|
+
-ms-flex-align: start;
|
|
10596
|
+
align-items: flex-start;
|
|
10597
|
+
-webkit-box-pack: start;
|
|
10598
|
+
-ms-flex-pack: start;
|
|
10599
|
+
justify-content: flex-start; }
|
|
10600
|
+
|
|
10601
|
+
.step-form-wrapper, .stepper-navigation-bar {
|
|
10602
|
+
display: -webkit-box;
|
|
10603
|
+
display: -ms-flexbox;
|
|
10604
|
+
display: flex;
|
|
10605
|
+
-webkit-box-direction: normal; }
|
|
10606
|
+
|
|
10607
|
+
.stepper-navigation-bar {
|
|
10608
|
+
-webkit-box-orient: vertical;
|
|
10609
|
+
-ms-flex-direction: column;
|
|
10610
|
+
flex-direction: column;
|
|
10611
|
+
-webkit-box-pack: justify;
|
|
10612
|
+
-ms-flex-pack: justify;
|
|
10613
|
+
justify-content: space-between;
|
|
10614
|
+
height: 50%;
|
|
10615
|
+
margin-bottom: 20px; }
|
|
10616
|
+
|
|
10617
|
+
.step-form-step-label {
|
|
10618
|
+
font-size: 20px;
|
|
10619
|
+
color: #1e1e1e;
|
|
10620
|
+
font-weight: 500;
|
|
10621
|
+
font-family: Noto Sans,sans-serif;
|
|
10622
|
+
margin-right: 6px; }
|
|
10623
|
+
|
|
10624
|
+
.step-form-step-number {
|
|
10625
|
+
font-size: 18px;
|
|
10626
|
+
color: #263238;
|
|
10627
|
+
font-weight: 400;
|
|
10628
|
+
font-family: Noto Sans,sans-serif;
|
|
10629
|
+
margin: 0 6px 0 0; }
|
|
10630
|
+
|
|
10631
|
+
.line-bw-step-circles {
|
|
10632
|
+
position: absolute;
|
|
10633
|
+
width: 2px;
|
|
10634
|
+
height: 50px;
|
|
10635
|
+
background-color: grey;
|
|
10636
|
+
left: 50%;
|
|
10637
|
+
top: 100%;
|
|
10638
|
+
-webkit-transform: translateX(-50%);
|
|
10639
|
+
transform: translateX(-50%); }
|
|
10640
|
+
|
|
10641
|
+
.form-container {
|
|
10642
|
+
display: grid;
|
|
10643
|
+
grid-gap: 16px;
|
|
10644
|
+
gap: 16px; }
|
|
10645
|
+
|
|
10646
|
+
@media (min-width: 900px) {
|
|
10647
|
+
.form-container {
|
|
10648
|
+
grid-template-columns: repeat(3, 1fr); } }
|
|
10649
|
+
|
|
10650
|
+
@media (min-width: 480px) and (max-width: 899px) {
|
|
10651
|
+
.form-container {
|
|
10652
|
+
grid-template-columns: repeat(2, 1fr); } }
|
|
10653
|
+
|
|
10654
|
+
@media (max-width: 479px) {
|
|
10655
|
+
.form-container {
|
|
10656
|
+
grid-template-columns: 1fr; } }
|
|
10657
|
+
|
|
10550
10658
|
.display-none {
|
|
10551
10659
|
display: none; }
|
|
10552
10660
|
|