@selco/installation-ui-css 1.0.5 → 1.0.7
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 +87 -5
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/components/popup.scss +1 -1
- package/src/components/selectdropdown.scss +2 -1
- package/src/index.scss +8 -0
- package/src/pages/employee/activitydetailstable.scss +105 -0
- package/src/pages/employee/pmprojectstable.scss +16 -0
- package/src/pages/employee/projectdetailstable.scss +0 -1
package/package.json
CHANGED
|
@@ -80,7 +80,8 @@
|
|
|
80
80
|
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);
|
|
81
81
|
max-height: 400px;
|
|
82
82
|
overflow: auto;
|
|
83
|
-
|
|
83
|
+
margin-top: 40px;
|
|
84
|
+
@apply absolute z-20 bg-white max-w-full;
|
|
84
85
|
|
|
85
86
|
p {
|
|
86
87
|
padding-top: 14px;
|
package/src/index.scss
CHANGED
|
@@ -116,6 +116,8 @@
|
|
|
116
116
|
@import "./pages/employee/customcheckbox.scss";
|
|
117
117
|
@import "./pages/employee/reverseactionbar.scss";
|
|
118
118
|
@import "./pages/employee/projectdetailstable.scss";
|
|
119
|
+
@import "./pages/employee/pmprojectstable.scss";
|
|
120
|
+
@import "./pages/employee/activitydetailstable.scss";
|
|
119
121
|
|
|
120
122
|
.wbh-header-container {
|
|
121
123
|
display: flex !important;
|
|
@@ -881,4 +883,10 @@ input[type="number"] {
|
|
|
881
883
|
text-decoration: underline;
|
|
882
884
|
}
|
|
883
885
|
}
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.employee-select-wrap {
|
|
889
|
+
.options-card {
|
|
890
|
+
margin-top: 0;
|
|
891
|
+
}
|
|
884
892
|
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
.activity-details-table {
|
|
2
|
+
display: flex;
|
|
3
|
+
border-radius: 10px;
|
|
4
|
+
overflow-x: auto;
|
|
5
|
+
overflow-y: visible;
|
|
6
|
+
border: 1px solid #e0e0e0;
|
|
7
|
+
box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.2);
|
|
8
|
+
width: 100%;
|
|
9
|
+
|
|
10
|
+
.employee-select-wrap{
|
|
11
|
+
margin-bottom: 0;
|
|
12
|
+
}
|
|
13
|
+
.employee-card-input{
|
|
14
|
+
margin-bottom: 0;
|
|
15
|
+
}
|
|
16
|
+
.employee-card-input :hover{
|
|
17
|
+
border-color: #c84c0e;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.table {
|
|
21
|
+
width: 100%;
|
|
22
|
+
min-width: fit-content;
|
|
23
|
+
border-collapse: collapse;
|
|
24
|
+
font-family: Roboto;
|
|
25
|
+
font-size: 14px;
|
|
26
|
+
background-color: white;
|
|
27
|
+
margin-inline: 15px;
|
|
28
|
+
|
|
29
|
+
thead {
|
|
30
|
+
th {
|
|
31
|
+
background-color: #EEEEEE;
|
|
32
|
+
color: #0B4B66;
|
|
33
|
+
font-weight: 600;
|
|
34
|
+
text-align: left;
|
|
35
|
+
padding: 16px 18px;
|
|
36
|
+
font-size: 16px;
|
|
37
|
+
line-height: 18px;
|
|
38
|
+
|
|
39
|
+
&:last-child {
|
|
40
|
+
text-align: center;
|
|
41
|
+
width: 80px;
|
|
42
|
+
min-width: 80px;
|
|
43
|
+
position: sticky;
|
|
44
|
+
right: 0;
|
|
45
|
+
background-color: #EEEEEE;
|
|
46
|
+
z-index: 15;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
tbody {
|
|
52
|
+
td {
|
|
53
|
+
padding: 16px 18px;
|
|
54
|
+
border-bottom: 1px solid #e0e0e0;
|
|
55
|
+
color: #666666;
|
|
56
|
+
font-size: 14px;
|
|
57
|
+
line-height: 1.4;
|
|
58
|
+
|
|
59
|
+
&:last-child {
|
|
60
|
+
text-align: center;
|
|
61
|
+
width: 80px;
|
|
62
|
+
min-width: 80px;
|
|
63
|
+
position: sticky;
|
|
64
|
+
right: 0;
|
|
65
|
+
background-color: white;
|
|
66
|
+
z-index: 14;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
tr {
|
|
71
|
+
&:nth-child(even) {
|
|
72
|
+
background-color: #f8f9fa;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&:nth-child(odd) {
|
|
76
|
+
background-color: white;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&:hover {
|
|
80
|
+
background-color: #f0f7ff;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
@media (max-width: 768px) {
|
|
87
|
+
.table {
|
|
88
|
+
min-width: 1000px;
|
|
89
|
+
white-space: nowrap;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.table th,
|
|
93
|
+
.table td {
|
|
94
|
+
min-width: 140px;
|
|
95
|
+
|
|
96
|
+
&:first-child {
|
|
97
|
+
min-width: 120px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&:last-child {
|
|
101
|
+
min-width: 80px;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|