convert /network saved search to bootstrap buttons

This commit is contained in:
friendica 2014-04-07 16:25:35 -07:00
parent 74029a9ee9
commit 03753f463e
2 changed files with 3 additions and 3 deletions

View File

@ -801,9 +801,9 @@ function searchbox($s,$id='search-box',$url='/search',$save = false) {
$o .= '<form action="' . z_root() . '/' . $url . '" method="get" >';
$o .= '<input type="hidden" name="f" value="" />';
$o .= '<input type="text" class="icon-search" name="search" id="search-text" placeholder="&#xf002;" value="' . $s .'" onclick="this.submit();" />';
$o .= '<input type="submit" name="submit" id="search-submit" value="' . t('Search') . '" />';
$o .= '<input type="submit" name="submit" class="btn btn-default" id="search-submit" value="' . t('Search') . '" />';
if(feature_enabled(local_user(),'savedsearch'))
$o .= '<input type="submit" name="searchsave" id="search-save" value="' . t('Save') . '" />';
$o .= '<input type="submit" name="searchsave" class="btn btn-default" id="search-save" value="' . t('Save') . '" />';
$o .= '</form></div>';
return $o;
}

View File

@ -622,7 +622,7 @@ footer {
#netsearch-box { margin-bottom: 5px; }
#search-save {
margin-left: 5px;
margin: 5px 0 0 5px;
}
#side-follow-wrapper {