Compare commits
No commits in common. "e445a56a245983c2f86cac20407a5fd025609593" and "4cf2e627552b0d9cde160685f2820f822cffd467" have entirely different histories.
e445a56a24
...
4cf2e62755
|
@ -2,7 +2,7 @@
|
|||
|
||||
.army-member-view {
|
||||
width: 90%;
|
||||
min-height: 100vh;
|
||||
height: 100vh;
|
||||
padding: 5px;
|
||||
margin: auto;
|
||||
}
|
||||
|
@ -18,6 +18,11 @@
|
|||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.table {
|
||||
overflow-wrap: break-word;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
div.table-container {
|
||||
margin-top:20px;
|
||||
padding: 5px;
|
||||
|
@ -32,24 +37,16 @@ div.table-container {
|
|||
|
||||
mat-table.mat-table {
|
||||
background: rgba(255, 255, 255, 0.70);
|
||||
|
||||
.mat-column-award-graphics {
|
||||
flex: 0 0 15%;
|
||||
}
|
||||
|
||||
.mat-column-title {
|
||||
flex: 0 0 25%;
|
||||
}
|
||||
|
||||
.mat-column-reason {
|
||||
flex: 0 0 52%;
|
||||
}
|
||||
|
||||
.mat-column-date {
|
||||
flex: 0 0 8%;
|
||||
}
|
||||
}
|
||||
|
||||
mat-row.mat-row {
|
||||
@extend mat-table.mat-table;
|
||||
}
|
||||
|
||||
.cell-outline {
|
||||
outline: 1px solid #D4D4D4;
|
||||
}
|
||||
|
||||
tr.cell-outline:hover {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
.slide-chart-container {
|
||||
width: 100%;
|
||||
min-width: unset;
|
||||
height: 65vh;
|
||||
margin-top: 105px;
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<div class="fade-in fraction-stats-container">
|
||||
<div class="fade-in" style="border-top: 1px solid #dadada; padding-top:25px;" xmlns="http://www.w3.org/1999/html">
|
||||
|
||||
<mat-button-toggle-group class="chart-select-group"
|
||||
#group="matButtonToggleGroup"
|
||||
[(ngModel)]="activeChartSelect"
|
||||
|
|
|
@ -1,11 +1,6 @@
|
|||
@import url('../../../style/list-entry.scss');
|
||||
@import url('../../../style/hide-scrollbar.scss');
|
||||
|
||||
.fraction-stats-container {
|
||||
border-top: 1px solid #dadada;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.chart-select-group {
|
||||
display: flex;
|
||||
width: fit-content;
|
||||
|
@ -45,29 +40,16 @@
|
|||
}
|
||||
|
||||
@media all and (max-width: 959px) {
|
||||
.fraction-stats-container {
|
||||
width: 93%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.chart-container {
|
||||
width: 100%;
|
||||
width: 150%;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 10px 0 0;
|
||||
height: 70vh
|
||||
}
|
||||
|
||||
.chart-select-group {
|
||||
background: #dadada;
|
||||
max-width: fit-content;
|
||||
width: 200%;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
mat-button-toggle.mat-button-toggle {
|
||||
width: 50%;
|
||||
border: 1px solid #dadada;
|
||||
text-align: center;
|
||||
|
||||
& /deep/ button.mat-button-toggle-button, & /deep/ div.mat-button-toggle-label-content {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -43,10 +43,13 @@ mat-table.mat-table {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
@media all and (max-width: 599px) {
|
||||
.mat-column-name {
|
||||
flex: 0 0 130px;
|
||||
padding-left: 1vw;
|
||||
word-wrap: break-word;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.mat-header-row {
|
||||
|
@ -55,7 +58,6 @@ mat-table.mat-table {
|
|||
|
||||
mat-table.mat-table {
|
||||
width: 100%;
|
||||
height: 50vh;
|
||||
overflow-x: auto;
|
||||
display: grid;
|
||||
}
|
||||
|
|
|
@ -9,16 +9,7 @@
|
|||
style="font-weight: bold; margin-left: 10px;">{{war.ptOpfor}} {{fraction.OPFOR}}</span>
|
||||
</div>
|
||||
|
||||
<div class="pull-left head-field" style="margin-top:0" *ngIf="isSmallLayout">
|
||||
<h4>{{'stats.scoreboard.participants' | translate}}</h4>
|
||||
<span [style.color]="fraction.COLOR_BLUFOR"
|
||||
style="font-weight: bold; margin-right: 10px">{{fraction.BLUFOR}} {{war.playersBlufor}}</span>
|
||||
<span style="font-size: 13px;font-weight: bold;">vs</span>
|
||||
<span [style.color]="fraction.COLOR_OPFOR"
|
||||
style="font-weight: bold; margin-left: 10px;">{{war.playersOpfor}} {{fraction.OPFOR}}</span>
|
||||
</div>
|
||||
|
||||
<div class="pull-left head-field-pie-chart" *ngIf="!isSmallLayout">
|
||||
<div class="pull-left head-field-pie-chart">
|
||||
<h4 class="pull-left" style="margin-bottom: 0;">{{'stats.scoreboard.participants' | translate}}</h4>
|
||||
<ngx-charts-pie-chart
|
||||
class="pull-left"
|
||||
|
|
|
@ -145,12 +145,11 @@ span.tab-control {
|
|||
}
|
||||
|
||||
div.btn-clean-log {
|
||||
padding: 2vw 4vw 38px;
|
||||
width: 100%;
|
||||
padding-left: 0;
|
||||
padding-top: 38px;
|
||||
|
||||
& > a {
|
||||
margin: 0 !important;
|
||||
width:100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -166,6 +165,12 @@ span.tab-control {
|
|||
}
|
||||
}
|
||||
|
||||
.head-field-pie-chart {
|
||||
width: calc(54% - 1.5vw);
|
||||
padding-left: 10%;
|
||||
margin-bottom: -8px;
|
||||
}
|
||||
|
||||
.nav-tabs > li {
|
||||
width: 25%;
|
||||
font-size: 12px;
|
||||
|
@ -179,7 +184,7 @@ span.tab-control {
|
|||
.nav-tabs > li:last-child {
|
||||
width: fit-content;
|
||||
position: absolute;
|
||||
margin-top: -38px;
|
||||
margin-left: 27%;
|
||||
margin-top: -48px;
|
||||
margin-left: 46%;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue