issue-fix #32

Merged
fred.boniface merged 24 commits from issue-fix into online 2022-09-23 11:03:56 +01:00
2 changed files with 7 additions and 6 deletions
Showing only changes of commit d9f5aaf22a - Show all commits

View File

@ -3,8 +3,8 @@
echo '<div class="dropdown">';
echo ' <button onclick="myFunction()" class="dropbtn">Menu</button>';
echo ' <div id="myDropdown" class="dropdown-content">';
echo ' <a href="#">Link 0</a>';
echo ' <a href="#">Link 1</a>';
echo ' <a href="#">Link 2</a>';
echo ' <a href="/">Home</a>';
echo ' <a href="/issue.php">Report Issue</a>';
echo ' <a href="/help.php">Help</a>';
echo ' </div>';
echo '</div>';

View File

@ -127,12 +127,13 @@ body {
padding: 12px;
font-size: 12px;
border: none;
border-bottom-left-radius: 10px;
cursor: pointer;
}
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
background-color: #2980B9;
background-color: #0280e5;
}
/* The container <div> - needed to position the dropdown content */
@ -145,7 +146,7 @@ body {
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
background-color: #7fa7e6;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
@ -153,7 +154,7 @@ body {
/* Links inside the dropdown */
.dropdown-content a {
color: black;
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;