Add fade in

pull/10/head
Florian Hartwich 2017-10-02 19:29:53 +02:00
parent 325ead18c7
commit 2e28792409
6 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
<div class="overview" xmlns="http://www.w3.org/1999/html">
<div class="overview fade-in" xmlns="http://www.w3.org/1999/html">
<h2 class="pull-left">Spielerstatistik - {{campaignPlayer.name}}</h2>
<h2 class="pull-right">{{campaignPlayer.campaign.title}} Kampagne</h2>

View File

@ -9,7 +9,7 @@ import {Location} from '@angular/common';
@Component({
selector: 'campaign-player-detail',
templateUrl: './campaign-player-detail.component.html',
styleUrls: ['./campaign-player-detail.component.css']
styleUrls: ['./campaign-player-detail.component.css', '../../style/list-entry.css']
})
export class CampaignPlayerDetailComponent {

View File

@ -12,7 +12,7 @@
<carousel [(activeSlide)]="activeSlideIndex">
<carousel class="fade-in" [(activeSlide)]="activeSlideIndex">
<slide *ngIf="id != 'all'">
<div class="slide-chart-container">
<h3>Gesamtpunktzahl</h3>

View File

@ -8,7 +8,7 @@ import {ChartUtils} from "../../utils/chart-utils";
@Component({
selector: 'stats-overview',
templateUrl: './stats-overview.component.html',
styleUrls: ['./stats-overview.component.css'],
styleUrls: ['./stats-overview.component.css', '../../style/list-entry.css'],
inputs: ['campaigns'],
providers: [{provide: CarouselConfig, useValue: {interval: false}}]
})

View File

@ -1,4 +1,4 @@
<div class="overview" xmlns="http://www.w3.org/1999/html">
<div class="overview fade-in" xmlns="http://www.w3.org/1999/html">
<div style="min-height: 263px;">
<h2>{{war.title}} - vom {{war.date | date: 'dd.MM.yyyy'}}</h2>

View File

@ -7,7 +7,7 @@ import {War} from "../../models/model-interfaces";
@Component({
selector: 'war-detail',
templateUrl: './war-detail.component.html',
styleUrls: ['./war-detail.component.css']
styleUrls: ['./war-detail.component.css', '../../style/list-entry.css']
})
export class WarDetailComponent {