@pmidc/upyog-css 1.2.17 → 1.2.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 +338 -16
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/body.scss +1 -0
- package/src/components/card.scss +9 -2
- package/src/components/documentSection.scss +41 -2
- package/src/index.scss +2 -6
- package/src/pages/citizen/SurveyList.scss +3 -0
- package/src/pages/employee/dashboard.scss +1 -0
- package/src/pages/employee/inbox.scss +200 -0
- package/src/pages/employee/index.scss +5 -6
package/package.json
CHANGED
package/src/components/body.scss
CHANGED
package/src/components/card.scss
CHANGED
|
@@ -807,11 +807,15 @@ button.card-link.submit-bar {
|
|
|
807
807
|
width: 100% !important;
|
|
808
808
|
}
|
|
809
809
|
|
|
810
|
-
|
|
810
|
+
.ws-citizen-wrapper .app-container {
|
|
811
|
+
margin-top: 1rem !important;
|
|
812
|
+
padding: 0 !important;
|
|
813
|
+
|
|
814
|
+
}
|
|
811
815
|
|
|
812
816
|
@media (max-width: 768px) {
|
|
813
817
|
.chb-citizen .app-container{
|
|
814
|
-
margin-top:
|
|
818
|
+
margin-top: 3rem !important;
|
|
815
819
|
}
|
|
816
820
|
|
|
817
821
|
.pet-citizen .app-container{
|
|
@@ -820,6 +824,9 @@ button.card-link.submit-bar {
|
|
|
820
824
|
.mcollect-citizen .app-container{
|
|
821
825
|
margin-top: 2rem !important;
|
|
822
826
|
}
|
|
827
|
+
.ads-citizen .app-container{
|
|
828
|
+
margin-top: 2rem !important;
|
|
829
|
+
}
|
|
823
830
|
|
|
824
831
|
.bills-citizen-wrapper{
|
|
825
832
|
margin-top: 1rem !important;
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.document-grid {
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
display: flex;
|
|
39
|
+
flex-wrap: wrap;
|
|
40
40
|
gap: 16px;
|
|
41
41
|
padding: 8px;
|
|
42
42
|
}
|
|
@@ -93,3 +93,42 @@
|
|
|
93
93
|
font-weight: 600;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
/* Mobile responsive styles for document section */
|
|
97
|
+
@media only screen and (max-width: 768px) {
|
|
98
|
+
.document-container {
|
|
99
|
+
margin-top: 8px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.document-grid {
|
|
103
|
+
display: flex;
|
|
104
|
+
flex-wrap: wrap;
|
|
105
|
+
gap: 12px;
|
|
106
|
+
padding: 4px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.document-card {
|
|
110
|
+
padding: 8px;
|
|
111
|
+
min-height: 140px;
|
|
112
|
+
max-height: 140px;
|
|
113
|
+
width: 100%;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.document-icon-wrapper {
|
|
117
|
+
width: 60px;
|
|
118
|
+
height: 70px;
|
|
119
|
+
margin-bottom: 6px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.document-name {
|
|
123
|
+
font-size: 10px;
|
|
124
|
+
line-height: 1.2;
|
|
125
|
+
margin-bottom: 4px;
|
|
126
|
+
text-align: center;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.document-action-label {
|
|
130
|
+
font-size: 9px;
|
|
131
|
+
margin-top: 4px;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
package/src/index.scss
CHANGED
|
@@ -139,6 +139,7 @@
|
|
|
139
139
|
|
|
140
140
|
@import "./modules/adv/index.scss";
|
|
141
141
|
@import "./modules/hrms/index.scss";
|
|
142
|
+
|
|
142
143
|
.display-none {
|
|
143
144
|
display: none;
|
|
144
145
|
}
|
|
@@ -471,7 +472,7 @@
|
|
|
471
472
|
|
|
472
473
|
.text-input {
|
|
473
474
|
width: 100%;
|
|
474
|
-
|
|
475
|
+
|
|
475
476
|
input {
|
|
476
477
|
&:hover {
|
|
477
478
|
@apply border-2 border-solid border-primary-main;
|
|
@@ -738,7 +739,6 @@
|
|
|
738
739
|
.citizen-obps-wrapper,
|
|
739
740
|
.selection-card-wrapper,
|
|
740
741
|
.fsm-citizen-wrapper,
|
|
741
|
-
.pgr-citizen-wrapper,
|
|
742
742
|
.pt-citizen,
|
|
743
743
|
.bill-citizen,
|
|
744
744
|
.bills-citizen-wrapper,
|
|
@@ -943,10 +943,6 @@
|
|
|
943
943
|
padding-bottom: 20px;
|
|
944
944
|
}
|
|
945
945
|
|
|
946
|
-
.ndc_card_main {
|
|
947
|
-
padding: 25px 25px;
|
|
948
|
-
}
|
|
949
|
-
|
|
950
946
|
.step-label {
|
|
951
947
|
font-size: 12px !important;
|
|
952
948
|
}
|
|
@@ -757,3 +757,203 @@
|
|
|
757
757
|
.filter-card{
|
|
758
758
|
padding: 1rem !important;
|
|
759
759
|
}
|
|
760
|
+
|
|
761
|
+
.employee-quick-service-link {
|
|
762
|
+
text-decoration: none;
|
|
763
|
+
display: block;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.employee-quick-service-card {
|
|
767
|
+
display: flex;
|
|
768
|
+
align-items: stretch;
|
|
769
|
+
border-radius: 16px;
|
|
770
|
+
overflow: hidden;
|
|
771
|
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
|
772
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
773
|
+
transform: translateY(0) scale(1);
|
|
774
|
+
background: white;
|
|
775
|
+
position: relative;
|
|
776
|
+
border: 2px solid transparent;
|
|
777
|
+
width: 400px;
|
|
778
|
+
height: 140px;
|
|
779
|
+
min-height: 140px;
|
|
780
|
+
max-height: 140px;
|
|
781
|
+
|
|
782
|
+
@media (max-width: 768px) {
|
|
783
|
+
width: 100%;
|
|
784
|
+
height: 120px;
|
|
785
|
+
min-height: 120px;
|
|
786
|
+
max-height: 120px;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
&.hovered {
|
|
790
|
+
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
|
|
791
|
+
transform: translateY(-4px) scale(1.02);
|
|
792
|
+
border: 2px solid rgba(79, 101, 216, 0.3);
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.card-icon-container {
|
|
797
|
+
display: flex;
|
|
798
|
+
justify-content: center;
|
|
799
|
+
align-items: center;
|
|
800
|
+
min-width: 120px;
|
|
801
|
+
width: 120px;
|
|
802
|
+
padding: 24px;
|
|
803
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
804
|
+
position: relative;
|
|
805
|
+
overflow: hidden;
|
|
806
|
+
|
|
807
|
+
@media (max-width: 768px) {
|
|
808
|
+
min-width: 80px;
|
|
809
|
+
width: 80px;
|
|
810
|
+
padding: 16px;
|
|
811
|
+
}
|
|
812
|
+
.employee-quick-service-link {
|
|
813
|
+
width: 100%;
|
|
814
|
+
|
|
815
|
+
}
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.card-background-circle {
|
|
819
|
+
position: absolute;
|
|
820
|
+
width: 150px;
|
|
821
|
+
height: 150px;
|
|
822
|
+
background: rgba(255, 255, 255, 0.1);
|
|
823
|
+
border-radius: 50%;
|
|
824
|
+
top: -50px;
|
|
825
|
+
right: -50px;
|
|
826
|
+
transition: transform 0.5s ease;
|
|
827
|
+
transform: scale(1);
|
|
828
|
+
|
|
829
|
+
@media (max-width: 768px) {
|
|
830
|
+
width: 100px;
|
|
831
|
+
height: 100px;
|
|
832
|
+
top: -40px;
|
|
833
|
+
right: -40px;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.hovered & {
|
|
837
|
+
transform: scale(1.5);
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.card-icon-wrapper {
|
|
842
|
+
transform: scale(1) rotate(0deg);
|
|
843
|
+
transition: transform 0.3s ease;
|
|
844
|
+
z-index: 1;
|
|
845
|
+
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
|
|
846
|
+
|
|
847
|
+
.hovered & {
|
|
848
|
+
transform: scale(1.15) rotate(5deg);
|
|
849
|
+
}
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.card-content-container {
|
|
853
|
+
flex: 1;
|
|
854
|
+
display: flex;
|
|
855
|
+
align-items: center;
|
|
856
|
+
justify-content: space-between;
|
|
857
|
+
padding: 24px 32px;
|
|
858
|
+
background: white;
|
|
859
|
+
|
|
860
|
+
@media (max-width: 768px) {
|
|
861
|
+
padding: 16px 20px;
|
|
862
|
+
}
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.card-text-content {
|
|
866
|
+
flex: 1;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.card-module-title {
|
|
870
|
+
font-size: 22px;
|
|
871
|
+
font-weight: 700;
|
|
872
|
+
color: #1a202c;
|
|
873
|
+
margin: 0;
|
|
874
|
+
line-height: 1.3;
|
|
875
|
+
transition: color 0.3s ease;
|
|
876
|
+
overflow: hidden;
|
|
877
|
+
text-overflow: ellipsis;
|
|
878
|
+
white-space: normal;
|
|
879
|
+
|
|
880
|
+
@media (max-width: 768px) {
|
|
881
|
+
font-size: 16px;
|
|
882
|
+
white-space: nowrap;
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.card-module-description {
|
|
887
|
+
font-size: 14px;
|
|
888
|
+
color: #718096;
|
|
889
|
+
margin: 6px 0 0 0;
|
|
890
|
+
font-weight: 400;
|
|
891
|
+
display: block;
|
|
892
|
+
|
|
893
|
+
@media (max-width: 768px) {
|
|
894
|
+
font-size: 12px;
|
|
895
|
+
display: none;
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.card-arrow-container {
|
|
900
|
+
display: flex;
|
|
901
|
+
align-items: center;
|
|
902
|
+
justify-content: center;
|
|
903
|
+
width: 40px;
|
|
904
|
+
height: 40px;
|
|
905
|
+
border-radius: 50%;
|
|
906
|
+
background: #f7fafc;
|
|
907
|
+
transition: all 0.3s ease;
|
|
908
|
+
transform: translateX(0);
|
|
909
|
+
|
|
910
|
+
@media (max-width: 768px) {
|
|
911
|
+
width: 32px;
|
|
912
|
+
height: 32px;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.hovered & {
|
|
916
|
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
917
|
+
transform: translateX(4px);
|
|
918
|
+
}
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.card-arrow-svg {
|
|
922
|
+
transition: transform 0.3s ease;
|
|
923
|
+
transform: translateX(0);
|
|
924
|
+
|
|
925
|
+
.hovered & {
|
|
926
|
+
transform: translateX(2px);
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.card-arrow-path {
|
|
931
|
+
stroke: #4a5568;
|
|
932
|
+
stroke-width: 2;
|
|
933
|
+
stroke-linecap: round;
|
|
934
|
+
stroke-linejoin: round;
|
|
935
|
+
|
|
936
|
+
.hovered & {
|
|
937
|
+
stroke: white;
|
|
938
|
+
}
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.card-shine-effect {
|
|
942
|
+
position: absolute;
|
|
943
|
+
top: 0;
|
|
944
|
+
left: -100%;
|
|
945
|
+
width: 100%;
|
|
946
|
+
height: 100%;
|
|
947
|
+
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
|
|
948
|
+
animation: shine 0.6s ease;
|
|
949
|
+
pointer-events: none;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
@keyframes shine {
|
|
953
|
+
0% {
|
|
954
|
+
left: -100%;
|
|
955
|
+
}
|
|
956
|
+
100% {
|
|
957
|
+
left: 100%;
|
|
958
|
+
}
|
|
959
|
+
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
.ground-container {
|
|
8
8
|
margin-bottom: 56px;
|
|
9
9
|
margin-left: 0px;
|
|
10
|
-
margin-top:
|
|
10
|
+
margin-top: 1rem !important;
|
|
11
11
|
@apply flex flex-col;
|
|
12
12
|
}
|
|
13
13
|
.card-home {
|
|
@@ -66,14 +66,14 @@
|
|
|
66
66
|
|
|
67
67
|
.main {
|
|
68
68
|
padding: 10px;
|
|
69
|
-
|
|
69
|
+
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
@media (min-width: 640px) {
|
|
73
73
|
.main {
|
|
74
|
-
padding-top:
|
|
75
|
-
margin-top: 0;
|
|
76
|
-
padding: 0;
|
|
74
|
+
padding-top: 26px !important;
|
|
75
|
+
margin-top: 0 !important;
|
|
76
|
+
padding: 0 !important;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -526,7 +526,6 @@
|
|
|
526
526
|
.main {
|
|
527
527
|
display: flex;
|
|
528
528
|
flex-direction: column;
|
|
529
|
-
padding-top: 56px;
|
|
530
529
|
margin-left: 64px;
|
|
531
530
|
width: calc(100%-83px);
|
|
532
531
|
}
|