@pmidc/upyog-css 1.2.36-dev.1.25 → 1.2.36-dev.1.26
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 +157 -0
- package/dist/index.min.css +1 -1
- package/package.json +23 -22
- package/src/components/datatable.scss +6 -0
- package/src/modules/adv/index.scss +78 -0
- package/src/modules/rentAndLease/index.scss +50 -0
package/package.json
CHANGED
|
@@ -1,25 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pmidc/upyog-css",
|
|
3
|
-
"version": "1.2.36-dev.1.
|
|
3
|
+
"version": "1.2.36-dev.1.26",
|
|
4
4
|
"license": "MIT",
|
|
5
|
+
"author": "",
|
|
6
|
+
"type": "commonjs",
|
|
5
7
|
"main": "dist/index.css",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
},
|
|
9
|
-
"cssConfig": {
|
|
10
|
-
"prefix": ""
|
|
8
|
+
"directories": {
|
|
9
|
+
"example": "example"
|
|
11
10
|
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/index.min.css",
|
|
13
|
+
"dist/index.css",
|
|
14
|
+
"svg/**/*.svg",
|
|
15
|
+
"img/**/*.png",
|
|
16
|
+
"src/**/*.scss",
|
|
17
|
+
"src/**/*.css"
|
|
18
|
+
],
|
|
12
19
|
"scripts": {
|
|
13
20
|
"start": "gulp build",
|
|
14
21
|
"build:prod": "gulp build",
|
|
15
22
|
"prepublish": "yarn build:prod",
|
|
16
23
|
"deploy": "gulp && cp -R svg example && cp -R img example && gh-pages -d example"
|
|
17
24
|
},
|
|
18
|
-
"browserslist": [
|
|
19
|
-
"> 3%",
|
|
20
|
-
"last 2 versions"
|
|
21
|
-
],
|
|
22
|
-
"style": "./dist/index.css",
|
|
23
25
|
"dependencies": {
|
|
24
26
|
"normalize.css": "8.0.1",
|
|
25
27
|
"postcss-scss": "3.0.5",
|
|
@@ -46,17 +48,16 @@
|
|
|
46
48
|
"postcss-scss": "3.0.5",
|
|
47
49
|
"sass": "1.49.11"
|
|
48
50
|
},
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"dist/index.css",
|
|
52
|
-
"svg/**/*.svg",
|
|
53
|
-
"img/**/*.png",
|
|
54
|
-
"src/**/*.scss",
|
|
55
|
-
"src/**/*.css"
|
|
56
|
-
],
|
|
57
|
-
"directories": {
|
|
58
|
-
"example": "example"
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=10"
|
|
59
53
|
},
|
|
60
|
-
"
|
|
54
|
+
"cssConfig": {
|
|
55
|
+
"prefix": ""
|
|
56
|
+
},
|
|
57
|
+
"browserslist": [
|
|
58
|
+
"> 3%",
|
|
59
|
+
"last 2 versions"
|
|
60
|
+
],
|
|
61
|
+
"style": "./dist/index.css",
|
|
61
62
|
"description": ""
|
|
62
63
|
}
|
|
@@ -923,6 +923,84 @@
|
|
|
923
923
|
justify-content: flex-end;
|
|
924
924
|
}
|
|
925
925
|
|
|
926
|
+
.ads-citizen-consent__modal-overlay {
|
|
927
|
+
position: fixed;
|
|
928
|
+
inset: 0;
|
|
929
|
+
z-index: 10000;
|
|
930
|
+
display: flex;
|
|
931
|
+
align-items: center;
|
|
932
|
+
justify-content: center;
|
|
933
|
+
padding: 24px;
|
|
934
|
+
background: rgba(15, 36, 53, 0.58);
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.ads-citizen-consent__modal-content {
|
|
938
|
+
width: min(860px, 100%);
|
|
939
|
+
max-height: calc(100vh - 48px);
|
|
940
|
+
padding: 28px;
|
|
941
|
+
overflow-y: auto;
|
|
942
|
+
background: #fff;
|
|
943
|
+
border: 0;
|
|
944
|
+
border-radius: 8px;
|
|
945
|
+
box-shadow: 0 18px 48px rgba(15, 36, 53, 0.3);
|
|
946
|
+
outline: none;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.ads-consent-declaration {
|
|
950
|
+
color: #1f2933;
|
|
951
|
+
font-size: 14px;
|
|
952
|
+
line-height: 1.6;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
.ads-consent-declaration__title {
|
|
956
|
+
margin: 0 0 20px;
|
|
957
|
+
color: #003c71;
|
|
958
|
+
font-size: 20px;
|
|
959
|
+
font-weight: 700;
|
|
960
|
+
line-height: 1.3;
|
|
961
|
+
text-align: center;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.ads-consent-declaration__intro {
|
|
965
|
+
margin-bottom: 16px;
|
|
966
|
+
padding: 12px 14px;
|
|
967
|
+
background: #f3f8fb;
|
|
968
|
+
border-left: 4px solid #003c71;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.ads-consent-declaration__paragraph {
|
|
972
|
+
margin: 0;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.ads-consent-declaration__item {
|
|
976
|
+
display: flex;
|
|
977
|
+
gap: 10px;
|
|
978
|
+
margin: 10px 0;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
.ads-consent-declaration__item-number {
|
|
982
|
+
flex: 0 0 22px;
|
|
983
|
+
color: #003c71;
|
|
984
|
+
font-weight: 700;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
@media (max-width: 780px) {
|
|
988
|
+
.ads-citizen-consent__modal-overlay {
|
|
989
|
+
align-items: flex-end;
|
|
990
|
+
padding: 12px;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.ads-citizen-consent__modal-content {
|
|
994
|
+
max-height: calc(100vh - 24px);
|
|
995
|
+
padding: 20px 16px;
|
|
996
|
+
border-radius: 8px 8px 0 0;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.ads-consent-declaration__title {
|
|
1000
|
+
font-size: 17px;
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
|
|
926
1004
|
.ads-components-existing-booking-details--style-1 {
|
|
927
1005
|
margin-left: 16px;
|
|
928
1006
|
margin-top: 16px;
|
|
@@ -19,6 +19,56 @@
|
|
|
19
19
|
margin-top: -18px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
.ral-last-paid-upto-label {
|
|
23
|
+
position: relative;
|
|
24
|
+
margin: 18px 0 10px;
|
|
25
|
+
padding: 12px 14px 12px 42px;
|
|
26
|
+
color: #163d63;
|
|
27
|
+
font-size: 13px;
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
line-height: 1.45;
|
|
30
|
+
background: linear-gradient(90deg, #eaf4fb 0%, #f7fbfe 100%);
|
|
31
|
+
border: 1px solid #b7d8ed;
|
|
32
|
+
border-left: 4px solid #fa001d;
|
|
33
|
+
border-radius: 4px;
|
|
34
|
+
box-shadow: 0 2px 6px rgba(13, 110, 168, 0.08);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.ral-last-paid-upto-hidden {
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.ral-arrear-details-hidden {
|
|
42
|
+
display: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.ral-last-paid-upto-label::before {
|
|
46
|
+
content: "i";
|
|
47
|
+
position: absolute;
|
|
48
|
+
top: 50%;
|
|
49
|
+
left: 13px;
|
|
50
|
+
display: flex;
|
|
51
|
+
width: 18px;
|
|
52
|
+
height: 18px;
|
|
53
|
+
align-items: center;
|
|
54
|
+
justify-content: center;
|
|
55
|
+
color: #fff;
|
|
56
|
+
font-family: Georgia, serif;
|
|
57
|
+
font-size: 13px;
|
|
58
|
+
font-weight: 700;
|
|
59
|
+
line-height: 1;
|
|
60
|
+
background: #0d6ea8;
|
|
61
|
+
border-radius: 50%;
|
|
62
|
+
transform: translateY(-50%);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@media (max-width: 780px) {
|
|
66
|
+
.ral-last-paid-upto-label {
|
|
67
|
+
margin-top: 14px;
|
|
68
|
+
padding: 10px 12px 10px 38px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
22
72
|
/* Desktop view - margin-left 50% */
|
|
23
73
|
@media (min-width: 768px) {
|
|
24
74
|
.ral-error-label {
|