@pmidc/upyog-css 1.1.5 → 1.1.6
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 +4595 -2612
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CardBasedOptions.scss +425 -0
- package/src/components/NewAccordianCitizen.scss +130 -0
- package/src/components/TimeLine.scss +29 -1
- package/src/components/body.scss +116 -2
- package/src/components/buttons.scss +9 -2
- package/src/components/card.scss +243 -98
- package/src/components/info-banner.scss +1 -1
- package/src/components/keynote.scss +2 -0
- package/src/components/map.scss +6 -0
- package/src/components/multiSelectDropdown.scss +21 -5
- package/src/components/navbar.scss +3 -10
- package/src/components/newFooter.scss +75 -0
- package/src/components/searchAction.scss +7 -0
- package/src/components/selectdropdown.scss +89 -18
- package/src/components/table.scss +325 -141
- package/src/components/textfields.scss +25 -17
- package/src/components/topbar.scss +169 -99
- package/src/index.scss +7 -1
- package/src/pages/citizen/CitizenLogin.scss +50 -0
- package/src/pages/citizen/DocumentList.scss +145 -1
- package/src/pages/citizen/HomePageWrapper.scss +61 -12
- package/src/pages/citizen/InboxCard.scss +327 -0
- package/src/pages/citizen/citizenDocument.scss +4 -0
- package/src/pages/citizen/citizenNewLogin.scss +266 -102
- package/src/pages/citizen/container.scss +10 -0
- package/src/pages/employee/dashboard.scss +1 -1
- package/src/pages/employee/dss.scss +2 -0
- package/src/pages/employee/header.scss +262 -0
- package/src/pages/employee/index.scss +60 -61
- package/src/pages/employee/login.scss +188 -530
package/src/components/body.scss
CHANGED
|
@@ -2,6 +2,15 @@ body {
|
|
|
2
2
|
@apply bg-grey-bg;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
|
+
:root {
|
|
6
|
+
--digit-font-family: "Source Sans Pro", sans-serif;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
body {
|
|
10
|
+
font-family: var(--digit-font-family);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
.body-container {
|
|
6
15
|
@apply bg-grey-bg h-full min-h-screen overflow-x-hidden;
|
|
7
16
|
position: relative !important;
|
|
@@ -76,6 +85,7 @@ body {
|
|
|
76
85
|
.back-btn2 {
|
|
77
86
|
cursor: pointer;
|
|
78
87
|
width: fit-content;
|
|
88
|
+
color: black;
|
|
79
89
|
@apply flex border-solid border-b border-text-primary font-rc text-text-primary text-text-btn ml-sm mb-md;
|
|
80
90
|
|
|
81
91
|
img {
|
|
@@ -98,11 +108,11 @@ body {
|
|
|
98
108
|
|
|
99
109
|
.app-container {
|
|
100
110
|
width: 100%;
|
|
111
|
+
padding: 2rem;
|
|
101
112
|
form {
|
|
102
113
|
.card {
|
|
103
114
|
max-width: 960px;
|
|
104
115
|
h2 {
|
|
105
|
-
text-align: left;
|
|
106
116
|
}
|
|
107
117
|
.field-container {
|
|
108
118
|
max-width: 540px;
|
|
@@ -133,7 +143,7 @@ body {
|
|
|
133
143
|
|
|
134
144
|
.back-btn2 {
|
|
135
145
|
margin-left: 0;
|
|
136
|
-
}
|
|
146
|
+
}
|
|
137
147
|
}
|
|
138
148
|
|
|
139
149
|
.body-container::-webkit-scrollbar {
|
|
@@ -145,4 +155,108 @@ body {
|
|
|
145
155
|
margin-right: -27%;
|
|
146
156
|
max-height: 120px;
|
|
147
157
|
margin-top: 90px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.citizen-and-architect-photo-header {
|
|
161
|
+
font-size: 24px;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.citizen-and-architect-photo-container {
|
|
165
|
+
display: flex;
|
|
166
|
+
justify-content: space-between;
|
|
167
|
+
gap: 20px;
|
|
168
|
+
margin-top: 10px;
|
|
169
|
+
padding: 0px 20px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.citizen-and-architect-photo-item {
|
|
173
|
+
text-align: center;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.citizen-and-architect-photo-image {
|
|
177
|
+
width: 100px;
|
|
178
|
+
height: 100px;
|
|
179
|
+
object-fit: cover;
|
|
180
|
+
border-radius: 10%;
|
|
181
|
+
cursor: default;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.citizen-and-architect-photo-clickable {
|
|
185
|
+
cursor: pointer;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.citizen-and-architect-photo-label {
|
|
189
|
+
/* Add any label styling if needed */
|
|
190
|
+
}
|
|
191
|
+
.clu-summary-page {
|
|
192
|
+
padding: 2rem;
|
|
193
|
+
background-color: #f9f9f9;
|
|
194
|
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
195
|
+
color: #333;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.clu-summary-heading {
|
|
199
|
+
font-size: 1.5rem;
|
|
200
|
+
border-bottom: 2px solid #ccc;
|
|
201
|
+
padding-bottom: 0.3rem;
|
|
202
|
+
color: #2e4a66;
|
|
203
|
+
margin-top: 2rem;
|
|
204
|
+
margin-bottom: 1rem;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.clu-summary-section {
|
|
208
|
+
background-color: #ffffff;
|
|
209
|
+
padding: 1rem 1.5rem;
|
|
210
|
+
border-radius: 8px;
|
|
211
|
+
margin-bottom: 2rem;
|
|
212
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.clu-summary-label-field-pair {
|
|
216
|
+
display: flex;
|
|
217
|
+
justify-content: space-between;
|
|
218
|
+
border-bottom: 1px dashed #e0e0e0;
|
|
219
|
+
padding: 0.5rem 0;
|
|
220
|
+
color: #333;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.clu-summary-bold-label {
|
|
224
|
+
font-weight: bold;
|
|
225
|
+
color: #555;
|
|
226
|
+
}
|
|
227
|
+
.custom-card-container {
|
|
228
|
+
width: 100%;
|
|
229
|
+
background: rgba(255, 255, 255, 0.95);
|
|
230
|
+
backdrop-filter: blur(6px);
|
|
231
|
+
border-radius: 18px;
|
|
232
|
+
border: 1px solid rgba(229, 231, 235, 0.8);
|
|
233
|
+
padding: 0;
|
|
234
|
+
margin-bottom: 24px;
|
|
235
|
+
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
|
|
236
|
+
transition: all 0.25s ease;
|
|
237
|
+
overflow: hidden;
|
|
238
|
+
cursor: default;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.custom-card-clickable {
|
|
242
|
+
cursor: pointer;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.custom-card-hovered {
|
|
246
|
+
transform: translateY(-3px);
|
|
247
|
+
box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.custom-card-table {
|
|
251
|
+
width: 100%;
|
|
252
|
+
border-collapse: separate;
|
|
253
|
+
border-spacing: 24px 20px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.custom-card-td {
|
|
257
|
+
width: 100%;
|
|
258
|
+
padding: 0;
|
|
259
|
+
display: block;
|
|
260
|
+
justify-content: space-between;
|
|
261
|
+
align-items: center;
|
|
148
262
|
}
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
-
.input-mirror-selector-button{
|
|
55
|
+
.input-mirror-selector-button {
|
|
56
56
|
@apply h-16 bg-border text-center border-b-2 border-input-border border-solid outline-none px-lg !important;
|
|
57
57
|
|
|
58
58
|
&:focus {
|
|
@@ -77,4 +77,11 @@
|
|
|
77
77
|
}
|
|
78
78
|
.submit-bar:focus {
|
|
79
79
|
@apply outline-none !important;
|
|
80
|
-
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.go-back-footer-button {
|
|
83
|
+
background-color: white !important;
|
|
84
|
+
color: black !important;
|
|
85
|
+
border: 1px solid !important;
|
|
86
|
+
margin-right: 10px !important;
|
|
87
|
+
}
|