@selco/installation-ui-css 1.0.12 → 1.0.14
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 +284 -3
- package/dist/index.min.css +3 -3
- package/package.json +1 -1
- package/src/index.scss +13 -0
- package/src/pages/employee/amc/visittable.scss +62 -0
- package/src/pages/employee/fa/adminfacilitytable.scss +66 -0
- package/src/pages/employee/fa/facilitydetailstab.scss +76 -0
- package/src/pages/employee/fa/facilitydetailstable.scss +51 -0
- package/src/pages/employee/formcomposer/reverseactionbarfixed.scss +53 -0
package/package.json
CHANGED
package/src/index.scss
CHANGED
|
@@ -119,6 +119,11 @@
|
|
|
119
119
|
@import "./pages/employee/pmprojectstable.scss";
|
|
120
120
|
@import "./pages/employee/activitydetailstable.scss";
|
|
121
121
|
@import "./pages/employee/qc/facilitytable.scss";
|
|
122
|
+
@import "./pages/employee/amc/visittable.scss";
|
|
123
|
+
@import "./pages/employee/fa/adminfacilitytable.scss";
|
|
124
|
+
@import "pages/employee/formcomposer/reverseactionbarfixed.scss";
|
|
125
|
+
@import "pages/employee/fa/facilitydetailstab.scss";
|
|
126
|
+
@import "pages/employee/fa/facilitydetailstable.scss";
|
|
122
127
|
|
|
123
128
|
.wbh-header-container {
|
|
124
129
|
display: flex !important;
|
|
@@ -892,4 +897,12 @@ input[type="number"] {
|
|
|
892
897
|
margin-top: 40px;
|
|
893
898
|
}
|
|
894
899
|
}
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.digit-toast-success {
|
|
903
|
+
position: absolute;
|
|
904
|
+
min-width: fit-content;
|
|
905
|
+
max-width: 200px !important;
|
|
906
|
+
left: 50% !important;
|
|
907
|
+
transform: translateX(-50%) !important;
|
|
895
908
|
}
|
|
@@ -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,66 @@
|
|
|
1
|
+
.admin-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
|
+
tr {
|
|
18
|
+
border: 1px solid #D6D5D4;
|
|
19
|
+
}
|
|
20
|
+
th {
|
|
21
|
+
background-color: #EEEEEE;
|
|
22
|
+
color: #000000;
|
|
23
|
+
font-weight: 600;
|
|
24
|
+
text-align: left;
|
|
25
|
+
padding: 16px 18px;
|
|
26
|
+
font-size: 14px;
|
|
27
|
+
line-height: 18px;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
tbody {
|
|
32
|
+
tr {
|
|
33
|
+
cursor: pointer;
|
|
34
|
+
border: 1px solid #D6D5D4;
|
|
35
|
+
&:hover {
|
|
36
|
+
background-color: #F2F2F2;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
td {
|
|
40
|
+
padding: 16px 18px;
|
|
41
|
+
color: #363636;
|
|
42
|
+
font-size: 14px;
|
|
43
|
+
line-height: 1.4;
|
|
44
|
+
background-color: transparent;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@media (max-width: 768px) {
|
|
50
|
+
.table {
|
|
51
|
+
min-width: 800px;
|
|
52
|
+
white-space: nowrap;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.table th,
|
|
56
|
+
.table td {
|
|
57
|
+
min-width: 120px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.admin-facility-table-wrapper {
|
|
63
|
+
.pagination {
|
|
64
|
+
border: none;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
.digit-tab-main {
|
|
2
|
+
position: relative;
|
|
3
|
+
|
|
4
|
+
.digit-tab {
|
|
5
|
+
display: flex;
|
|
6
|
+
align-items: flex-end;
|
|
7
|
+
gap: 0;
|
|
8
|
+
position: relative !important;
|
|
9
|
+
z-index: 2;
|
|
10
|
+
|
|
11
|
+
.digit-tab-list {
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
border-radius: 8px 8px 0 0;
|
|
14
|
+
background-color: #FFFFFF;
|
|
15
|
+
transition: all 0.2s ease;
|
|
16
|
+
margin-bottom: -1px;
|
|
17
|
+
position: relative !important;
|
|
18
|
+
|
|
19
|
+
&:not(:last-child)::after {
|
|
20
|
+
content: '';
|
|
21
|
+
position: absolute;
|
|
22
|
+
right: 0;
|
|
23
|
+
top: 50%;
|
|
24
|
+
transform: translateY(-50%);
|
|
25
|
+
height: 45px;
|
|
26
|
+
width: 1px;
|
|
27
|
+
background-color: #D6D5D5;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&.active {
|
|
31
|
+
background-color: #FAFAFA;
|
|
32
|
+
|
|
33
|
+
.digit-tab-label {
|
|
34
|
+
color: #C84C0E;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&:not(.active) {
|
|
39
|
+
.digit-tab-label {
|
|
40
|
+
color: #505A5F;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.digit-tab-item {
|
|
45
|
+
display: flex;
|
|
46
|
+
background-color: transparent;
|
|
47
|
+
align-items: center;
|
|
48
|
+
gap: 8px;
|
|
49
|
+
border: none;
|
|
50
|
+
|
|
51
|
+
.digit-tab-icon {
|
|
52
|
+
display: flex;
|
|
53
|
+
align-items: center;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.digit-tab-label {
|
|
57
|
+
font-family: Roboto;
|
|
58
|
+
font-size: 16px;
|
|
59
|
+
font-weight: 700;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.tab-content-wrapper {
|
|
66
|
+
position: relative;
|
|
67
|
+
overflow: auto;
|
|
68
|
+
z-index: 1;
|
|
69
|
+
background-color: #fafafa;
|
|
70
|
+
padding: 15px;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.digit-tab-main .digit-tab .digit-tab-list {
|
|
75
|
+
position: relative !important;
|
|
76
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.facility-details-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
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@media (max-width: 768px) {
|
|
41
|
+
.table {
|
|
42
|
+
min-width: 800px;
|
|
43
|
+
white-space: nowrap;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.table th,
|
|
47
|
+
.table td {
|
|
48
|
+
min-width: 120px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
.reverse-actionbar-fixed {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 15px;
|
|
5
|
+
max-width: 100%;
|
|
6
|
+
position: fixed;
|
|
7
|
+
|
|
8
|
+
.submit-bar,
|
|
9
|
+
.submit-bar-disabled {
|
|
10
|
+
width: 100%;
|
|
11
|
+
display: flex;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
gap: 10px;
|
|
14
|
+
align-items: center;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.previous-button {
|
|
18
|
+
margin-left: 0;
|
|
19
|
+
width: 100%;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
@media (min-width: 640px) {
|
|
23
|
+
.reverse-actionbar-fixed {
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-direction: row-reverse;
|
|
26
|
+
justify-content: space-between;
|
|
27
|
+
max-width: 100%;
|
|
28
|
+
position: fixed;
|
|
29
|
+
|
|
30
|
+
.submit-bar,
|
|
31
|
+
.submit-bar-disabled {
|
|
32
|
+
width: 240px;
|
|
33
|
+
display: flex;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
gap: 10px;
|
|
36
|
+
align-items: center;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.previous-button{
|
|
40
|
+
width: 240px;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@media (min-width: 48rem) {
|
|
46
|
+
.reverse-actionbar-fixed {
|
|
47
|
+
.previous-button{
|
|
48
|
+
margin-left: 4rem;
|
|
49
|
+
width: 240px;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|