diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 1ee7745..5a7ff58 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -7,6 +7,7 @@ import { SprintTableComponent } from './sprint-table/sprint-table.component'; // import { DashboardComponent } from './dashboard/dashboard.component'; + const routes: Routes = [ { path: 'tasks', component: TaskTableComponent }, { path: 'userstories', component: UserstoryTableComponent }, diff --git a/src/app/app.component.css b/src/app/app.component.css index e69de29..6812812 100644 --- a/src/app/app.component.css +++ b/src/app/app.component.css @@ -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; +} diff --git a/src/app/app.component.html b/src/app/app.component.html index 2e44c1d..c7d0a40 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,39 +1,75 @@ - -
-
- - +
+ + +
diff --git a/src/app/dashboard/dashboard.component.html b/src/app/dashboard/dashboard.component.html index 9e6550d..ef0a57d 100644 --- a/src/app/dashboard/dashboard.component.html +++ b/src/app/dashboard/dashboard.component.html @@ -92,6 +92,7 @@
+ diff --git a/src/app/sprint-table/sprint-table.component.css b/src/app/sprint-table/sprint-table.component.css index 70c4c49..7303d6b 100644 --- a/src/app/sprint-table/sprint-table.component.css +++ b/src/app/sprint-table/sprint-table.component.css @@ -1,3 +1,11 @@ th.sortable:hover { text-decoration: underline; -} \ No newline at end of file +} + +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 20px; + width: 80%; +} diff --git a/src/app/sprint-table/sprint-table.component.html b/src/app/sprint-table/sprint-table.component.html index 894bcb9..04c3d79 100644 --- a/src/app/sprint-table/sprint-table.component.html +++ b/src/app/sprint-table/sprint-table.component.html @@ -1,36 +1,36 @@
- +

Sprints

- + - - - - + + + - - + + - + - - - - - - - + + + + + + + - +
- ID - - - - - - - Titel - - - - - - +
+ ID + + + + + + + Titel + + + + + + Start - + End @@ -38,29 +38,29 @@ - +
{{sprint.id}}{{sprint.title}}{{sprint.startDate | date:'dd.MM.yyyy'}}{{sprint.endDate | date:'dd.MM.yyyy'}} - - -
{{sprint.id}}{{sprint.title}}{{sprint.startDate | date:'dd.MM.yyyy'}}{{sprint.endDate | date:'dd.MM.yyyy'}} + + +
- \ No newline at end of file +
diff --git a/src/app/task-table/task-table.component.css b/src/app/task-table/task-table.component.css index 70f7a6e..9b76eba 100644 --- a/src/app/task-table/task-table.component.css +++ b/src/app/task-table/task-table.component.css @@ -1,3 +1,11 @@ th.sortable:hover { text-decoration: underline; } + +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 20px; + width: 80%; +} diff --git a/src/app/task-table/task-table.component.html b/src/app/task-table/task-table.component.html index 1a8b2f2..e3760f6 100644 --- a/src/app/task-table/task-table.component.html +++ b/src/app/task-table/task-table.component.html @@ -1,126 +1,126 @@
- +

- - Userstory #{{filterUserstoryId}} - > - - Tasks + + Userstory #{{filterUserstoryId}} + > + + Tasks

- Alle Tasks anzeigen + Alle Tasks anzeigen
- - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + +
- ID - - - - - - - Titel - - - - - - - Userstory - - - - - - - Status - - - - - - -
- Priorität: -
- {{filterPriority || "All"}} -
- - -
-
- - - - - -
-
- Assigned To - - - - - - - Category - - - - - -
+ ID + + + + + + + Titel + + + + + + + Userstory + + + + + + + Status + + + + + + +
+ Priorität: +
+ {{filterPriority || "All"}} +
+ + +
+
+ + + + + +
+
+ Assigned To + + + + + + + Category + + + + + +
{{task.id}}{{task.title}} - - US #{{task.userstoryid}} - - - - {{getStatusTitleById(task.statusid)}} - - {{task.priority}} - - {{getUserNameById(task.assignedtoid)}} - - - - {{getCategoryTitleById(task.categoryid)}} - - - - -
{{task.id}}{{task.title}} + + US #{{task.userstoryid}} + + + + {{getStatusTitleById(task.statusid)}} + + {{task.priority}} + + {{getUserNameById(task.assignedtoid)}} + + + + {{getCategoryTitleById(task.categoryid)}} + + + + +
+
- diff --git a/src/app/userstory-table/userstory-table.component.css b/src/app/userstory-table/userstory-table.component.css index 70f7a6e..9b76eba 100644 --- a/src/app/userstory-table/userstory-table.component.css +++ b/src/app/userstory-table/userstory-table.component.css @@ -1,3 +1,11 @@ th.sortable:hover { text-decoration: underline; } + +.content { + position: relative; + float: left; + margin-top: 10px; + margin-left: 20px; + width: 80%; +}