Add fixed header for scoreboard table
parent
dfaddfa992
commit
8cabea74fd
|
@ -20,6 +20,16 @@ table.mat-table img {
|
|||
filter: invert(60%);
|
||||
}
|
||||
|
||||
:host /deep/ table.mat-table > thead {
|
||||
position: absolute;
|
||||
display: inherit;
|
||||
}
|
||||
|
||||
:host /deep/ table.mat-table > tbody {
|
||||
margin-top: 60px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mat-column-name {
|
||||
width: 200px;
|
||||
}
|
||||
|
@ -33,6 +43,18 @@ table.mat-table img {
|
|||
text-indent: 9px;
|
||||
}
|
||||
|
||||
th.mat-column-interact {
|
||||
padding-left: 36px;
|
||||
background: white;
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
/* TABLE SCROLLBAR */
|
||||
div::-webkit-scrollbar-thumb {
|
||||
border-top: solid white 56px;
|
||||
}
|
||||
|
||||
/* MAT ICON BUTTON */
|
||||
|
||||
:host/deep/.mat-table .mat-icon {
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
</ng-container>
|
||||
|
||||
<ng-container matColumnDef="interact">
|
||||
<th mat-header-cell *matHeaderCellDef></th>
|
||||
<th mat-header-cell *matHeaderCellDef> </th>
|
||||
<td mat-cell *matCellDef="let element">
|
||||
<button mat-icon-button
|
||||
matTooltip="Kampagnenstatistik für {{element.name}}"
|
||||
|
|
Loading…
Reference in New Issue