Add css class for search prompts.

This commit is contained in:
Retro_Guy 2024-11-20 04:18:19 -07:00
parent 3c02c405bc
commit dd54667901
2 changed files with 10 additions and 1 deletions

View File

@ -1614,6 +1614,15 @@ table.overboard_results_table {
/* search.php */
.search_form_table {
background: var(--color-dark);
padding: 1px;
margin-bottom: 1px;
width: 100%;
color: var(--color-text);
font-size: 0.6em;
}
.search_results_table {
width: 100%;
table-layout: fixed;

View File

@ -448,7 +448,7 @@ function display_search_tools($home = true)
}
echo 'search</h1>';
echo '<form name="form1" method="post" action="search.php">';
echo '<table class="np_buttonbar"><tr>';
echo '<table class="search_form_table"><tr>';
if (isset($search_group)) {
$searching = $search_group;
} else {