@selco/installation-ui-css 1.0.6 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selco/installation-ui-css",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "Adithya Katuku",
@@ -1,7 +1,7 @@
1
1
  .popup-wrap {
2
2
  background: rgba(0, 0, 0, 0.7);
3
3
  @apply flex fixed w-full h-full overflow-auto top-0 left-0 min-h-screen;
4
- z-index: 10000;
4
+ z-index: 10000000;
5
5
  }
6
6
 
7
7
  @screen dt {
package/src/index.scss CHANGED
@@ -117,6 +117,7 @@
117
117
  @import "./pages/employee/reverseactionbar.scss";
118
118
  @import "./pages/employee/projectdetailstable.scss";
119
119
  @import "./pages/employee/pmprojectstable.scss";
120
+ @import "./pages/employee/activitydetailstable.scss";
120
121
 
121
122
  .wbh-header-container {
122
123
  display: flex !important;
@@ -882,4 +883,10 @@ input[type="number"] {
882
883
  text-decoration: underline;
883
884
  }
884
885
  }
886
+ }
887
+
888
+ .employee-select-wrap {
889
+ .options-card {
890
+ margin-top: 0;
891
+ }
885
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
+ }