Skip to content

Commit fae6903

Browse files
authored
Merge pull request #104 from delphi-hub/feature/tableExpansion
Added table expand feature to display docker ID and labels.
2 parents 74128f6 + 14316fd commit fae6903

File tree

4 files changed

+117
-67
lines changed

4 files changed

+117
-67
lines changed

client/package-lock.json

Lines changed: 19 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/app/dashboard/table-all/table-all.component.css

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ table {
3535
}
3636

3737
.customWidthClass{
38-
width:350px;
38+
width: 235px;
3939
}
4040

4141
.mat-elevation-z8 {
4242
box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }
4343

44-
.customWidthClass_new{
45-
margin-left: 20px;
46-
}
44+
.customWidthClassNew{
45+
padding-right: 75px;
46+
}
4747

4848
.mat_cell{
4949
border-bottom-width:0px !important;
@@ -56,3 +56,30 @@ table {
5656
float:right;
5757
margin-top:15px;
5858
}
59+
60+
.example-element-detail {
61+
overflow: hidden;
62+
display: flex;
63+
}
64+
65+
tr.example-detail-row {
66+
height: 0;
67+
}
68+
69+
tr.example-element-row:not(.example-expanded-row):hover {
70+
background: #f5f5f5;
71+
}
72+
73+
tr.example-element-row:not(.example-expanded-row):active {
74+
background: #efefef;
75+
}
76+
77+
.example-element-row td {
78+
border-bottom-width: 0;
79+
}
80+
81+
.customOutline {
82+
outline: none;
83+
}
84+
85+

0 commit comments

Comments
 (0)