1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 04:12:00 +02:00

GUI Glyph fixes and Bbcode button styling fixes.

This commit is contained in:
Cameron
2014-01-17 06:49:55 -08:00
parent 325c3f3f60
commit 58d2aa8ad3
14 changed files with 206 additions and 86 deletions

View File

@@ -1363,9 +1363,9 @@ class e_form
*/
function search($name, $searchVal, $submitName, $filterName='', $filterArray=false, $filterVal=false)
{
$tp = e107::getParser();
$text = '<span class="input-append e-search"><i class="icon-search"></i>
$text = '<span class="input-append e-search">'.$tp->toGlyph('fa-search').'
'.$this->text($name, $searchVal,20,'class=search-query').'
<button class="btn btn-primary" name="'.$submitName.'" type="submit">'.LAN_GO.'</button>
</span>';
@@ -2682,7 +2682,7 @@ class e_form
// $value = '<img src="'.$tp->replaceConstants(vartrue($parms['pre']).$value, 'abs').'" alt="'.basename($value).'" class="icon'.(vartrue($parms['class']) ? ' '.$parms['class'] : '').'" />';
}
$value = $tp->toIcon($value);
$value = $tp->toIcon($value,array('size'=>'2x'));
break;