Compare commits

..

No commits in common. "f0108d52f4d9945fa583993f55c6a639c1039883" and "4fb2326ef6a1f272ddbdd340eab4f284050771fa" have entirely different histories.

3 changed files with 6 additions and 15 deletions

View File

@ -1,7 +1,7 @@
# Operation Pandora Trigger Commandcenter # Operation Pandora Trigger Commandcenter
A [MEAN Stack](http://mean.io/) application created for [https://www.opt4.net](https://www.opt4.net) Arma3 Community A [MEAN Application](http://mean.io/) created for [operation-pandora.com](https://www.operation-pandora.com) Arma3 Community
## Installation ## Installation

View File

@ -1,5 +1,5 @@
.scoreboard-table { .scoreboard-table {
width: 1058px; width: 1115px;
margin: auto; margin: auto;
height: 68vh; height: 68vh;
overflow-x: hidden; overflow-x: hidden;
@ -8,16 +8,6 @@
border-bottom: 1px solid #dadada; border-bottom: 1px solid #dadada;
} }
.mat-header-row {
width: 1058px;
position: fixed;
z-index: 100;
}
.mat-table > mat-row:first-of-type {
padding-top: 56px;
}
.mat-column-name { .mat-column-name {
flex: 0 0 220px; flex: 0 0 220px;
} }
@ -28,7 +18,7 @@
.mat-column-kill, .mat-column-friendlyFire, .mat-column-revive, .mat-column-flagTouch, .mat-column-vehicleLight, .mat-column-kill, .mat-column-friendlyFire, .mat-column-revive, .mat-column-flagTouch, .mat-column-vehicleLight,
.mat-column-vehicleHeavy, .mat-column-vehicleAir, .mat-column-death, .mat-column-respawn, .mat-column-interact { .mat-column-vehicleHeavy, .mat-column-vehicleAir, .mat-column-death, .mat-column-respawn, .mat-column-interact {
flex: 0 0 75px; flex: 0 0 80px;
} }
:host /deep/ .mat-table .mat-icon { :host /deep/ .mat-table .mat-icon {

View File

@ -20,8 +20,9 @@
</ng-container> </ng-container>
<ng-container *ngFor="let column of tableHead.slice(2, tableHead.length)" matColumnDef="{{column.prop}}"> <ng-container *ngFor="let column of tableHead.slice(2, tableHead.length)" matColumnDef="{{column.prop}}">
<mat-header-cell *matHeaderCellDef mat-sort-header="{{column.prop}}" matTooltip="{{column.head | translate}}"> <mat-header-cell *matHeaderCellDef mat-sort-header="{{column.prop}}">
<mat-icon svgIcon="{{column.prop}}"> <mat-icon svgIcon="{{column.prop}}"
matTooltip="{{column.head | translate}}">
</mat-icon> </mat-icon>
</mat-header-cell> </mat-header-cell>
<mat-cell *matCellDef="let element">{{element[column.prop]}}</mat-cell> <mat-cell *matCellDef="let element">{{element[column.prop]}}</mat-cell>