@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.
Files changed (33) hide show
  1. package/dist/index.css +4595 -2612
  2. package/dist/index.min.css +1 -1
  3. package/package.json +1 -1
  4. package/src/components/CardBasedOptions.scss +425 -0
  5. package/src/components/NewAccordianCitizen.scss +130 -0
  6. package/src/components/TimeLine.scss +29 -1
  7. package/src/components/body.scss +116 -2
  8. package/src/components/buttons.scss +9 -2
  9. package/src/components/card.scss +243 -98
  10. package/src/components/info-banner.scss +1 -1
  11. package/src/components/keynote.scss +2 -0
  12. package/src/components/map.scss +6 -0
  13. package/src/components/multiSelectDropdown.scss +21 -5
  14. package/src/components/navbar.scss +3 -10
  15. package/src/components/newFooter.scss +75 -0
  16. package/src/components/searchAction.scss +7 -0
  17. package/src/components/selectdropdown.scss +89 -18
  18. package/src/components/table.scss +325 -141
  19. package/src/components/textfields.scss +25 -17
  20. package/src/components/topbar.scss +169 -99
  21. package/src/index.scss +7 -1
  22. package/src/pages/citizen/CitizenLogin.scss +50 -0
  23. package/src/pages/citizen/DocumentList.scss +145 -1
  24. package/src/pages/citizen/HomePageWrapper.scss +61 -12
  25. package/src/pages/citizen/InboxCard.scss +327 -0
  26. package/src/pages/citizen/citizenDocument.scss +4 -0
  27. package/src/pages/citizen/citizenNewLogin.scss +266 -102
  28. package/src/pages/citizen/container.scss +10 -0
  29. package/src/pages/employee/dashboard.scss +1 -1
  30. package/src/pages/employee/dss.scss +2 -0
  31. package/src/pages/employee/header.scss +262 -0
  32. package/src/pages/employee/index.scss +60 -61
  33. package/src/pages/employee/login.scss +188 -530
@@ -0,0 +1,327 @@
1
+ .inbox-card-container {
2
+ width: 100%;
3
+ height: 85%;
4
+ position: relative;
5
+ }
6
+
7
+ .inbox-card-body {
8
+ margin: 0px;
9
+ padding: 0px;
10
+ }
11
+
12
+ .inbox-outer-flex-column {
13
+ display: flex;
14
+ flex-direction: column;
15
+ }
16
+
17
+ .inbox-inner-flex-row {
18
+ display: flex;
19
+ }
20
+
21
+ .inbox-icon-container {
22
+ width: 30%;
23
+ height: 50px;
24
+ }
25
+
26
+ .inbox-icon-banner-style {
27
+ position: absolute;
28
+ left: 10%;
29
+ top: 10%;
30
+ border-radius: 5px;
31
+ box-shadow: 5px 5px 5px 0px #e3e4e3;
32
+ }
33
+
34
+ .inbox-kpi-container {
35
+ width: 70%;
36
+ }
37
+
38
+ .inbox-flex-fit-citizen {
39
+ padding-left: 17px;
40
+ }
41
+
42
+ .inbox-card-count-style {
43
+ display: flex;
44
+ width: 100%;
45
+ flex-direction: column;
46
+ }
47
+
48
+ .inbox-count-wrapper {
49
+ margin-left: auto;
50
+ display: flex;
51
+ flex-direction: column-reverse;
52
+ width: 100%;
53
+ }
54
+
55
+ .inbox-label-text {
56
+ text-align: center;
57
+ }
58
+
59
+ .inbox-count-text {
60
+ text-align: center;
61
+ }
62
+
63
+ .inbox-count-value {
64
+ color: #ae1e28;
65
+ font-size: 18px;
66
+ font-family: sans-serif;
67
+ font-weight: bold;
68
+ }
69
+
70
+ .inbox-links-wrapper-style {
71
+ display: flex;
72
+ justify-content: space-around;
73
+ padding-top: 15px;
74
+ }
75
+
76
+ .inbox-link-item {
77
+ padding-left: 5px;
78
+ color: #a1a5b7;
79
+ display: flex;
80
+ }
81
+
82
+ .inbox-link-flex {
83
+ display: flex;
84
+ }
85
+ .inbox-text-employee-card {
86
+ font-size: 1.5rem;
87
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
88
+ position: absolute;
89
+ top: 10%;
90
+ padding-left: 10%;
91
+ color: rgb(255, 255, 255) !important;
92
+ width: 300px;
93
+ }
94
+
95
+ .view-declaration-link {
96
+ color: green;
97
+ }
98
+
99
+ .view-link-button {
100
+ float: right;
101
+ display: inline;
102
+ background: #fff;
103
+ }
104
+
105
+ .summary-content-wrapper {
106
+ margin-top: 30px;
107
+ padding-bottom: 30px;
108
+ }
109
+
110
+ .summary-page-table-container {
111
+ margin-top: 19px;
112
+ background: #fafafa;
113
+ border: 1px solid #d6d5d4;
114
+ border-radius: 4px;
115
+ padding: 12px;
116
+ max-width: 960px;
117
+ min-width: 280px;
118
+ }
119
+
120
+ .summary-page-table {
121
+ width: 100%;
122
+ border-collapse: collapse;
123
+ font-size: 15px;
124
+ }
125
+
126
+ .summary-page-table-row {
127
+ border-bottom: 1px solid #eaeaea;
128
+ }
129
+
130
+ .summary-page-table-data {
131
+ padding: 8px;
132
+ font-weight: 600;
133
+ color: #333;
134
+ }
135
+
136
+ .summary-page-tabledata {
137
+ padding: 8px;
138
+ text-align: right;
139
+ color: #555;
140
+ }
141
+
142
+ .summary-page-uploaded-tabledata {
143
+ padding: 12px 8px;
144
+ font-weight: 600;
145
+ color: #333;
146
+ }
147
+
148
+ .summary-page-uploaded-table-data {
149
+ padding: 12px 8px;
150
+ text-align: right;
151
+ }
152
+
153
+ .summary-page-checkbox {
154
+ height: auto;
155
+ }
156
+
157
+ .summary-page-scroll {
158
+ overflow: scroll;
159
+ }
160
+
161
+ .bpa-newbuilding-bpa-section {
162
+ background-color: #ffffff;
163
+ border-radius: 8px;
164
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
165
+ padding-bottom: 50px;
166
+ }
167
+ .bpa-newbuilding-label-field-pair {
168
+ display: flex;
169
+ justify-content: space-between;
170
+ border-bottom: 1px dashed #e0e0e0;
171
+ padding: 0.5rem 0;
172
+ color: #333;
173
+ }
174
+ .bpa-newbuilding-bold-label {
175
+ font-weight: 700;
176
+ color: #555;
177
+ }
178
+ .bpa-newbuilding-search-icon-container {
179
+ position: relative;
180
+ z-index: 1;
181
+ right: 95px;
182
+ margin-top: -24px;
183
+ margin-right: -20px;
184
+ cursor: pointer;
185
+ }
186
+ .bpa-newbuilding-or-text {
187
+ position: relative;
188
+ font-weight: 700;
189
+ left: 20px;
190
+ }
191
+ .bpa-newbuilding-upload-margin {
192
+ margin-bottom: 15px;
193
+ }
194
+ .bpa-newbuilding-ecbc-error-text {
195
+ color: red;
196
+ }
197
+ .bpa-newbuilding-submit-back {
198
+ border: 1px solid;
199
+ background: transparent;
200
+ color: #2947a3;
201
+ margin-right: 5px;
202
+ }
203
+ .bpa-newbuilding-newbuilding-error-message {
204
+ color: red;
205
+ margin-top: 4px;
206
+ font-size: 0.9rem;
207
+ }
208
+ .newbuilding-error-message {
209
+ color: "red";
210
+ font-size: "12px";
211
+ margin-top: "4px";
212
+ }
213
+
214
+ .bpa-owner-error-message {
215
+ color: red;
216
+ font-size: 12px;
217
+ margin-top: 4px;
218
+ }
219
+ .bpa-owner-delete-icon {
220
+ position: relative;
221
+ bottom: 5px;
222
+ }
223
+ .bpa-owner-link-delete-button {
224
+ width: 50px;
225
+ display: inline-flex;
226
+ justify-content: center;
227
+ align-items: center;
228
+ background: black;
229
+ float: right;
230
+ }
231
+ .bpa-owner-owner-card {
232
+ border: 1px solid;
233
+ border-radius: 5px;
234
+ padding: 10px;
235
+ padding-top: 20px;
236
+ margin-top: 10px;
237
+ border-color: #f3f3f3;
238
+ background: #fafafa;
239
+ }
240
+ .bpa-owner-cardlabel-negative-margin {
241
+ margin-bottom: -15px;
242
+ }
243
+ .bpa-owner-mobile-row {
244
+ margin-top: 30px;
245
+ }
246
+ .bpa-owner-country-prefix {
247
+ margin-bottom: 24px;
248
+ padding: 3px 2px;
249
+ border: 1px solid #b4b4b4;
250
+ border-radius: 8px 0 0 8px;
251
+ display: inline-block;
252
+ }
253
+ .bpa-owner-phone-input {
254
+ background: #fafafa;
255
+ padding: 0 4px;
256
+ border-radius: 0 8px 8px 0;
257
+ width: 96%;
258
+ }
259
+ .bpa-owner-search-icon-container {
260
+ position: relative;
261
+ z-index: 100;
262
+ right: 44px;
263
+ margin-top: -24px;
264
+ margin-right: -20px;
265
+ cursor: pointer;
266
+ }
267
+ .bpa-owner-cardlabel-margin-top {
268
+ margin-top: 30px;
269
+ }
270
+ .bpa-owner-upload-row {
271
+ display: flex;
272
+ gap: 15px;
273
+ flex-direction: row;
274
+ }
275
+ @media (max-width: 768px) {
276
+ .upload-row {
277
+ flex-direction: column;
278
+ }
279
+ }
280
+ .bpa-owner-input-bg-fa {
281
+ background: #fafafa;
282
+ }
283
+ .bpa-owner-owner-textarea {
284
+ background: #fafafa;
285
+ width: 100%;
286
+ min-height: 80px;
287
+ padding: 8px;
288
+ border: 1px solid #ccc;
289
+ border-radius: 4px;
290
+ resize: vertical;
291
+ }
292
+ .bpa-owner-checkbox-top {
293
+ padding-top: 10px;
294
+ }
295
+ .bpa-owner-add-owner-row {
296
+ display: flex;
297
+ padding-bottom: 15px;
298
+ color: #ff8c00;
299
+ }
300
+ .bpa-owner-add-owner-button {
301
+ padding-top: 10px;
302
+ background: transparent;
303
+ border: none;
304
+ color: inherit;
305
+ }
306
+ .bpa-owner-submit-back {
307
+ border: 1px solid;
308
+ background: transparent;
309
+ color: #2947a3;
310
+ margin-right: 5px;
311
+ }
312
+ .bpa-owner-label-field-pair {
313
+ display: flex;
314
+ justify-content: space-between;
315
+ border-bottom: 1px dashed #e0e0e0;
316
+ padding: 0.5rem 0;
317
+ color: #333;
318
+ }
319
+ .bpa-owner-bold-label {
320
+ font-weight: 700;
321
+ color: #555;
322
+ }
323
+ .bpa-owner-newbuilding-error-message {
324
+ color: red;
325
+ margin-top: 4px;
326
+ font-size: 0.9rem;
327
+ }
@@ -19,4 +19,8 @@
19
19
  .documentContainerPadding{
20
20
  padding: 0 10px;
21
21
  }
22
+ }
23
+
24
+ .obps-challan-documents-container{
25
+ margin-bottom: 24px;
22
26
  }