From a8e4aab92ea0704fd02066ae5fb2209f24a8d6ff Mon Sep 17 00:00:00 2001 From: Keb Helion <60008426+KebHelion@users.noreply.github.com> Date: Thu, 13 Feb 2020 19:15:48 -0500 Subject: [PATCH] Add files via upload --- more/more.html | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/more/more.html b/more/more.html index 74ef5ba..5e13cba 100644 --- a/more/more.html +++ b/more/more.html @@ -1,6 +1,7 @@ <!DOCTYPE html> <html> <head> + <meta charset="UTF-8"> <script type="text/javascript" src="../applications/metadata.js"></script> <script> //Parameters @@ -30,11 +31,13 @@ //Search - function doSearch (keyword){ + function doSearch(keyword){ location.href = "more.html?offset=0&search=" + encodeURI(keyword); } - + function clearSearch(){ + location.href = "more.html?offset=0"; + } @@ -163,6 +166,21 @@ border: 2px solid #e34c22; } + div.searchbox { + border-radius: 6px; + background: #ffffff; + padding: 4px; + border: 0px; + } + + input.searchtextbox{ + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; + color: #000000; + font-weight: 500; + text-decoration: none; + border: 0px; + } </style> </head> @@ -172,7 +190,18 @@ <table style = "width:100%;"> <tr> <td align= 'left'> - <input class = "searchtextbox" name = "searchtextbox" size = "25" maxlength="32"> <input class = "searchbtn" type="button" name = "searchbtn" value = "Search" onclick = 'doSearch(document.searchbar.searchtextbox.value);'> + <table> + <tr style="vertical-align:middle;"> + <td> + <div class = "searchbox"> + <input class = "searchtextbox" name = "searchtextbox" size = "25" maxlength="32"> <a href="#" onclick='clearSearch();'>X</a> + </div> + </td> + <td> + <a href = "#" onclick = 'doSearch(document.searchbar.searchtextbox.value);'>S</a> + </td> + </tr> + </table> </td> <td align= 'right'> <div id = 'pager'></div>