Merge branch 'master' into feature/dropdown-add

This commit is contained in:
Nicolai Ort 2020-07-02 14:38:14 +02:00
commit ba987265a3
6 changed files with 11 additions and 25 deletions

View File

@ -1,8 +1,3 @@
table { th.sortable:hover {
table-layout: fixed;
}
th.sortable:hover {
text-decoration: underline; text-decoration: underline;
} }

View File

@ -1,10 +1,10 @@
<div class="mx-5 my-3"> <div class="container-fluid">
<h3 class="my-1"> <h3>
Sprints Sprints
</h3> </h3>
<button class="btn btn-secondary my-3" (click)="openSprintForm()">Neuer Sprint</button> <button class="btn btn-secondary" (click)="openSprintForm()">Neuer Sprint</button>
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>

View File

@ -1,7 +1,3 @@
table {
table-layout: fixed;
}
th.sortable:hover { th.sortable:hover {
text-decoration: underline; text-decoration: underline;
} }

View File

@ -1,6 +1,6 @@
<div class="mx-5 my-3"> <div class="container-fluid">
<h3 class="my-1"> <h3>
<a *ngIf="filterUserstoryId" [routerLink]="['/userstories', {id: filterUserstoryId}]"> <a *ngIf="filterUserstoryId" [routerLink]="['/userstories', {id: filterUserstoryId}]">
Userstory #{{filterUserstoryId}} Userstory #{{filterUserstoryId}}
&gt; &gt;
@ -11,10 +11,9 @@
<a [routerLink]="'/tasks'">Alle Tasks anzeigen</a> <a [routerLink]="'/tasks'">Alle Tasks anzeigen</a>
</div> </div>
<button class="btn btn-secondary my-3" (click)="openTaskForm()">Neuer Task</button> <button class="btn btn-secondary" (click)="openTaskForm()">Neuer Task</button>
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
<th (click)="sortById()" class="sortable"> <th (click)="sortById()" class="sortable">

View File

@ -1,7 +1,3 @@
table {
table-layout: fixed;
}
th.sortable:hover { th.sortable:hover {
text-decoration: underline; text-decoration: underline;
} }

View File

@ -1,8 +1,8 @@
<div class="mx-5 my-3"> <div class="container-fluid">
<h3 class="my-1">Userstories</h3> <h3>Userstories</h3>
<button class="btn btn-secondary my-3" (click)="openUserstoryForm()">Neue Userstory</button> <button class="btn btn-secondary" (click)="openUserstoryForm()">Neue Userstory</button>
<table class="table"> <table class="table">