@selco/installation-ui-css 1.0.9 → 1.0.10
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 +75 -1
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/index.scss +9 -0
- package/src/pages/employee/qc/facilitytable.scss +84 -0
package/package.json
CHANGED
package/src/index.scss
CHANGED
|
@@ -118,6 +118,7 @@
|
|
|
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";
|
|
121
122
|
|
|
122
123
|
.wbh-header-container {
|
|
123
124
|
display: flex !important;
|
|
@@ -889,4 +890,12 @@ input[type="number"] {
|
|
|
889
890
|
.options-card {
|
|
890
891
|
margin-top: 0;
|
|
891
892
|
}
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
.create-project-wrapper {
|
|
896
|
+
.employee-select-wrap {
|
|
897
|
+
.options-card {
|
|
898
|
+
margin-top: 40px;
|
|
899
|
+
}
|
|
900
|
+
}
|
|
892
901
|
}
|
|
@@ -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
|
+
}
|