@pmidc/upyog-css 1.1.9 → 1.1.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 +2372 -411
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/CardBasedOptions.scss +2 -1
- package/src/components/SurveyModal.scss +196 -0
- package/src/components/body.scss +194 -9
- package/src/components/buttons.scss +35 -4
- package/src/components/card.scss +89 -48
- package/src/components/custombtn.scss +1 -1
- package/src/components/multiLink.scss +1 -1
- package/src/components/navbar.scss +39 -0
- package/src/components/selectdropdown.scss +11 -11
- package/src/components/textfields.scss +19 -0
- package/src/index.scss +2 -0
- package/src/modules/rentAndLease/index.scss +3 -2
- package/src/pages/citizen/InboxCard.scss +112 -61
- package/src/pages/citizen/citizenNewLogin.scss +19 -24
- package/src/pages/citizen/loaderMessage.scss +82 -36
- package/src/pages/common/newApplicationTimeline.scss +1 -3
- package/src/pages/employee/header.scss +1 -1
- package/src/pages/employee/index.scss +1 -0
- package/src/pages/employee/landing.scss +1461 -3
- package/src/pages/employee/login.scss +3 -3
- package/src/pages/swach/index.scss +2 -0
package/src/components/card.scss
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
3
|
.card {
|
|
4
|
-
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
|
|
5
|
-
margin: 8px;
|
|
6
4
|
padding: 20px 24px 28px 24px;
|
|
7
5
|
max-width: 95vw;
|
|
8
6
|
width: 100%;
|
|
9
7
|
border-radius: 14px;
|
|
10
|
-
border: 1px solid #e1e8f0;
|
|
11
8
|
box-shadow: 0 12px 32px rgba(30, 58, 138, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
|
|
12
9
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
13
10
|
position: relative;
|
|
14
11
|
overflow: visible;
|
|
12
|
+
margin-bottom: 15px;
|
|
15
13
|
|
|
16
14
|
|
|
17
15
|
.card-header {
|
|
@@ -32,6 +30,7 @@
|
|
|
32
30
|
color: #1e293b;
|
|
33
31
|
text-align: left;
|
|
34
32
|
margin-bottom: 8px;
|
|
33
|
+
margin-top: 20px;
|
|
35
34
|
text-transform: uppercase;
|
|
36
35
|
letter-spacing: 0.4px;
|
|
37
36
|
}
|
|
@@ -69,12 +68,13 @@
|
|
|
69
68
|
}
|
|
70
69
|
|
|
71
70
|
.card-label {
|
|
72
|
-
font-size:
|
|
71
|
+
font-size: 16px;
|
|
73
72
|
color: #0f172a;
|
|
74
73
|
margin-bottom: 8px;
|
|
75
74
|
font-weight: 700;
|
|
76
75
|
text-transform: uppercase;
|
|
77
76
|
letter-spacing: 0.5px;
|
|
77
|
+
width: 100%;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
.card-label-error {
|
|
@@ -94,25 +94,7 @@
|
|
|
94
94
|
letter-spacing: 0.3px;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
.card-link {
|
|
98
|
-
display: inline-block;
|
|
99
|
-
text-align: center;
|
|
100
|
-
color: #2563eb;
|
|
101
|
-
margin-top: 16px;
|
|
102
|
-
cursor: pointer;
|
|
103
|
-
font-weight: 700;
|
|
104
|
-
font-size: 13px;
|
|
105
|
-
padding: 8px 16px;
|
|
106
|
-
border-radius: 8px;
|
|
107
|
-
background: rgba(37, 99, 235, 0.08);
|
|
108
|
-
transition: all 0.2s ease;
|
|
109
|
-
text-decoration: none;
|
|
110
97
|
|
|
111
|
-
&:hover {
|
|
112
|
-
background: rgba(37, 99, 235, 0.16);
|
|
113
|
-
transform: translateX(2px);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
98
|
}
|
|
117
99
|
|
|
118
100
|
.validation-error {
|
|
@@ -207,7 +189,7 @@
|
|
|
207
189
|
}
|
|
208
190
|
|
|
209
191
|
.card-label {
|
|
210
|
-
font-size:
|
|
192
|
+
font-size: 16px;
|
|
211
193
|
color: #0f172a;
|
|
212
194
|
margin-bottom: 8px;
|
|
213
195
|
font-weight: 700;
|
|
@@ -232,25 +214,7 @@
|
|
|
232
214
|
letter-spacing: 0.3px;
|
|
233
215
|
}
|
|
234
216
|
|
|
235
|
-
.card-link {
|
|
236
|
-
display: inline-block;
|
|
237
|
-
text-align: left;
|
|
238
|
-
color: #2563eb;
|
|
239
|
-
margin-top: 12px;
|
|
240
|
-
cursor: pointer;
|
|
241
|
-
font-weight: 700;
|
|
242
|
-
font-size: 13px;
|
|
243
|
-
padding: 8px 12px;
|
|
244
|
-
border-radius: 8px;
|
|
245
|
-
background: rgba(37, 99, 235, 0.08);
|
|
246
|
-
transition: all 0.2s ease;
|
|
247
|
-
text-decoration: none;
|
|
248
217
|
|
|
249
|
-
&:hover {
|
|
250
|
-
background: rgba(37, 99, 235, 0.16);
|
|
251
|
-
transform: translateX(2px);
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
218
|
|
|
255
219
|
.card-search-heading {
|
|
256
220
|
margin-right: 0px !important;
|
|
@@ -287,7 +251,39 @@
|
|
|
287
251
|
border: 1px solid #e1e8f0;
|
|
288
252
|
}
|
|
289
253
|
|
|
290
|
-
.
|
|
254
|
+
.card-link{
|
|
255
|
+
height: 40px;
|
|
256
|
+
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
|
|
257
|
+
color: white;
|
|
258
|
+
text-align: center;
|
|
259
|
+
outline: none;
|
|
260
|
+
width: 175px;
|
|
261
|
+
border-radius: 8px;
|
|
262
|
+
border: none;
|
|
263
|
+
font-weight: 700;
|
|
264
|
+
font-size: 13px;
|
|
265
|
+
cursor: pointer;
|
|
266
|
+
transition: all 0.2s ease;
|
|
267
|
+
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
|
|
268
|
+
|
|
269
|
+
&:hover {
|
|
270
|
+
transform: translateY(-2px);
|
|
271
|
+
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32);
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
&:focus {
|
|
275
|
+
outline: none;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
header {
|
|
279
|
+
font-weight: 600;
|
|
280
|
+
font-size: 12px;
|
|
281
|
+
color: white;
|
|
282
|
+
line-height: 40px;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.submit-bar, .bpa-owner-submit-back {
|
|
291
287
|
height: 40px;
|
|
292
288
|
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
|
|
293
289
|
color: white;
|
|
@@ -343,6 +339,56 @@
|
|
|
343
339
|
}
|
|
344
340
|
}
|
|
345
341
|
|
|
342
|
+
.submit-bar-back {
|
|
343
|
+
background: transparent !important;
|
|
344
|
+
color: #2563eb !important;
|
|
345
|
+
border: 1px solid #2563eb !important;
|
|
346
|
+
box-shadow: none !important;
|
|
347
|
+
margin-right: 10px;
|
|
348
|
+
|
|
349
|
+
&:hover {
|
|
350
|
+
background: rgba(37, 99, 235, 0.08) !important;
|
|
351
|
+
transform: translateY(-2px);
|
|
352
|
+
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15) !important;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
/* LinkButton styled as SubmitBar */
|
|
357
|
+
.card-link.submit-bar,
|
|
358
|
+
button.card-link.submit-bar {
|
|
359
|
+
height: 40px !important;
|
|
360
|
+
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
|
|
361
|
+
color: white !important;
|
|
362
|
+
text-align: center !important;
|
|
363
|
+
outline: none !important;
|
|
364
|
+
width: 175px !important;
|
|
365
|
+
border-radius: 8px !important;
|
|
366
|
+
border: none !important;
|
|
367
|
+
font-weight: 700 !important;
|
|
368
|
+
font-size: 13px !important;
|
|
369
|
+
cursor: pointer !important;
|
|
370
|
+
transition: all 0.2s ease !important;
|
|
371
|
+
box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24) !important;
|
|
372
|
+
display: inline-flex !important;
|
|
373
|
+
align-items: center !important;
|
|
374
|
+
justify-content: center !important;
|
|
375
|
+
padding: 0 16px !important;
|
|
376
|
+
margin: 0 !important;
|
|
377
|
+
text-decoration: none !important;
|
|
378
|
+
|
|
379
|
+
&:hover {
|
|
380
|
+
transform: translateY(-2px) !important;
|
|
381
|
+
box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
|
|
382
|
+
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
|
|
383
|
+
color: white !important;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
&:focus {
|
|
387
|
+
outline: none !important;
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
|
|
346
392
|
@media (min-width: 1024px) {
|
|
347
393
|
.submit-bar,
|
|
348
394
|
.submit-bar-disabled {
|
|
@@ -372,9 +418,7 @@
|
|
|
372
418
|
font-size: 16px;
|
|
373
419
|
}
|
|
374
420
|
|
|
375
|
-
|
|
376
|
-
text-align: left;
|
|
377
|
-
}
|
|
421
|
+
|
|
378
422
|
}
|
|
379
423
|
|
|
380
424
|
.employeeCard {
|
|
@@ -431,9 +475,6 @@
|
|
|
431
475
|
font-size: 16px;
|
|
432
476
|
}
|
|
433
477
|
|
|
434
|
-
.card-link {
|
|
435
|
-
text-align: left;
|
|
436
|
-
}
|
|
437
478
|
|
|
438
479
|
.label-field-pair {
|
|
439
480
|
display: flex;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.customBtn {
|
|
2
|
-
@apply bg-white
|
|
2
|
+
@apply bg-white box-border inline-block outline-none px-sm border border-solid border-primary-main;
|
|
3
3
|
margin: 0px 4.65% 0px 0px;
|
|
4
4
|
height: 30px;
|
|
5
5
|
line-height: 30px;
|
|
@@ -27,6 +27,45 @@
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
.notification-wrapper {
|
|
31
|
+
position: relative;
|
|
32
|
+
display: flex;
|
|
33
|
+
align-items: center;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
cursor: pointer;
|
|
36
|
+
padding: 8px;
|
|
37
|
+
border-radius: 50%;
|
|
38
|
+
transition: background-color 0.2s ease;
|
|
39
|
+
|
|
40
|
+
&:hover {
|
|
41
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.notification-count {
|
|
45
|
+
position: absolute;
|
|
46
|
+
top: 0;
|
|
47
|
+
right: 0;
|
|
48
|
+
background-color: #ef4444;
|
|
49
|
+
color: white;
|
|
50
|
+
font-size: 10px;
|
|
51
|
+
font-weight: 600;
|
|
52
|
+
min-width: 16px;
|
|
53
|
+
height: 16px;
|
|
54
|
+
border-radius: 50%;
|
|
55
|
+
display: flex;
|
|
56
|
+
align-items: center;
|
|
57
|
+
justify-content: center;
|
|
58
|
+
padding: 2px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
svg {
|
|
62
|
+
width: 22px;
|
|
63
|
+
height: 22px;
|
|
64
|
+
background: #ffdc00;
|
|
65
|
+
border-radius: 50%;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
30
69
|
.img-circle {
|
|
31
70
|
border-radius: 50%;
|
|
32
71
|
}
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
.employee-select-wrap .select {
|
|
25
25
|
background-color: white;
|
|
26
26
|
border-radius: 5px;
|
|
27
|
-
border-color:1px solid blue;
|
|
27
|
+
border-color: 1px solid blue;
|
|
28
28
|
height: 50px;
|
|
29
29
|
}
|
|
30
30
|
.employee-select-wrap {
|
|
@@ -36,12 +36,11 @@
|
|
|
36
36
|
border-color: rgb(46, 46, 236);
|
|
37
37
|
height: 50px;
|
|
38
38
|
|
|
39
|
-
|
|
40
39
|
input[type="text"] {
|
|
41
40
|
width: calc(100% - 32px);
|
|
42
41
|
background-color: transparent;
|
|
43
|
-
|
|
44
|
-
@apply absolute z-10 w-full h-full outline-none text-
|
|
42
|
+
|
|
43
|
+
@apply absolute z-10 w-full h-full outline-none text-form-field pl-sm;
|
|
45
44
|
}
|
|
46
45
|
|
|
47
46
|
p {
|
|
@@ -70,8 +69,8 @@
|
|
|
70
69
|
input[type="text"] {
|
|
71
70
|
width: calc(100% - 32px);
|
|
72
71
|
background-color: transparent;
|
|
73
|
-
|
|
74
|
-
@apply absolute z-10 w-full h-full outline-none text-
|
|
72
|
+
|
|
73
|
+
@apply absolute z-10 w-full h-full outline-none text-form-field pl-sm;
|
|
75
74
|
}
|
|
76
75
|
|
|
77
76
|
p {
|
|
@@ -97,12 +96,13 @@
|
|
|
97
96
|
}
|
|
98
97
|
|
|
99
98
|
.options-card {
|
|
100
|
-
|
|
99
|
+
right: 0px;
|
|
100
|
+
width: 144px;
|
|
101
101
|
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
|
|
102
102
|
max-height: 250px !important;
|
|
103
103
|
overflow: auto;
|
|
104
104
|
z-index: 1000 !important;
|
|
105
|
-
@apply absolute z-20 mt-xs bg-white
|
|
105
|
+
@apply absolute z-20 mt-xs bg-white;
|
|
106
106
|
|
|
107
107
|
p {
|
|
108
108
|
padding-top: 14px;
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
width: calc(100% - 32px);
|
|
157
157
|
background-color: transparent;
|
|
158
158
|
|
|
159
|
-
@apply absolute z-10 w-full h-full outline-none text-
|
|
159
|
+
@apply absolute z-10 w-full h-full outline-none text-form-field pl-sm;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
p {
|
|
@@ -194,8 +194,8 @@
|
|
|
194
194
|
input[type="text"] {
|
|
195
195
|
width: calc(100% - 32px);
|
|
196
196
|
background-color: transparent;
|
|
197
|
-
|
|
198
|
-
@apply absolute z-10 w-full h-full outline-none text-
|
|
197
|
+
|
|
198
|
+
@apply absolute z-10 w-full h-full outline-none text-form-field pl-sm;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
p {
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
background: #eeeeee;
|
|
38
38
|
border-right: 0;
|
|
39
39
|
padding-right: 5px;
|
|
40
|
+
position: relative;
|
|
41
|
+
z-index: 0 !important;
|
|
40
42
|
}
|
|
41
43
|
.employee-card-input-error {
|
|
42
44
|
@apply mb-lg pl-sm block w-full h-10 outline-none border-2 border-error border-solid bg-white leading-10 text-form-field text-text-primary;
|
|
@@ -117,3 +119,20 @@
|
|
|
117
119
|
box-shadow: 0 0 0 3px rgba(13, 78, 255, 0.03);
|
|
118
120
|
}
|
|
119
121
|
}
|
|
122
|
+
|
|
123
|
+
/* Mobile Number Input Styles */
|
|
124
|
+
.mobile-number-prefix {
|
|
125
|
+
position: absolute;
|
|
126
|
+
left: 12px;
|
|
127
|
+
top: 34%;
|
|
128
|
+
transform: translateY(-50%);
|
|
129
|
+
font-size: 16px;
|
|
130
|
+
font-weight: 500;
|
|
131
|
+
color: #666;
|
|
132
|
+
pointer-events: none;
|
|
133
|
+
z-index: 0 !important;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.mobile-number-input-with-prefix {
|
|
137
|
+
padding-left: 45px !important;
|
|
138
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -134,6 +134,8 @@
|
|
|
134
134
|
@import "./pages/citizen/CitizenLogin.scss";
|
|
135
135
|
@import "./components/NewAccordianCitizen.scss";
|
|
136
136
|
@import "./modules/rentAndLease/index.scss";
|
|
137
|
+
@import "./components/SurveyModal.scss";
|
|
138
|
+
|
|
137
139
|
|
|
138
140
|
@import "./modules/adv/index.scss";
|
|
139
141
|
.display-none {
|
|
@@ -159,10 +159,7 @@
|
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
.bpa-newbuilding-bpa-section {
|
|
162
|
-
|
|
163
|
-
border-radius: 8px;
|
|
164
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
165
|
-
padding-bottom: 50px;
|
|
162
|
+
|
|
166
163
|
}
|
|
167
164
|
.bpa-newbuilding-label-field-pair {
|
|
168
165
|
display: flex;
|
|
@@ -212,116 +209,170 @@
|
|
|
212
209
|
}
|
|
213
210
|
|
|
214
211
|
.bpa-owner-error-message {
|
|
215
|
-
color:
|
|
212
|
+
color: #dc2626;
|
|
216
213
|
font-size: 12px;
|
|
217
|
-
margin-top:
|
|
214
|
+
margin-top: 6px;
|
|
215
|
+
font-weight: 500;
|
|
218
216
|
}
|
|
217
|
+
|
|
219
218
|
.bpa-owner-delete-icon {
|
|
220
219
|
position: relative;
|
|
221
|
-
bottom:
|
|
220
|
+
bottom: 0;
|
|
222
221
|
}
|
|
222
|
+
|
|
223
223
|
.bpa-owner-link-delete-button {
|
|
224
|
-
width:
|
|
224
|
+
width: 40px;
|
|
225
|
+
height: 40px;
|
|
225
226
|
display: inline-flex;
|
|
226
227
|
justify-content: center;
|
|
227
228
|
align-items: center;
|
|
228
|
-
background:
|
|
229
|
+
background: #fee2e2;
|
|
230
|
+
border-radius: 8px;
|
|
229
231
|
float: right;
|
|
232
|
+
margin-top: -10px;
|
|
233
|
+
transition: all 0.2s ease;
|
|
234
|
+
|
|
235
|
+
&:hover {
|
|
236
|
+
background: #fecaca;
|
|
237
|
+
}
|
|
230
238
|
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
padding: 10px;
|
|
235
|
-
padding-top: 20px;
|
|
236
|
-
margin-top: 10px;
|
|
237
|
-
border-color: #f3f3f3;
|
|
238
|
-
background: #fafafa;
|
|
239
|
-
}
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
240
242
|
.bpa-owner-cardlabel-negative-margin {
|
|
241
|
-
margin-bottom:
|
|
243
|
+
margin-bottom: 8px;
|
|
242
244
|
}
|
|
245
|
+
|
|
243
246
|
.bpa-owner-mobile-row {
|
|
244
|
-
margin-top:
|
|
247
|
+
margin-top: 8px;
|
|
248
|
+
margin-bottom: 16px;
|
|
245
249
|
}
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
250
|
+
|
|
251
|
+
.bpa-owner-field-container {
|
|
252
|
+
position: relative;
|
|
253
|
+
width: 100%;
|
|
254
|
+
max-width: 400px;
|
|
255
|
+
|
|
256
|
+
.field-container {
|
|
257
|
+
margin-bottom: 0;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.text-input input {
|
|
261
|
+
padding-right: 44px !important;
|
|
262
|
+
}
|
|
258
263
|
}
|
|
264
|
+
|
|
259
265
|
.bpa-owner-search-icon-container {
|
|
260
|
-
position:
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
266
|
+
position: absolute;
|
|
267
|
+
right: 12px;
|
|
268
|
+
top: 36%;
|
|
269
|
+
transform: translateY(-50%);
|
|
270
|
+
display: flex;
|
|
271
|
+
align-items: center;
|
|
272
|
+
justify-content: center;
|
|
265
273
|
cursor: pointer;
|
|
274
|
+
z-index: 2;
|
|
275
|
+
|
|
276
|
+
svg {
|
|
277
|
+
width: 20px;
|
|
278
|
+
height: 20px;
|
|
279
|
+
fill: #2563eb;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&:hover svg {
|
|
283
|
+
fill: #1e40af;
|
|
284
|
+
}
|
|
266
285
|
}
|
|
286
|
+
|
|
267
287
|
.bpa-owner-cardlabel-margin-top {
|
|
268
|
-
margin-top:
|
|
288
|
+
margin-top: 20px;
|
|
269
289
|
}
|
|
290
|
+
|
|
270
291
|
.bpa-owner-upload-row {
|
|
271
292
|
display: flex;
|
|
272
|
-
gap:
|
|
293
|
+
gap: 16px;
|
|
273
294
|
flex-direction: row;
|
|
295
|
+
align-items: flex-start;
|
|
274
296
|
}
|
|
297
|
+
|
|
275
298
|
@media (max-width: 768px) {
|
|
276
|
-
.upload-row {
|
|
299
|
+
.bpa-owner-upload-row {
|
|
277
300
|
flex-direction: column;
|
|
278
301
|
}
|
|
302
|
+
|
|
303
|
+
.bpa-owner-field-container {
|
|
304
|
+
max-width: 100%;
|
|
305
|
+
}
|
|
279
306
|
}
|
|
307
|
+
|
|
280
308
|
.bpa-owner-input-bg-fa {
|
|
281
309
|
background: #fafafa;
|
|
310
|
+
border-radius: 8px;
|
|
282
311
|
}
|
|
312
|
+
|
|
283
313
|
.bpa-owner-owner-textarea {
|
|
284
314
|
background: #fafafa;
|
|
285
315
|
width: 100%;
|
|
286
316
|
min-height: 80px;
|
|
287
|
-
padding:
|
|
288
|
-
border: 1px solid #
|
|
289
|
-
border-radius:
|
|
317
|
+
padding: 12px;
|
|
318
|
+
border: 1px solid #d1d5db;
|
|
319
|
+
border-radius: 8px;
|
|
290
320
|
resize: vertical;
|
|
321
|
+
font-size: 14px;
|
|
322
|
+
|
|
323
|
+
&:focus {
|
|
324
|
+
outline: none;
|
|
325
|
+
border-color: #2563eb;
|
|
326
|
+
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
|
|
327
|
+
}
|
|
291
328
|
}
|
|
329
|
+
|
|
292
330
|
.bpa-owner-checkbox-top {
|
|
293
|
-
padding-top:
|
|
331
|
+
padding-top: 16px;
|
|
294
332
|
}
|
|
333
|
+
|
|
295
334
|
.bpa-owner-add-owner-row {
|
|
296
335
|
display: flex;
|
|
297
|
-
padding
|
|
298
|
-
color: #ff8c00;
|
|
336
|
+
padding: 16px 0;
|
|
299
337
|
}
|
|
338
|
+
|
|
300
339
|
.bpa-owner-add-owner-button {
|
|
301
|
-
padding
|
|
340
|
+
padding: 10px 20px;
|
|
302
341
|
background: transparent;
|
|
303
|
-
border:
|
|
304
|
-
|
|
342
|
+
border: 2px dashed #2563eb;
|
|
343
|
+
border-radius: 8px;
|
|
344
|
+
color: #2563eb;
|
|
345
|
+
font-weight: 600;
|
|
346
|
+
font-size: 14px;
|
|
347
|
+
cursor: pointer;
|
|
348
|
+
transition: all 0.2s ease;
|
|
349
|
+
|
|
350
|
+
&:hover {
|
|
351
|
+
background: rgba(37, 99, 235, 0.05);
|
|
352
|
+
border-style: solid;
|
|
353
|
+
}
|
|
305
354
|
}
|
|
355
|
+
|
|
306
356
|
.bpa-owner-submit-back {
|
|
307
|
-
|
|
308
|
-
background: transparent;
|
|
309
|
-
color: #2947a3;
|
|
310
|
-
margin-right: 5px;
|
|
357
|
+
margin-right: 12px;
|
|
311
358
|
}
|
|
359
|
+
|
|
312
360
|
.bpa-owner-label-field-pair {
|
|
313
361
|
display: flex;
|
|
314
362
|
justify-content: space-between;
|
|
315
|
-
border-bottom: 1px dashed #
|
|
316
|
-
padding:
|
|
317
|
-
color: #
|
|
363
|
+
border-bottom: 1px dashed #e5e7eb;
|
|
364
|
+
padding: 12px 0;
|
|
365
|
+
color: #374151;
|
|
318
366
|
}
|
|
367
|
+
|
|
319
368
|
.bpa-owner-bold-label {
|
|
320
|
-
font-weight:
|
|
321
|
-
color: #
|
|
369
|
+
font-weight: 600;
|
|
370
|
+
color: #4b5563;
|
|
322
371
|
}
|
|
372
|
+
|
|
323
373
|
.bpa-owner-newbuilding-error-message {
|
|
324
|
-
color:
|
|
325
|
-
margin-top:
|
|
326
|
-
font-size:
|
|
374
|
+
color: #dc2626;
|
|
375
|
+
margin-top: 6px;
|
|
376
|
+
font-size: 12px;
|
|
377
|
+
font-weight: 500;
|
|
327
378
|
}
|