From 563d9904c97001a289fae16e69e2b214b3271b66 Mon Sep 17 00:00:00 2001 From: Mahendra Date: Mon, 22 Feb 2021 16:55:41 +0100 Subject: [PATCH 1/3] Add a fixed footer to the interface --- src/GUI_draft/templates/base.html | 2 ++ src/GUI_draft/templates/footer.html | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 src/GUI_draft/templates/footer.html diff --git a/src/GUI_draft/templates/base.html b/src/GUI_draft/templates/base.html index 49ccffea..40c6eaf9 100644 --- a/src/GUI_draft/templates/base.html +++ b/src/GUI_draft/templates/base.html @@ -26,6 +26,8 @@ Back to landing page + {% include "footer.html" %} +

Note: The idea of this intermediate-interface is to enable someone to navigate through the various views of the interface and provide feedbacks on existing component or non-existing components which would be wished. Keep in mind that it is not how the interface is going to look, we are only focusing on the user interaction now. We'll make it look nice once we agree on the structure

Hint1: if you see VC next to a title it means View-Component, i.e. normally you would see what is inside a view-component directly in this page either in a sub window, a popup window or integrated as a component of the current view, you can click on it to have more information about the view component

diff --git a/src/GUI_draft/templates/footer.html b/src/GUI_draft/templates/footer.html new file mode 100644 index 00000000..bafea313 --- /dev/null +++ b/src/GUI_draft/templates/footer.html @@ -0,0 +1,5 @@ +
+ +
\ No newline at end of file From 9dcbdb5f7e31fec9470a9d008fc306fa56e3976f Mon Sep 17 00:00:00 2001 From: Mahendra Date: Mon, 22 Feb 2021 16:56:00 +0100 Subject: [PATCH 2/3] Add styling to the footer --- src/GUI_draft/static/css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/GUI_draft/static/css/style.css b/src/GUI_draft/static/css/style.css index fc3f8432..2ce46859 100644 --- a/src/GUI_draft/static/css/style.css +++ b/src/GUI_draft/static/css/style.css @@ -7,6 +7,12 @@ # */ +.footer_content { + background-color: #e9702e; + color: white; + padding: 12px; +} + .progression_bar_buttons { background-color: #eb5e0b; color: white; From 04488e441ab2765460eacd5acf80e0fc785f9bc3 Mon Sep 17 00:00:00 2001 From: Mahendra Date: Mon, 22 Feb 2021 17:05:28 +0100 Subject: [PATCH 3/3] Update styling --- src/GUI_draft/static/css/style.css | 6 ++++-- src/GUI_draft/templates/footer.html | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/GUI_draft/static/css/style.css b/src/GUI_draft/static/css/style.css index 2ce46859..0e03a1a1 100644 --- a/src/GUI_draft/static/css/style.css +++ b/src/GUI_draft/static/css/style.css @@ -8,9 +8,11 @@ */ .footer_content { - background-color: #e9702e; + background-color: #342426; color: white; - padding: 12px; + margin: 10px; + padding: 2px; + font-size: 24px; } .progression_bar_buttons { diff --git a/src/GUI_draft/templates/footer.html b/src/GUI_draft/templates/footer.html index bafea313..120aa913 100644 --- a/src/GUI_draft/templates/footer.html +++ b/src/GUI_draft/templates/footer.html @@ -1,5 +1,5 @@
\ No newline at end of file