From bd27ffd3cbd4074ff600b0fa1c6f934c532cbdff Mon Sep 17 00:00:00 2001
From: Bartha Maxime <231026@umons.ac.be>
Date: Mon, 1 Apr 2024 19:13:39 +0200
Subject: [PATCH] search bar not working (to be shared with william)
---
frontend/src/Apps/ResearcherProfile.vue | 118 +++++++++++++++++-------
1 file changed, 87 insertions(+), 31 deletions(-)
diff --git a/frontend/src/Apps/ResearcherProfile.vue b/frontend/src/Apps/ResearcherProfile.vue
index 0c0476c..e905c27 100644
--- a/frontend/src/Apps/ResearcherProfile.vue
+++ b/frontend/src/Apps/ResearcherProfile.vue
@@ -1,34 +1,54 @@
@@ -82,14 +102,24 @@
-
-
+
-
@@ -152,5 +182,31 @@
#articles {
background-color: orange;
}
+#search-input{
+ width: 60%;
+ font-size: 16px;
+ padding: 12px 20px 12px 40px;
+ border: 1px solid #ddd;
+ margin-bottom: 12px;
+}
+#myUL{
+ list-style-type: none;
+ padding: 0;
+ margin: 0;
+}
-
\ No newline at end of file
+#myUL li a {
+ border: 1px solid #ddd; /* Add a border to all links */
+ margin-top: -1px; /* Prevent double borders */
+ background-color: #f6f6f6; /* Grey background color */
+ padding: 12px; /* Add some padding */
+ text-decoration: none; /* Remove default text underline */
+ font-size: 18px; /* Increase the font-size */
+ color: black; /* Add a black text color */
+ display: block; /* Make it into a block element to fill the whole list */
+}
+#myUL li a:hover:not(.header) {
+ background-color: #eee;
+}
+
+