@pmidc/upyog-css 1.2.51 → 1.2.52

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.
@@ -0,0 +1,233 @@
1
+ .ndc-style-04dd2b26c2 {
2
+ color:red;
3
+ padding:1rem;
4
+ }
5
+
6
+ .ndc-style-0a43e56ae2 {
7
+ color:white;
8
+ }
9
+
10
+ .ndc-style-0ddf068bfb {
11
+ overflow-x:auto;
12
+ }
13
+
14
+ .ndc-style-2a1b75c911 {
15
+ display:block;
16
+ }
17
+
18
+ .ndc-style-30e741d98e {
19
+ width:auto;
20
+ }
21
+
22
+ .ndc-style-3f681624b1 {
23
+ color:white;
24
+ font-size:13px;
25
+ }
26
+
27
+ .ndc-style-49fcd855ce {
28
+ margin-top:24px;
29
+ }
30
+
31
+ .ndc-style-56838cf109 {
32
+ display:flex;
33
+ justify-content:flex-end;
34
+ align-items:center;
35
+ padding:16px;
36
+ }
37
+
38
+ .ndc-style-59bdf7cb33 {
39
+ padding:10px;
40
+ }
41
+
42
+ .ndc-style-706912a43b {
43
+ color:white;
44
+ font-size: 12px;
45
+ }
46
+
47
+ .ndc-style-7b6669c0c3 {
48
+ width:100%;
49
+ border-collapse:collapse;
50
+ font-size:14px;
51
+ margin-top:1rem;
52
+ }
53
+
54
+ .ndc-style-87c136dfd0 {
55
+ margin-bottom:16px;
56
+ }
57
+
58
+ .ndc-style-88705a2c59 {
59
+ width:100%;
60
+ padding-right:25px;
61
+ padding-left:25px;
62
+ }
63
+
64
+ .ndc-style-91a87015f4 {
65
+ text-align:center;
66
+ }
67
+
68
+ .ndc-style-95fd837ece {
69
+ display:flex;
70
+ align-items:center;
71
+ gap:12px;
72
+ }
73
+
74
+ .ndc-style-961753662d {
75
+ background-color:#f0f0f0;
76
+ }
77
+
78
+ .ndc-style-9619a2518f {
79
+ margin-top:40px;
80
+ margin-bottom:20px;
81
+ }
82
+
83
+ .ndc-style-9cdf81d40c {
84
+ color:green;
85
+ }
86
+
87
+ .ndc-style-a26bda7d11 {
88
+ margin-top:20px;
89
+ }
90
+
91
+ .ndc-style-a828909e66 {
92
+ max-width:200px;
93
+ }
94
+
95
+ .ndc-style-c2529bfa42 {
96
+ display:flex;
97
+ flex-direction:column;
98
+ gap:8px;
99
+ width:100%;
100
+ }
101
+
102
+ .ndc-style-c86bca9ccc {
103
+ background-color:#efefef;
104
+ font-weight:bold;
105
+ }
106
+
107
+ .ndc-style-c8be6c92ec {
108
+ color: green;
109
+ font-size:14px;
110
+ padding-bottom:10px;
111
+ }
112
+
113
+ .ndc-style-cc1363702b {
114
+ color:white;
115
+ font-size:12px;
116
+ }
117
+
118
+ .ndc-style-d9f149756a {
119
+ margin-top:40px;
120
+ }
121
+
122
+ .ndc-style-ec82c42339 {
123
+ cursor:pointer;
124
+ margin-left:20px;
125
+ }
126
+
127
+ .ndc-style-f320e198cb {
128
+ display:flex;
129
+ flex-direction:row;
130
+ align-items:baseline;
131
+ gap:16px;
132
+ }
133
+
134
+ .ndc-style-f4acddf10b {
135
+ background-color:#f9f9f9;
136
+ }
137
+
138
+ .ndc-loader {
139
+ display: flex;
140
+ position: relative;
141
+ align-items: center;
142
+ justify-content: center;
143
+ width: 100%;
144
+ min-height: 100px;
145
+ }
146
+
147
+ .ndc-loader--page {
148
+ position: fixed;
149
+ inset: 0;
150
+ width: 100vw;
151
+ height: 100vh;
152
+ background: rgba(255, 255, 255, 0.6);
153
+ backdrop-filter: blur(4px);
154
+ z-index: 9999;
155
+ }
156
+
157
+ .ndc-loader__spinner {
158
+ width: 64px;
159
+ height: 64px;
160
+ border: 8px solid #1976d2;
161
+ border-top-color: transparent;
162
+ border-radius: 50%;
163
+ animation: ndc-loader-spin 1.2s linear infinite;
164
+ }
165
+
166
+ @keyframes ndc-loader-spin {
167
+ from { transform: rotate(0deg); }
168
+ to { transform: rotate(360deg); }
169
+ }
170
+
171
+ .ndc-property-search__label--water {
172
+ font-weight: 700;
173
+ }
174
+
175
+ .ndc-breadcrumb--offset {
176
+ margin-left: 10px;
177
+ }
178
+
179
+ .ndc-pagination__button {
180
+ cursor: pointer;
181
+ }
182
+
183
+ .ndc-pagination__button--disabled {
184
+ cursor: not-allowed;
185
+ }
186
+
187
+ .ndc-due-amount--overdue {
188
+ padding-top: 8px;
189
+ padding-left: 10px;
190
+ color: white;
191
+ background: red;
192
+ }
193
+
194
+ .ndc-due-amount__row--overdue {
195
+ background: red;
196
+ color: white;
197
+ }
198
+
199
+ .ndc-due-amount__row--overdue h2,
200
+ .ndc-due-amount__row--overdue .value {
201
+ color: inherit;
202
+ }
203
+
204
+ .ndc-demand-table__cell {
205
+ padding: 6px 8px;
206
+ border: 1px solid #ddd;
207
+ }
208
+
209
+ .ndc-demand-table__cell--left {
210
+ text-align: left;
211
+ }
212
+
213
+ .ndc-demand-table__cell--right {
214
+ text-align: right;
215
+ }
216
+
217
+ .ndc-demand-table__cell--center {
218
+ text-align: center;
219
+ }
220
+
221
+ .popup-module.ndc-pay-ws-bill-modal {
222
+ width: 90%;
223
+ margin-top: 5px;
224
+ }
225
+
226
+ .ndc-document-upload h2 {
227
+ width: 100%;
228
+ }
229
+
230
+ .ndc-response-banner header {
231
+ font-size: 32px;
232
+ word-break: break-word;
233
+ }
@@ -0,0 +1,301 @@
1
+ .ptr-style-0466783d98 {
2
+ width:100%;
3
+ }
4
+
5
+ .ptr-style-06a8677398 {
6
+ margin-right:auto;
7
+ max-width:960px;
8
+ }
9
+
10
+ .ptr-style-0afc60c4eb {
11
+ text-align:start;
12
+ }
13
+
14
+ .ptr-style-0e1a6d017b {
15
+ display:flex;
16
+ align-items:center;
17
+ }
18
+
19
+ .ptr-style-1f3c50d02a {
20
+ font-weight:normal;
21
+ }
22
+
23
+ .ptr-style-2a1b75c911 {
24
+ display:block;
25
+ }
26
+
27
+ .ptr-style-2b41b4f0a3 {
28
+ display:flex;
29
+ justify-content:flex-end;
30
+ align-items:baseline;
31
+ }
32
+
33
+ .ptr-style-2fb62148d1 {
34
+ display:flex;
35
+ flex-wrap:wrap;
36
+ }
37
+
38
+ .ptr-style-3647f40150 {
39
+ position:relative;
40
+ max-width:540px;
41
+ cursor:pointer;
42
+ }
43
+
44
+ .ptr-style-41d7d7e25b {
45
+ padding:0;
46
+ }
47
+
48
+ .ptr-style-49fcd855ce {
49
+ margin-top:24px;
50
+ }
51
+
52
+ .ptr-style-4af588be19 {
53
+ border:1px solid #e0e0e0;
54
+ padding:6px;
55
+ }
56
+
57
+ .ptr-style-59bdf7cb33 {
58
+ padding:10px;
59
+ }
60
+
61
+ .ptr-style-6328734805 {
62
+ width:70%;
63
+ margin-left:30%;
64
+ font-size:12px;
65
+ margin-top:-21px;
66
+ }
67
+
68
+ .ptr-style-6982440012 {
69
+ overflow:hidden;
70
+ }
71
+
72
+ .ptr-style-6b720fc8a3 {
73
+ border:1px solid;
74
+ background:transparent;
75
+ color:#2947a3;
76
+ margin-right:5px;
77
+ }
78
+
79
+ .ptr-style-78cacda2a9 {
80
+ overflow-x:scroll;
81
+ }
82
+
83
+ .ptr-style-7c61974051 {
84
+ align-items:center;
85
+ }
86
+
87
+ .ptr-style-81351bd1ac {
88
+ font-size:24px;
89
+ }
90
+
91
+ .ptr-style-82c24e8737 {
92
+ margin-bottom:16px;
93
+ padding:5px;
94
+ cursor:pointer;
95
+ text-align:right;
96
+ }
97
+
98
+ .ptr-style-852cda79b9 {
99
+ min-width:100px;
100
+ margin-right:10px;
101
+ }
102
+
103
+ .ptr-style-8677744d08 {
104
+ margin-bottom:24px;
105
+ }
106
+
107
+ .ptr-style-87c136dfd0 {
108
+ margin-bottom:16px;
109
+ }
110
+
111
+ .ptr-style-90ad96210e {
112
+ color:red;
113
+ }
114
+
115
+ .ptr-style-91a87015f4 {
116
+ text-align:center;
117
+ }
118
+
119
+ .ptr-style-92d33bde50 {
120
+ padding-top:9px;
121
+ }
122
+
123
+ .ptr-style-97445a8d93 {
124
+ flex:1;
125
+ }
126
+
127
+ .ptr-style-98208f557f {
128
+ width:100%;
129
+ text-align:right;
130
+ width:240px;
131
+ text-align:right;
132
+ margin-left:96px;
133
+ margin-top:8px;
134
+ }
135
+
136
+ .ptr-style-9fc225d522 {
137
+ cursor:pointer;
138
+ caret-color:transparent;
139
+ }
140
+
141
+ .ptr-style-a26bda7d11 {
142
+ margin-top:20px;
143
+ }
144
+
145
+ .ptr-style-a3347904b1 {
146
+ position:absolute;
147
+ right:2%;
148
+ top:50%;
149
+ transform:translateY(-50%);
150
+ pointer-events:none;
151
+ width:16px;
152
+ height:16px;
153
+ }
154
+
155
+ .ptr-style-ad482725f4 {
156
+ margin-top:1em;
157
+ bottom:0px;
158
+ width:100%;
159
+ margin-bottom:1.2em;
160
+ }
161
+
162
+ .ptr-style-b0288cd4be {
163
+ margin-left:16px;
164
+ margin-top:16px;
165
+ }
166
+
167
+ .ptr-style-b393da4633 {
168
+ font-size:12px;
169
+ color:#666;
170
+ }
171
+
172
+ .ptr-style-b54e408c7b {
173
+ background:#f6f6f6;
174
+ padding:8px;
175
+ }
176
+
177
+ .ptr-style-c1186b1ba1 {
178
+ margin-top:19px;
179
+ }
180
+
181
+ .ptr-style-cbc09ef471 {
182
+ border:1px solid #E3E3E3;
183
+ padding:16px;
184
+ margin-top:8px;
185
+ }
186
+
187
+ .ptr-style-d2c171b18b {
188
+ margin-top:10px;
189
+ }
190
+
191
+ .ptr-style-e38f6b9d9d {
192
+ bottom:0px;
193
+ }
194
+
195
+ .ptr-style-e6e8f75070 {
196
+ margin-top:20px;
197
+ margin-bottom:1rem;
198
+ }
199
+
200
+ .ptr-style-ef0b7a1148 {
201
+ margin-bottom:0;
202
+ }
203
+
204
+ .ptr-style-efc48952b0 {
205
+ padding:2px;
206
+ }
207
+
208
+ .ptr-style-fda6fb0beb {
209
+ margin-left:8px;
210
+ font-weight:normal;
211
+ }
212
+
213
+ .ptr-employee-breadcrumb .bread-crumb--item span {
214
+ max-width: min-content;
215
+ }
216
+
217
+ .ptr-employee-breadcrumb--mobile .bread-crumb--item {
218
+ display: flex;
219
+ }
220
+
221
+ .ptr-citizen-breadcrumb--offset {
222
+ margin-left: 10px;
223
+ }
224
+
225
+ .ptr-pagination-controls {
226
+ display: flex;
227
+ justify-content: center;
228
+ align-items: center;
229
+ gap: 12px;
230
+ margin: 20px 0;
231
+ }
232
+
233
+ .ptr-pagination-button {
234
+ background-color: #2947a3;
235
+ color: #fff;
236
+ border: none;
237
+ padding: 8px 12px;
238
+ border-radius: 50%;
239
+ font-size: 18px;
240
+ cursor: pointer;
241
+ transition: background-color 0.2s ease;
242
+ }
243
+
244
+ .ptr-pagination-button--disabled {
245
+ background-color: #ccc;
246
+ cursor: not-allowed;
247
+ }
248
+
249
+ .ptr-pagination-info {
250
+ font-weight: 500;
251
+ color: #333;
252
+ }
253
+
254
+ .ptr-timeline-container--desktop {
255
+ max-width: 960px;
256
+ min-width: 640px;
257
+ margin-right: auto;
258
+ }
259
+
260
+ .ptr-hidden-date-input {
261
+ position: absolute;
262
+ top: 0;
263
+ right: 0;
264
+ width: 32px;
265
+ height: 100%;
266
+ opacity: 0;
267
+ cursor: pointer;
268
+ border: none;
269
+ padding: 0;
270
+ margin: 0;
271
+ }
272
+
273
+ .ptr-desktop-inbox__result {
274
+ flex: 1;
275
+ }
276
+
277
+ .ptr-desktop-inbox__result--inbox {
278
+ margin-left: 24px;
279
+ }
280
+
281
+ .ptr-search-clear-link {
282
+ display: inline;
283
+ }
284
+
285
+ .ptr-search-clear-link--mobile {
286
+ margin: 0;
287
+ }
288
+
289
+ .ptr-form-field-error {
290
+ width: 70%;
291
+ margin-left: 30%;
292
+ font-size: 12px;
293
+ margin-top: -21px;
294
+ }
295
+
296
+ .ptr-document-field-error {
297
+ color: #d4351c;
298
+ font-size: 12px;
299
+ margin-top: -16px;
300
+ margin-bottom: 10px;
301
+ }
@@ -137,6 +137,16 @@
137
137
  }
138
138
  }
139
139
  }
140
+
141
+ /* Used when a dropdown must escape a scrollable or clipped form container. */
142
+ .dropdown-options-portal {
143
+ position: fixed !important;
144
+ max-height: 250px !important;
145
+ overflow: auto;
146
+ margin: 0 !important;
147
+ background-color: #fff;
148
+ 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);
149
+ }
140
150
  .fsm-registry-dropdown {
141
151
  .select {
142
152
  @apply flex;
package/src/index.scss CHANGED
@@ -27,6 +27,7 @@
27
27
  @import "./components/datewrap.scss";
28
28
  @import "./components/datatable.scss";
29
29
  @import "./components/checkpoint.scss";
30
+ @import "./components/chb.scss";
30
31
  @import "./components/checkbox.scss";
31
32
  @import "./components/inputotp.scss";
32
33
  @import "./components/map.scss";
@@ -45,6 +46,8 @@
45
46
  @import "./components/detailscontainer.scss";
46
47
  @import "./components/telephone.scss";
47
48
  @import "./components/grey.scss";
49
+ @import "./components/garbageCollection.scss";
50
+ @import "./components/ndc.scss";
48
51
  @import "./components/actionLink.scss";
49
52
  @import "./components/sectionalDropdown.scss";
50
53
  @import "./components/detailscard.scss";
@@ -138,11 +141,14 @@
138
141
  @import "./components/SurveyModal.scss";
139
142
 
140
143
  @import "./modules/adv/index.scss";
144
+ @import "./modules/noc/index.scss";
141
145
  @import "./modules/hrms/index.scss";
142
146
  @import "./modules/BPA/index.scss";
143
147
  @import "./pages/common/sitePhotoGraphs.scss";
144
148
  @import "./modules/TL/index.scss";
145
149
  @import "./components/newInbox.scss";
150
+ @import "./components/ptr.scss";
151
+ @import "./components/challanGeneration.scss";
146
152
 
147
153
  .display-none {
148
154
  display: none;