@pmidc/upyog-css 1.2.36-dev.1.15 → 1.2.36-dev.1.16
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 +8890 -14313
- package/dist/index.min.css +1 -1
- package/package.json +3 -2
- package/src/components/CardBasedOptions.scss +31 -33
- package/src/components/body.scss +3 -3
- package/src/components/buttons.scss +8 -8
- package/src/components/filters.scss +2 -283
- package/src/components/table.scss +46 -513
- package/src/index.scss +4 -2
- package/src/modules/BPA/index.scss +6 -0
- package/src/pages/citizen/HomePageWrapper.scss +17 -22
- package/src/pages/employee/index.scss +21 -62
- package/src/pages/employee/login.scss +1 -1
- package/src/components/newInbox.scss +0 -367
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pmidc/upyog-css",
|
|
3
|
-
"version": "1.2.36-dev.1.
|
|
3
|
+
"version": "1.2.36-dev.1.16",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.css",
|
|
6
6
|
"engines": {
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
],
|
|
22
22
|
"style": "./dist/index.css",
|
|
23
23
|
"dependencies": {
|
|
24
|
+
"node-sass": "4.14.1",
|
|
24
25
|
"normalize.css": "8.0.1",
|
|
25
26
|
"postcss-scss": "3.0.5",
|
|
26
27
|
"tailwindcss": "^1.9.6",
|
|
@@ -36,7 +37,7 @@
|
|
|
36
37
|
"gulp-livereload": "^4.0.2",
|
|
37
38
|
"gulp-postcss": "9.0.1",
|
|
38
39
|
"gulp-rename": "^2.0.0",
|
|
39
|
-
"gulp-sass": "^
|
|
40
|
+
"gulp-sass": "^4.1.1",
|
|
40
41
|
"postcss": "8.4.12",
|
|
41
42
|
"postcss-cli": "8.3.1",
|
|
42
43
|
"postcss-header": "2.0.0",
|
|
@@ -113,34 +113,34 @@
|
|
|
113
113
|
display: flex;
|
|
114
114
|
justify-content: space-between;
|
|
115
115
|
align-items: center;
|
|
116
|
-
margin-bottom:
|
|
117
|
-
padding-bottom:
|
|
118
|
-
border-bottom: 2px solid #
|
|
116
|
+
margin-bottom: 24px;
|
|
117
|
+
padding-bottom: 16px;
|
|
118
|
+
border-bottom: 2px solid #3B82F6;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
.new-card-header-title {
|
|
122
|
-
font-size:
|
|
122
|
+
font-size: 28px;
|
|
123
123
|
font-weight: 700;
|
|
124
|
-
color: #
|
|
124
|
+
color: #111827;
|
|
125
125
|
margin: 0;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
.new-card-view-button {
|
|
129
129
|
background: transparent;
|
|
130
130
|
border: none;
|
|
131
|
-
color: #
|
|
132
|
-
font-size:
|
|
131
|
+
color: #3B82F6;
|
|
132
|
+
font-size: 16px;
|
|
133
133
|
font-weight: 600;
|
|
134
134
|
cursor: pointer;
|
|
135
135
|
display: flex;
|
|
136
136
|
align-items: center;
|
|
137
137
|
gap: 4px;
|
|
138
|
-
padding:
|
|
138
|
+
padding: 8px 16px;
|
|
139
139
|
border-radius: 8px;
|
|
140
140
|
transition: background 0.2s ease;
|
|
141
141
|
}
|
|
142
142
|
.new-card-view-button:hover {
|
|
143
|
-
background: #
|
|
143
|
+
background: #EFF6FF;
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
/* Cards grid */
|
|
@@ -156,54 +156,53 @@
|
|
|
156
156
|
|
|
157
157
|
/* Individual option card */
|
|
158
158
|
.new-card-option {
|
|
159
|
-
border-radius:
|
|
160
|
-
padding:
|
|
159
|
+
border-radius: 12px;
|
|
160
|
+
padding: 24px;
|
|
161
161
|
margin: 8px;
|
|
162
|
-
min-width:
|
|
162
|
+
min-width: 220px;
|
|
163
163
|
flex: 1 1 calc(25% - 16px);
|
|
164
164
|
max-width: calc(25% - 16px);
|
|
165
165
|
cursor: pointer;
|
|
166
|
-
transition: all 0.
|
|
167
|
-
border:
|
|
168
|
-
box-shadow: 0 1px
|
|
166
|
+
transition: all 0.2s ease;
|
|
167
|
+
border: 1px solid #E5E7EB;
|
|
168
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
|
|
169
169
|
transform: translateY(0);
|
|
170
170
|
box-sizing: border-box;
|
|
171
|
-
background: #ffffff;
|
|
172
171
|
}
|
|
173
172
|
.new-card-option:hover {
|
|
173
|
+
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
|
174
174
|
transform: translateY(-4px);
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
-
/* Icon wrapper
|
|
177
|
+
/* Icon wrapper */
|
|
178
178
|
.new-card-icon {
|
|
179
|
-
width:
|
|
180
|
-
height:
|
|
181
|
-
border-radius:
|
|
179
|
+
width: 56px;
|
|
180
|
+
height: 56px;
|
|
181
|
+
border-radius: 50%;
|
|
182
182
|
display: flex;
|
|
183
183
|
align-items: center;
|
|
184
184
|
justify-content: center;
|
|
185
|
-
margin-bottom:
|
|
185
|
+
margin-bottom: 16px;
|
|
186
186
|
color: #fff;
|
|
187
|
-
|
|
187
|
+
font-size: 24px;
|
|
188
188
|
}
|
|
189
189
|
.new-card-icon svg {
|
|
190
|
-
width:
|
|
191
|
-
height:
|
|
190
|
+
width: 28px;
|
|
191
|
+
height: 28px;
|
|
192
192
|
fill: #fff;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
/* Service name and access row */
|
|
196
196
|
.new-card-service-name {
|
|
197
|
-
font-size:
|
|
197
|
+
font-size: 18px;
|
|
198
198
|
font-weight: 600;
|
|
199
|
-
color: #
|
|
200
|
-
margin-bottom:
|
|
201
|
-
line-height: 1.4;
|
|
199
|
+
color: #111827;
|
|
200
|
+
margin-bottom: 8px;
|
|
202
201
|
}
|
|
203
202
|
|
|
204
203
|
.new-card-access {
|
|
205
|
-
font-size:
|
|
206
|
-
color: #
|
|
204
|
+
font-size: 14px;
|
|
205
|
+
color: #6B7280;
|
|
207
206
|
display: flex;
|
|
208
207
|
align-items: center;
|
|
209
208
|
justify-content: space-between;
|
|
@@ -211,9 +210,8 @@
|
|
|
211
210
|
|
|
212
211
|
/* Arrow */
|
|
213
212
|
.new-card-arrow {
|
|
214
|
-
color: #
|
|
215
|
-
|
|
216
|
-
align-items: center;
|
|
213
|
+
color: #3B82F6;
|
|
214
|
+
font-size: 18px;
|
|
217
215
|
}
|
|
218
216
|
|
|
219
217
|
/* Per-index background classes (backgrounds for the card root) */
|
package/src/components/body.scss
CHANGED
|
@@ -3,7 +3,7 @@ body {
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
:root {
|
|
6
|
-
--digit-font-family: "
|
|
6
|
+
--digit-font-family: "Source Sans Pro", sans-serif;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
body {
|
|
@@ -199,7 +199,7 @@ body {
|
|
|
199
199
|
font-size: 1.5rem;
|
|
200
200
|
border-bottom: 2px solid #ccc;
|
|
201
201
|
padding-bottom: 0.3rem;
|
|
202
|
-
color: #
|
|
202
|
+
color: #2e4a66;
|
|
203
203
|
margin-top: 2rem;
|
|
204
204
|
margin-bottom: 1rem;
|
|
205
205
|
}
|
|
@@ -270,7 +270,7 @@ body {
|
|
|
270
270
|
|
|
271
271
|
.bpa-stepper-form-container {
|
|
272
272
|
padding: 16px;
|
|
273
|
-
background: #
|
|
273
|
+
background: #f8fafc;
|
|
274
274
|
min-height: calc(100vh - 120px);
|
|
275
275
|
}
|
|
276
276
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
border: none !important;
|
|
4
4
|
border-radius: 0.375rem;
|
|
5
5
|
padding: 0.5rem 1rem;
|
|
6
|
-
font-family:
|
|
6
|
+
font-family: "Noto Sans", sans-serif;
|
|
7
7
|
font-weight: 500;
|
|
8
8
|
font-size: 0.875rem;
|
|
9
9
|
line-height: 1.25rem;
|
|
@@ -42,31 +42,31 @@
|
|
|
42
42
|
|
|
43
43
|
.selector-button-primary {
|
|
44
44
|
@extend .selector-button;
|
|
45
|
-
background-color: #
|
|
45
|
+
background-color: #2947a3 !important;
|
|
46
46
|
width: 100%;
|
|
47
47
|
|
|
48
48
|
&:hover {
|
|
49
|
-
background-color: #
|
|
49
|
+
background-color: #1e3a8a !important;
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
.selector-button-secondary {
|
|
54
54
|
@extend .selector-button;
|
|
55
55
|
background-color: #ffffff !important;
|
|
56
|
-
color: #
|
|
56
|
+
color: #2947a3 !important;
|
|
57
57
|
|
|
58
58
|
h2 {
|
|
59
|
-
color: #
|
|
59
|
+
color: #2947a3 !important;
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.selector-button-border {
|
|
64
|
-
background-color: #
|
|
64
|
+
background-color: #2947a3 !important;
|
|
65
65
|
color: #ffffff !important;
|
|
66
66
|
border: none !important;
|
|
67
67
|
border-radius: 0.375rem;
|
|
68
68
|
padding: 0.5rem 1rem;
|
|
69
|
-
font-family:
|
|
69
|
+
font-family: "Noto Sans", sans-serif;
|
|
70
70
|
font-weight: 500;
|
|
71
71
|
font-size: 0.875rem;
|
|
72
72
|
line-height: 1.25rem;
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
|
|
87
87
|
|
|
88
88
|
&:hover {
|
|
89
|
-
background-color: #
|
|
89
|
+
background-color: #1e3a8a !important;
|
|
90
90
|
opacity: 0.9;
|
|
91
91
|
}
|
|
92
92
|
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
padding: 6px 10px;
|
|
31
31
|
display: block;
|
|
32
32
|
@apply border border-solid border-input-border;
|
|
33
|
-
&:hover
|
|
33
|
+
&:hover{
|
|
34
34
|
@apply border-2 border-solid border-primary-main;
|
|
35
35
|
}
|
|
36
36
|
}
|
|
@@ -95,285 +95,4 @@
|
|
|
95
95
|
.rdrDefinedRangesWrapper {
|
|
96
96
|
display: none;
|
|
97
97
|
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.ndc-new-inbox-filter-card {
|
|
101
|
-
margin: 0;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.ndc-new-filter-status-wrapper {
|
|
105
|
-
display: flex;
|
|
106
|
-
flex-direction: column;
|
|
107
|
-
gap: 8px;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.ndc-new-filter-card-grid {
|
|
111
|
-
display: grid;
|
|
112
|
-
grid-template-columns: repeat(6, 1fr);
|
|
113
|
-
gap: 14px;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.ndc-new-filter-option-card {
|
|
117
|
-
background: #f8fafc;
|
|
118
|
-
border: 1px solid #e5e7eb;
|
|
119
|
-
border-radius: 12px;
|
|
120
|
-
padding: 16px;
|
|
121
|
-
min-height: 88px;
|
|
122
|
-
text-align: left;
|
|
123
|
-
cursor: pointer;
|
|
124
|
-
transition: all 0.2s ease;
|
|
125
|
-
position: relative;
|
|
126
|
-
overflow: hidden;
|
|
127
|
-
font-family: inherit;
|
|
128
|
-
font-size: 14px;
|
|
129
|
-
|
|
130
|
-
&.active {
|
|
131
|
-
background: #e0f2fe;
|
|
132
|
-
border-color: #38bdf8;
|
|
133
|
-
box-shadow: 0 4px 12px rgba(2, 132, 199, 0.18);
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
&.primary {
|
|
137
|
-
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
|
|
138
|
-
color: white;
|
|
139
|
-
|
|
140
|
-
&.active {
|
|
141
|
-
background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
|
|
142
|
-
box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
|
|
143
|
-
transform: translateY(-1px);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
&.success {
|
|
148
|
-
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
|
|
149
|
-
color: white;
|
|
150
|
-
|
|
151
|
-
&.active {
|
|
152
|
-
background: linear-gradient(135deg, #059669 0%, #047857 100%);
|
|
153
|
-
box-shadow: 0 10px 24px rgba(16, 185, 129, 0.25);
|
|
154
|
-
transform: translateY(-1px);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
&.warning {
|
|
159
|
-
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
|
|
160
|
-
color: white;
|
|
161
|
-
|
|
162
|
-
&.active {
|
|
163
|
-
background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
|
|
164
|
-
box-shadow: 0 10px 24px rgba(245, 158, 11, 0.25);
|
|
165
|
-
transform: translateY(-1px);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
&.danger {
|
|
170
|
-
background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
|
|
171
|
-
color: white;
|
|
172
|
-
|
|
173
|
-
&.active {
|
|
174
|
-
background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
|
|
175
|
-
box-shadow: 0 10px 24px rgba(239, 68, 68, 0.25);
|
|
176
|
-
transform: translateY(-1px);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
&.info {
|
|
181
|
-
background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
|
|
182
|
-
color: white;
|
|
183
|
-
|
|
184
|
-
&.active {
|
|
185
|
-
background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
|
|
186
|
-
box-shadow: 0 10px 24px rgba(6, 182, 212, 0.25);
|
|
187
|
-
transform: translateY(-1px);
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
&.indigo {
|
|
192
|
-
background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
|
|
193
|
-
color: white;
|
|
194
|
-
|
|
195
|
-
&.active {
|
|
196
|
-
background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
|
|
197
|
-
box-shadow: 0 10px 24px rgba(99, 102, 241, 0.25);
|
|
198
|
-
transform: translateY(-1px);
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
&.teal {
|
|
203
|
-
background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
|
|
204
|
-
color: white;
|
|
205
|
-
|
|
206
|
-
&.active {
|
|
207
|
-
background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
|
|
208
|
-
box-shadow: 0 10px 24px rgba(20, 184, 166, 0.25);
|
|
209
|
-
transform: translateY(-1px);
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
&.pink {
|
|
214
|
-
background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
|
|
215
|
-
color: white;
|
|
216
|
-
|
|
217
|
-
&.active {
|
|
218
|
-
background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
|
|
219
|
-
box-shadow: 0 10px 24px rgba(219, 39, 119, 0.25);
|
|
220
|
-
transform: translateY(-1px);
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
&.amber {
|
|
225
|
-
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
|
|
226
|
-
color: white;
|
|
227
|
-
|
|
228
|
-
&.active {
|
|
229
|
-
background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
|
|
230
|
-
box-shadow: 0 10px 24px rgba(217, 119, 6, 0.25);
|
|
231
|
-
transform: translateY(-1px);
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
&.slate {
|
|
236
|
-
background: linear-gradient(135deg, #64748b 0%, #475569 100%);
|
|
237
|
-
color: white;
|
|
238
|
-
|
|
239
|
-
&.active {
|
|
240
|
-
background: linear-gradient(135deg, #475569 0%, #334155 100%);
|
|
241
|
-
box-shadow: 0 10px 24px rgba(71, 85, 105, 0.25);
|
|
242
|
-
transform: translateY(-1px);
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.ndc-new-filter-status-card {
|
|
248
|
-
border: 1px solid #e5e7eb;
|
|
249
|
-
border-radius: 12px;
|
|
250
|
-
padding: 16px;
|
|
251
|
-
min-height: 88px;
|
|
252
|
-
text-align: left;
|
|
253
|
-
cursor: pointer;
|
|
254
|
-
transition: all 0.2s ease;
|
|
255
|
-
position: relative;
|
|
256
|
-
overflow: hidden;
|
|
257
|
-
font-family: inherit;
|
|
258
|
-
font-size: 14px;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.ndc-new-filter-status-title,
|
|
262
|
-
.ndc-new-filter-option-title {
|
|
263
|
-
font-weight: 700;
|
|
264
|
-
font-size: 14px;
|
|
265
|
-
color: #f9f9f9;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.ndc-new-filter-status-count {
|
|
269
|
-
font-size: 13px;
|
|
270
|
-
font-weight: 600;
|
|
271
|
-
margin-top: 8px;
|
|
272
|
-
color: white;
|
|
273
|
-
background: rgba(255, 255, 255, 0.25);
|
|
274
|
-
padding: 4px 10px;
|
|
275
|
-
border-radius: 12px;
|
|
276
|
-
display: inline-block;
|
|
277
|
-
min-width: 30px;
|
|
278
|
-
text-align: center;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.ndc-new-filter-option-subtitle {
|
|
282
|
-
font-size: 12px;
|
|
283
|
-
margin-top: 6px;
|
|
284
|
-
color: white;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.ndc-new-filter-card-check {
|
|
288
|
-
position: absolute;
|
|
289
|
-
top: 8px;
|
|
290
|
-
right: 8px;
|
|
291
|
-
width: 20px;
|
|
292
|
-
height: 20px;
|
|
293
|
-
border-radius: 50%;
|
|
294
|
-
background: #2563eb;
|
|
295
|
-
color: white;
|
|
296
|
-
display: flex;
|
|
297
|
-
align-items: center;
|
|
298
|
-
justify-content: center;
|
|
299
|
-
font-size: 12px;
|
|
300
|
-
font-weight: 700;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.ndc-new-filter-card-icon {
|
|
304
|
-
position: absolute;
|
|
305
|
-
bottom: 8px;
|
|
306
|
-
right: 8px;
|
|
307
|
-
font-size: 14px;
|
|
308
|
-
color: #f9fafc;
|
|
309
|
-
opacity: 0.5;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.ndc-new-filter-show-more {
|
|
313
|
-
margin-top: 12px;
|
|
314
|
-
cursor: pointer;
|
|
315
|
-
font-weight: 600;
|
|
316
|
-
font-size: 12px;
|
|
317
|
-
color: #2563eb;
|
|
318
|
-
display: inline-flex;
|
|
319
|
-
align-items: center;
|
|
320
|
-
gap: 6px;
|
|
321
|
-
transition: all 0.2s ease;
|
|
322
|
-
background: transparent;
|
|
323
|
-
border: none;
|
|
324
|
-
padding: 0;
|
|
325
|
-
font-family: inherit;
|
|
326
|
-
|
|
327
|
-
&:hover {
|
|
328
|
-
background: #eff6ff;
|
|
329
|
-
border-color: #bfdbfe;
|
|
330
|
-
}
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.ndc-new-filter-show-more-icon {
|
|
334
|
-
width: 28px;
|
|
335
|
-
height: 28px;
|
|
336
|
-
border-radius: 999px;
|
|
337
|
-
display: inline-flex;
|
|
338
|
-
align-items: center;
|
|
339
|
-
justify-content: center;
|
|
340
|
-
font-size: 12px;
|
|
341
|
-
color: #457fff;
|
|
342
|
-
background: #eff6ff;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
@media (max-width: 1400px) {
|
|
346
|
-
.ndc-new-filter-card-grid,
|
|
347
|
-
.ndc-new-filter-status-grid {
|
|
348
|
-
grid-template-columns: repeat(4, minmax(140px, 1fr));
|
|
349
|
-
}
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
@media (max-width: 1100px) {
|
|
353
|
-
.ndc-new-filter-card-grid,
|
|
354
|
-
.ndc-new-filter-status-grid {
|
|
355
|
-
grid-template-columns: repeat(3, minmax(120px, 1fr));
|
|
356
|
-
}
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
@media (max-width: 768px) {
|
|
360
|
-
.ndc-new-filter-card-grid,
|
|
361
|
-
.ndc-new-filter-status-grid {
|
|
362
|
-
grid-template-columns: repeat(2, 1fr);
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
.ndc-new-filter-option-card,
|
|
366
|
-
.ndc-new-filter-status-card {
|
|
367
|
-
min-height: 72px;
|
|
368
|
-
padding: 12px;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.ndc-new-filter-option-title,
|
|
372
|
-
.ndc-new-filter-status-title {
|
|
373
|
-
font-size: 12px;
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
.ndc-new-filter-status-count {
|
|
377
|
-
font-size: 11px;
|
|
378
|
-
}
|
|
379
|
-
}
|
|
98
|
+
}
|