merge feature/sidebar
This commit is contained in:
commit
594839d2ff
@ -7,6 +7,7 @@ import { SprintTableComponent } from './sprint-table/sprint-table.component';
|
|||||||
// import { DashboardComponent } from './dashboard/dashboard.component';
|
// import { DashboardComponent } from './dashboard/dashboard.component';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
{ path: 'tasks', component: TaskTableComponent },
|
{ path: 'tasks', component: TaskTableComponent },
|
||||||
{ path: 'userstories', component: UserstoryTableComponent },
|
{ path: 'userstories', component: UserstoryTableComponent },
|
||||||
|
@ -0,0 +1,22 @@
|
|||||||
|
.sidebar {
|
||||||
|
width: 150px;
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
margin-top: 10px;
|
||||||
|
bottom: 0;
|
||||||
|
opacity: 95%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav a {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav a:hover:not(.active) {
|
||||||
|
font-size: 1.15em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
float: right;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
@ -1,4 +1,38 @@
|
|||||||
|
<div class="container-fluid">
|
||||||
|
|
||||||
|
<div class="sidebar">
|
||||||
|
<div class="logo">
|
||||||
|
<a class="simple-text logo-normal">
|
||||||
|
Taskboard
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<ul class="nav">
|
||||||
|
<li class="active ">
|
||||||
|
<a href="/dashboard">
|
||||||
|
<p>Dashboard</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/sprints">
|
||||||
|
<p>Sprints</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/userstories">
|
||||||
|
<p>Userstories</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/tasks">
|
||||||
|
<p>Tasks</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<router-outlet></router-outlet>
|
<router-outlet></router-outlet>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
<div class=" fixed-plugin">
|
<div class=" fixed-plugin">
|
||||||
<div class=" show-dropdown" ngbDropdown>
|
<div class=" show-dropdown" ngbDropdown>
|
||||||
<a data-toggle="dropdown" ngbDropdownToggle>
|
<a data-toggle="dropdown" ngbDropdownToggle>
|
||||||
@ -37,3 +71,5 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
@ -92,6 +92,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
th.sortable:hover {
|
th.sortable:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 20px;
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
<div class="content">
|
||||||
<h3>
|
<h3>
|
||||||
Sprints
|
Sprints
|
||||||
</h3>
|
</h3>
|
||||||
@ -63,4 +63,4 @@
|
|||||||
|
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
th.sortable:hover {
|
th.sortable:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 20px;
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
<div class="content">
|
||||||
<h3>
|
<h3>
|
||||||
<a *ngIf="filterUserstoryId" [routerLink]="['/userstories', {id: filterUserstoryId}]">
|
<a *ngIf="filterUserstoryId" [routerLink]="['/userstories', {id: filterUserstoryId}]">
|
||||||
Userstory #{{filterUserstoryId}}
|
Userstory #{{filterUserstoryId}}
|
||||||
@ -123,4 +123,4 @@
|
|||||||
|
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
th.sortable:hover {
|
th.sortable:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-left: 20px;
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user