@pmidc/upyog-css 1.2.50 → 1.2.51
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 +70 -0
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/modules/rentAndLease/index.scss +50 -0
package/dist/index.css
CHANGED
|
@@ -214,6 +214,22 @@ input::-ms-input-placeholder, .checkbox-wrap .input-emp::-ms-input-placeholder,
|
|
|
214
214
|
color: #a0aec0;
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
+
input::-webkit-input-placeholder, .checkbox-wrap .input-emp::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
|
|
218
|
+
color: #a0aec0;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
input::-moz-placeholder, .checkbox-wrap .input-emp::-moz-placeholder, textarea::-moz-placeholder {
|
|
222
|
+
color: #a0aec0;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
input:-ms-input-placeholder, .checkbox-wrap .input-emp:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
226
|
+
color: #a0aec0;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
input::-ms-input-placeholder, .checkbox-wrap .input-emp::-ms-input-placeholder, textarea::-ms-input-placeholder {
|
|
230
|
+
color: #a0aec0;
|
|
231
|
+
}
|
|
232
|
+
|
|
217
233
|
input::placeholder, .checkbox-wrap .input-emp::placeholder, textarea::placeholder {
|
|
218
234
|
color: #a0aec0;
|
|
219
235
|
}
|
|
@@ -21381,6 +21397,60 @@ body {
|
|
|
21381
21397
|
margin-top: -18px;
|
|
21382
21398
|
}
|
|
21383
21399
|
|
|
21400
|
+
.ral-last-paid-upto-label {
|
|
21401
|
+
position: relative;
|
|
21402
|
+
margin: 18px 0 10px;
|
|
21403
|
+
padding: 12px 14px 12px 42px;
|
|
21404
|
+
color: #163d63;
|
|
21405
|
+
font-size: 13px;
|
|
21406
|
+
font-weight: 600;
|
|
21407
|
+
line-height: 1.45;
|
|
21408
|
+
background: -webkit-gradient(linear, left top, right top, from(#eaf4fb), to(#f7fbfe));
|
|
21409
|
+
background: linear-gradient(90deg, #eaf4fb, #f7fbfe);
|
|
21410
|
+
border: 1px solid #b7d8ed;
|
|
21411
|
+
border-left: 4px solid #fa001d;
|
|
21412
|
+
border-radius: 4px;
|
|
21413
|
+
-webkit-box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
21414
|
+
box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
21415
|
+
}
|
|
21416
|
+
|
|
21417
|
+
.ral-arrear-details-hidden, .ral-last-paid-upto-hidden {
|
|
21418
|
+
display: none;
|
|
21419
|
+
}
|
|
21420
|
+
|
|
21421
|
+
.ral-last-paid-upto-label:before {
|
|
21422
|
+
content: "i";
|
|
21423
|
+
position: absolute;
|
|
21424
|
+
top: 50%;
|
|
21425
|
+
left: 13px;
|
|
21426
|
+
display: -webkit-box;
|
|
21427
|
+
display: -ms-flexbox;
|
|
21428
|
+
display: flex;
|
|
21429
|
+
width: 18px;
|
|
21430
|
+
height: 18px;
|
|
21431
|
+
-webkit-box-align: center;
|
|
21432
|
+
-ms-flex-align: center;
|
|
21433
|
+
align-items: center;
|
|
21434
|
+
-webkit-box-pack: center;
|
|
21435
|
+
-ms-flex-pack: center;
|
|
21436
|
+
justify-content: center;
|
|
21437
|
+
color: #fff;
|
|
21438
|
+
font-family: Georgia, serif;
|
|
21439
|
+
font-size: 13px;
|
|
21440
|
+
font-weight: 700;
|
|
21441
|
+
line-height: 1;
|
|
21442
|
+
background: #0d6ea8;
|
|
21443
|
+
border-radius: 50%;
|
|
21444
|
+
-webkit-transform: translateY(-50%);
|
|
21445
|
+
transform: translateY(-50%);
|
|
21446
|
+
}
|
|
21447
|
+
|
|
21448
|
+
@media (max-width: 780px) {
|
|
21449
|
+
.ral-last-paid-upto-label {
|
|
21450
|
+
margin-top: 14px;
|
|
21451
|
+
padding: 10px 12px 10px 38px;
|
|
21452
|
+
}
|
|
21453
|
+
}
|
|
21384
21454
|
@media (min-width: 768px) {
|
|
21385
21455
|
.ral-error-label {
|
|
21386
21456
|
margin-left: 50%;
|