From dc5f165c8268b3e8535154355660560826289226 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:38:27 +0100 Subject: [PATCH 01/21] Fix for #30 --- styles/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index 142a962..6ae6f17 100644 --- a/styles/style.css +++ b/styles/style.css @@ -9,7 +9,7 @@ body { .titleimg { width: 80%; padding-top: 50px; - padding-bottom: 50px; + padding-bottom: 10px; max-width: 500px; transition: 0.2s; } @@ -17,6 +17,7 @@ body { .lookup-box { text-align: center; border: black; + padding-top: 40px; border-radius: 40px; padding: 10px; margin-bottom: 5px; -- 2.34.1 From 4b7500278e55a1a126dbf93e2074caf00f47df41 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:40:08 +0100 Subject: [PATCH 02/21] Fix for #29 --- issue.php | 2 +- submit-done.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/issue.php b/issue.php index 4865564..2336c2c 100644 --- a/issue.php +++ b/issue.php @@ -31,7 +31,7 @@ sendInput($title,$body); // Redirect to submit-done.php - echo ""; + echo ""; }; ?> diff --git a/submit-done.php b/submit-done.php index 4fbd78b..87b264c 100644 --- a/submit-done.php +++ b/submit-done.php @@ -23,13 +23,13 @@

You're helping to make Athena better for everyone.



-

You will be redirected to the homepage in five seconds.

+

You will be redirected to the homepage in three seconds.

-- 2.34.1 From e2bb2600dc5b5f2c9d2b1cb61a8ed41e9af15fc3 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:43:04 +0100 Subject: [PATCH 03/21] Further fix for #30 --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 48bdb04..ef5e579 100644 --- a/index.php +++ b/index.php @@ -17,11 +17,11 @@
- +
+

-

-- 2.34.1 From 3c371ebfa662a4ee0321244c22b6a3501e41cb2c Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:44:25 +0100 Subject: [PATCH 04/21] Further fix for #30 --- index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.php b/index.php index ef5e579..11f0d6f 100644 --- a/index.php +++ b/index.php @@ -16,6 +16,8 @@ +
+



-- 2.34.1 From 265f3c4564e07683014c6a3f14f74cb9680a7ee5 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:47:24 +0100 Subject: [PATCH 05/21] Fix for #31 --- page-blocks/nav-menu.php | 4 ++-- styles/style.css | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/page-blocks/nav-menu.php b/page-blocks/nav-menu.php index df890f7..b1f141f 100644 --- a/page-blocks/nav-menu.php +++ b/page-blocks/nav-menu.php @@ -3,8 +3,8 @@ echo ''; diff --git a/styles/style.css b/styles/style.css index 6ae6f17..f7a18e6 100644 --- a/styles/style.css +++ b/styles/style.css @@ -159,12 +159,12 @@ body { padding: 12px 16px; text-decoration: none; display: block; - border-top: 1px solid black; + border-bottom: 1px solid black; } /*Final item of the dropdown has bottom border*/ -.dropdown-last { - border-bottom: 1px solid black; +.dropdown-first { + border-top: 1px solid black; } /* Change color of dropdown links on hover */ -- 2.34.1 From fb876ccbf777d52666a882b14218e06671febf79 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:48:14 +0100 Subject: [PATCH 06/21] Further fix for #30 --- index.php | 1 - 1 file changed, 1 deletion(-) diff --git a/index.php b/index.php index 11f0d6f..67472de 100644 --- a/index.php +++ b/index.php @@ -20,7 +20,6 @@


-

-- 2.34.1 From 413ad9d179f30a6a1cab6f4bc7af30aef87bb921 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:49:11 +0100 Subject: [PATCH 07/21] Update version string --- php/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/version.php b/php/version.php index db46dfd..f24a00d 100644 --- a/php/version.php +++ b/php/version.php @@ -1,2 +1,2 @@ Date: Wed, 5 Oct 2022 20:51:55 +0100 Subject: [PATCH 08/21] Trial fix for #23 --- styles/style.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/styles/style.css b/styles/style.css index f7a18e6..9a29b30 100644 --- a/styles/style.css +++ b/styles/style.css @@ -118,7 +118,7 @@ body { /* START MENU STYLE */ -/* Dropdown Button */ +/* Menu Button */ .dropbtn { position: fixed; top: 0; @@ -132,14 +132,13 @@ body { cursor: pointer; } -/* Dropdown button on hover & focus */ .dropbtn:hover, .dropbtn:focus { background-color: #0280e5; } /* The container
- needed to position the dropdown content */ .dropdown { - position: relative; + position: sticky; display: inline-block; } -- 2.34.1 From e866d8ec78213964e53d2b4e90b15e768b3c30cb Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:53:20 +0100 Subject: [PATCH 09/21] Trial fix for #23 --- styles/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles/style.css b/styles/style.css index 9a29b30..2adf6ab 100644 --- a/styles/style.css +++ b/styles/style.css @@ -138,14 +138,14 @@ body { /* The container
- needed to position the dropdown content */ .dropdown { - position: sticky; + position: relative; display: inline-block; } /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; - position: absolute; + position: sticky; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From a3a33eb07dbb245274c44ad9db0b749ba32efcc2 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:54:41 +0100 Subject: [PATCH 10/21] Trial fix for #23 --- styles/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index 2adf6ab..5649aff 100644 --- a/styles/style.css +++ b/styles/style.css @@ -127,6 +127,7 @@ body { color: white; padding: 12px; font-size: 12px; + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); border: none; border-bottom-left-radius: 10px; cursor: pointer; @@ -145,7 +146,7 @@ body { /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; - position: sticky; + position: static; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From 8fc3fc1602090706ef1338dedf18d886854cf22d Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:56:41 +0100 Subject: [PATCH 11/21] Trial fix for #23 --- styles/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles/style.css b/styles/style.css index 5649aff..04f207d 100644 --- a/styles/style.css +++ b/styles/style.css @@ -127,7 +127,7 @@ body { color: white; padding: 12px; font-size: 12px; - box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2); border: none; border-bottom-left-radius: 10px; cursor: pointer; @@ -146,7 +146,7 @@ body { /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; - position: static; + position: absolute; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From eebb719a9fb14c0fdc6d32f25bd2fc44d3c14970 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 20:58:26 +0100 Subject: [PATCH 12/21] Trial fix for #23 --- styles/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/styles/style.css b/styles/style.css index 04f207d..bd03a7b 100644 --- a/styles/style.css +++ b/styles/style.css @@ -147,6 +147,8 @@ body { .dropdown-content { display: none; position: absolute; + top: 10px; + right: 10px; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From b55caa9c4e2bbef2c04835ba41b2c9d27d82cc7a Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:00:05 +0100 Subject: [PATCH 13/21] Trial fix for #23 --- styles/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index bd03a7b..7a52d8d 100644 --- a/styles/style.css +++ b/styles/style.css @@ -146,7 +146,7 @@ body { /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; - position: absolute; + position: relative; top: 10px; right: 10px; background-color: #7fa7e6; -- 2.34.1 From 5e8fa8ddcdd887998d1769cd6292bafec3648452 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:01:20 +0100 Subject: [PATCH 14/21] Trial fix for #23 --- styles/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles/style.css b/styles/style.css index 7a52d8d..711cf5e 100644 --- a/styles/style.css +++ b/styles/style.css @@ -146,9 +146,9 @@ body { /* Dropdown Content (Hidden by Default) */ .dropdown-content { display: none; - position: relative; - top: 10px; - right: 10px; + position: absolute; + top: 5px; + right: -90px; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From da73f12e31b96c7efd9e8c049109a5a0f89b06b7 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:01:53 +0100 Subject: [PATCH 15/21] Trial #23 --- styles/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index 711cf5e..d33f53b 100644 --- a/styles/style.css +++ b/styles/style.css @@ -148,7 +148,7 @@ body { display: none; position: absolute; top: 5px; - right: -90px; + right: -190px; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From f8ec5d010ec4cba72d5a01cabe4ceedb8babe577 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:02:48 +0100 Subject: [PATCH 16/21] Trial #23 --- styles/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index d33f53b..3a52fa3 100644 --- a/styles/style.css +++ b/styles/style.css @@ -148,7 +148,8 @@ body { display: none; position: absolute; top: 5px; - right: -190px; + /*right: -190px;*/ + left: 190px; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From f86358424e75573a96bbf70e88498b307e52e86d Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:03:23 +0100 Subject: [PATCH 17/21] Trial #23 --- styles/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index 3a52fa3..e4588a4 100644 --- a/styles/style.css +++ b/styles/style.css @@ -149,7 +149,7 @@ body { position: absolute; top: 5px; /*right: -190px;*/ - left: 190px; + left: 50px; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From 6c869b197db1727ad20486240ef4a2d62c9be595 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:04:20 +0100 Subject: [PATCH 18/21] Trial #23 --- styles/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index e4588a4..d1b098e 100644 --- a/styles/style.css +++ b/styles/style.css @@ -149,7 +149,7 @@ body { position: absolute; top: 5px; /*right: -190px;*/ - left: 50px; + left: 150px; background-color: #7fa7e6; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); -- 2.34.1 From 863bb68d4c184a122cea481ba41e44fa1a11d6b9 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:04:55 +0100 Subject: [PATCH 19/21] Trial #23 --- styles/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index d1b098e..bbef6c1 100644 --- a/styles/style.css +++ b/styles/style.css @@ -147,7 +147,7 @@ body { .dropdown-content { display: none; position: absolute; - top: 5px; + top: -50px; /*right: -190px;*/ left: 150px; background-color: #7fa7e6; -- 2.34.1 From 7f49f63370d18d6a4a4c9ef05bbdfd8f5506c2cf Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:05:32 +0100 Subject: [PATCH 20/21] Trial #23 --- styles/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/style.css b/styles/style.css index bbef6c1..cf82c32 100644 --- a/styles/style.css +++ b/styles/style.css @@ -147,7 +147,7 @@ body { .dropdown-content { display: none; position: absolute; - top: -50px; + top: -80px; /*right: -190px;*/ left: 150px; background-color: #7fa7e6; -- 2.34.1 From 61485d00c1f54a4654116503b95695eb39140324 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Wed, 5 Oct 2022 21:07:18 +0100 Subject: [PATCH 21/21] Update version string ready for merge --- php/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/version.php b/php/version.php index f24a00d..a7af577 100644 --- a/php/version.php +++ b/php/version.php @@ -1,2 +1,2 @@