* default routes and redirects added

* timers refactored into a timer service from the app.component
* settings service now provides observable setting changes
* slideshow is now working
* commit-tracker style changed to dark look, colored lines were removed
* dashboard menu order changed
* slide/committracker is now animated
This commit is contained in:
Dávid Danyi
2018-04-19 17:06:08 +02:00
parent 90ddebf46b
commit 6eb1cfaea1
19 changed files with 203 additions and 134 deletions

View File

@@ -1,5 +1,5 @@
<div class="ui main wide-container">
<table *ngIf="commits?.length" class="ui large padded celled table">
<div class="ui main wide-container dark">
<table *ngIf="commits?.length" class="ui large padded inverted celled2 table">
<thead>
<tr>
<th class="collapsing"><i class="user icon"></i>Owner</th>
@@ -12,7 +12,7 @@
</tr>
</thead>
<tbody>
<tr *ngFor="let commit of commits" [ngClass]="rowClasses(commit)">
<tr *ngFor="let commit of commits">
<td class="collapsing">{{commit.owner}}</td>
<td class="collapsing">{{commit.gerrit_time}}</td>
<td>{{commit.gerrit_change_subject}}</td>