From b83c719948dbc6bb3937865b9fcb5b4d8bed8790 Mon Sep 17 00:00:00 2001 From: Tobias Gabelunke Date: Tue, 30 Jun 2020 15:49:10 +0200 Subject: [PATCH 01/22] first test sidebar --- src/app/app.component.html | 104 ++++++++++++++------- src/app/dashboard/dashboard.component.html | 87 ++++++++--------- 2 files changed, 110 insertions(+), 81 deletions(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index 2e44c1d..e77e48a 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,39 +1,73 @@ - -
-
- - - -
-
\ No newline at end of file + + + + + +
+
+ + + +
    + +
  • + LIGHT MODE + + + DARK MODE +
  • +
+
+
+ + diff --git a/src/app/dashboard/dashboard.component.html b/src/app/dashboard/dashboard.component.html index e604953..5dafbe8 100644 --- a/src/app/dashboard/dashboard.component.html +++ b/src/app/dashboard/dashboard.component.html @@ -1,60 +1,55 @@ -
-
-

Dashboard

+
+

Dashboard

+
+ +
+

Current sprint

+
+ +
+ +
+
+
+ Userstories +
+
+ +
+
-
-

Current sprint

-
+
+
-
- -
-
-
- Userstories -
-
- -
+
+
+ Days remaining
-
- -
-
- -
-
- Days remaining -
-
- - {{getRemainingDaysInSprint()}} - -
+
+ + {{getRemainingDaysInSprint()}} +
+
-
-
- Userstories: {{status.title}} -
-
- - {{getNumberOfUserstoriesByStatus(status)}} - -
+
+
+ Userstories: {{status.title}}
- +
+ + {{getNumberOfUserstoriesByStatus(status)}} +
+
From ab720fd79860af6725ab999c3f821e6b2048f162 Mon Sep 17 00:00:00 2001 From: Tobias Gabelunke Date: Tue, 30 Jun 2020 18:26:18 +0200 Subject: [PATCH 02/22] v1 black dashboard sidebar added --- src/app/app.component.html | 61 ++++++++++++++++++++++---------------- 1 file changed, 35 insertions(+), 26 deletions(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index e77e48a..1a40356 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,33 +1,44 @@
- +
+
+
@@ -69,5 +80,3 @@
- -
From e80cd863026fbe8194cdfe609f55e24823254ecb Mon Sep 17 00:00:00 2001 From: Tobias Gabelunke Date: Wed, 1 Jul 2020 10:00:53 +0200 Subject: [PATCH 03/22] sidebar size responsive --- src/app/app.component.css | 15 +++++++ src/app/app.component.html | 86 +++++++++++++++++++------------------- 2 files changed, 57 insertions(+), 44 deletions(-) diff --git a/src/app/app.component.css b/src/app/app.component.css index e69de29..3d1d1d0 100644 --- a/src/app/app.component.css +++ b/src/app/app.component.css @@ -0,0 +1,15 @@ +.sidebar-wrapper { + position: relative; + margin-top: 0px; +} + +.sidebar { + position: absolute; + width: 15%; + margin-top: 10px; +} + +.sidebar a:hover:not(.active) { + background-color: indigo; + color: white; +} diff --git a/src/app/app.component.html b/src/app/app.component.html index 1a40356..a0201d7 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -2,9 +2,9 @@