@pmidc/upyog-css 1.2.36-dev.1.3 → 1.2.36-dev.1.30
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 +18743 -17879
- package/dist/index.min.css +1 -1
- package/package.json +24 -24
- package/src/components/CardBasedOptions.scss +33 -31
- package/src/components/actionbar.scss +1 -1
- package/src/components/body.scss +3 -3
- package/src/components/buttons.scss +8 -8
- package/src/components/card.scss +6 -3
- package/src/components/challanGeneration.scss +349 -0
- package/src/components/chb.scss +242 -0
- package/src/components/datatable.scss +6 -0
- package/src/components/filters.scss +283 -2
- package/src/components/garbageCollection.scss +535 -0
- package/src/components/ndc.scss +233 -0
- package/src/components/newInbox.scss +382 -0
- package/src/components/ptr.scss +301 -0
- package/src/components/selectdropdown.scss +10 -0
- package/src/components/table.scss +553 -42
- package/src/components/uploadcomponents.scss +1 -3
- package/src/index.scss +34 -11
- package/src/modules/BPA/index.scss +5149 -13
- package/src/modules/TL/index.scss +29 -0
- package/src/modules/adv/index.scss +1164 -0
- package/src/modules/noc/index.scss +1210 -0
- package/src/modules/rentAndLease/index.scss +647 -0
- package/src/pages/citizen/DocumentList.scss +19 -3
- package/src/pages/citizen/HomePageWrapper.scss +22 -17
- package/src/pages/employee/index.scss +62 -22
- package/src/pages/employee/login.scss +1 -1
package/src/index.scss
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
/*@import 'normalize.css';*/
|
|
2
2
|
|
|
3
|
-
@import url("https://fonts.googleapis.com/css2?family=
|
|
4
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
|
|
5
|
-
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;700&display=swap");
|
|
6
|
-
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
|
|
3
|
+
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap");
|
|
7
4
|
|
|
8
5
|
@import "tailwindcss/base";
|
|
9
6
|
|
|
@@ -27,6 +24,7 @@
|
|
|
27
24
|
@import "./components/datewrap.scss";
|
|
28
25
|
@import "./components/datatable.scss";
|
|
29
26
|
@import "./components/checkpoint.scss";
|
|
27
|
+
@import "./components/chb.scss";
|
|
30
28
|
@import "./components/checkbox.scss";
|
|
31
29
|
@import "./components/inputotp.scss";
|
|
32
30
|
@import "./components/map.scss";
|
|
@@ -45,6 +43,8 @@
|
|
|
45
43
|
@import "./components/detailscontainer.scss";
|
|
46
44
|
@import "./components/telephone.scss";
|
|
47
45
|
@import "./components/grey.scss";
|
|
46
|
+
@import "./components/garbageCollection.scss";
|
|
47
|
+
@import "./components/ndc.scss";
|
|
48
48
|
@import "./components/actionLink.scss";
|
|
49
49
|
@import "./components/sectionalDropdown.scss";
|
|
50
50
|
@import "./components/detailscard.scss";
|
|
@@ -138,10 +138,14 @@
|
|
|
138
138
|
@import "./components/SurveyModal.scss";
|
|
139
139
|
|
|
140
140
|
@import "./modules/adv/index.scss";
|
|
141
|
+
@import "./modules/noc/index.scss";
|
|
141
142
|
@import "./modules/hrms/index.scss";
|
|
142
143
|
@import "./modules/BPA/index.scss";
|
|
143
144
|
@import "./pages/common/sitePhotoGraphs.scss";
|
|
144
145
|
@import "./modules/TL/index.scss";
|
|
146
|
+
@import "./components/newInbox.scss";
|
|
147
|
+
@import "./components/ptr.scss";
|
|
148
|
+
@import "./components/challanGeneration.scss";
|
|
145
149
|
|
|
146
150
|
.display-none {
|
|
147
151
|
display: none;
|
|
@@ -1000,12 +1004,12 @@
|
|
|
1000
1004
|
}
|
|
1001
1005
|
|
|
1002
1006
|
.options-card {
|
|
1003
|
-
max-height: 350px;
|
|
1004
|
-
overflow-y: auto;
|
|
1005
|
-
overflow-x: hidden;
|
|
1006
|
-
border: 1px solid #ccc;
|
|
1007
|
+
max-height: 350px;
|
|
1008
|
+
overflow-y: auto;
|
|
1009
|
+
overflow-x: hidden;
|
|
1010
|
+
border: 1px solid #ccc;
|
|
1007
1011
|
border-radius: 8px;
|
|
1008
|
-
background-color: #fff;
|
|
1012
|
+
background-color: #fff;
|
|
1009
1013
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
1010
1014
|
padding: 4px 0;
|
|
1011
1015
|
}
|
|
@@ -2401,6 +2405,25 @@ input[type="date"] {
|
|
|
2401
2405
|
width: 100%;
|
|
2402
2406
|
}
|
|
2403
2407
|
}
|
|
2404
|
-
.hrms-text-transform{
|
|
2408
|
+
.hrms-text-transform {
|
|
2405
2409
|
text-transform: none !important;
|
|
2406
|
-
}
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
.noc-popupStyles {
|
|
2413
|
+
width: unset;
|
|
2414
|
+
min-width: 360px;
|
|
2415
|
+
max-width: 600px;
|
|
2416
|
+
padding: 20px;
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
.engagementForm {
|
|
2420
|
+
width: 70%;
|
|
2421
|
+
@media (max-width: 768px) {
|
|
2422
|
+
width: 100%;
|
|
2423
|
+
}
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
.kibana-link {
|
|
2427
|
+
padding: 0 !important;
|
|
2428
|
+
margin: 0 !important;
|
|
2429
|
+
}
|