Add css class for search prompts.
This commit is contained in:
parent
3c02c405bc
commit
dd54667901
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue