@selco/installation-ui-css 1.0.11 → 1.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selco/installation-ui-css",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Adithya Katuku",
package/src/index.scss CHANGED
@@ -118,6 +118,8 @@
118
118
  @import "./pages/employee/projectdetailstable.scss";
119
119
  @import "./pages/employee/pmprojectstable.scss";
120
120
  @import "./pages/employee/activitydetailstable.scss";
121
+ @import "./pages/employee/qc/facilitytable.scss";
122
+ @import "./pages/employee/amc/visittable.scss";
121
123
 
122
124
  .wbh-header-container {
123
125
  display: flex !important;
@@ -883,4 +885,12 @@ input[type="number"] {
883
885
  text-decoration: underline;
884
886
  }
885
887
  }
888
+ }
889
+
890
+ .create-project-wrapper {
891
+ .employee-select-wrap {
892
+ .options-card {
893
+ margin-top: 40px;
894
+ }
895
+ }
886
896
  }
@@ -0,0 +1,62 @@
1
+ .visit-table {
2
+ overflow-x: auto;
3
+ box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
4
+ width: 100%;
5
+ display: flex;
6
+ align-items: flex-start;
7
+
8
+ .table {
9
+ width: 100%;
10
+ min-width: fit-content;
11
+ border-collapse: collapse;
12
+ font-family: Roboto;
13
+ font-size: 14px;
14
+ background-color: white;
15
+
16
+ thead {
17
+ th {
18
+ background-color: #EEEEEE;
19
+ color: #000000;
20
+ font-weight: 600;
21
+ text-align: left;
22
+ padding: 16px 18px;
23
+ font-size: 14px;
24
+ line-height: 18px;
25
+ border: 1px solid #D6D5D4;
26
+ }
27
+ }
28
+
29
+ tbody {
30
+ td {
31
+ padding: 16px 18px;
32
+ border: 1px solid #D6D5D4;
33
+ color: #363636;
34
+ font-size: 14px;
35
+ line-height: 1.4;
36
+
37
+ &:nth-child(2) {
38
+ color: #C84C0E;
39
+ font-weight: 600;
40
+ }
41
+ }
42
+ }
43
+ }
44
+
45
+ @media (max-width: 768px) {
46
+ .table {
47
+ min-width: 800px;
48
+ white-space: nowrap;
49
+ }
50
+
51
+ .table th,
52
+ .table td {
53
+ min-width: 120px;
54
+ }
55
+ }
56
+ }
57
+
58
+ .health-facility-table-wrapper {
59
+ .pagination {
60
+ border: none;
61
+ }
62
+ }
@@ -0,0 +1,84 @@
1
+ .health-facility-table {
2
+ overflow-x: auto;
3
+ box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
4
+ width: 100%;
5
+ display: flex;
6
+ align-items: flex-start;
7
+
8
+ .table {
9
+ width: 100%;
10
+ min-width: fit-content;
11
+ border-collapse: collapse;
12
+ font-family: Roboto;
13
+ font-size: 14px;
14
+ background-color: white;
15
+
16
+ thead {
17
+ th {
18
+ background-color: #EEEEEE;
19
+ color: #000000;
20
+ font-weight: 600;
21
+ text-align: left;
22
+ padding: 16px 18px;
23
+ font-size: 14px;
24
+ line-height: 18px;
25
+ border: 1px solid #D6D5D4;
26
+
27
+ &:first-child {
28
+ background-color: transparent;
29
+ border: none;
30
+ text-align: center;
31
+ width: 60px;
32
+ min-width: fit-content !important;
33
+ position: relative;
34
+ }
35
+ }
36
+ }
37
+
38
+ tbody {
39
+ td {
40
+ padding: 16px 18px;
41
+ border: 1px solid #D6D5D4;
42
+ color: #363636;
43
+ font-size: 14px;
44
+ line-height: 1.4;
45
+
46
+ &:first-child {
47
+ background-color: transparent;
48
+ border: none;
49
+ text-align: center;
50
+ width: 60px;
51
+ min-width: fit-content;
52
+ position: relative;
53
+ }
54
+
55
+ &:nth-child(2) {
56
+ color: #C84C0E;
57
+ font-weight: 600;
58
+ }
59
+ }
60
+ }
61
+ }
62
+
63
+ @media (max-width: 768px) {
64
+ .table {
65
+ min-width: 800px;
66
+ white-space: nowrap;
67
+ }
68
+
69
+ .table th,
70
+ .table td {
71
+ min-width: 120px;
72
+
73
+ &:first-child {
74
+ min-width: 60px;
75
+ }
76
+ }
77
+ }
78
+ }
79
+
80
+ .health-facility-table-wrapper {
81
+ .pagination {
82
+ border: none;
83
+ }
84
+ }