1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-22 22:25:31 +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

@@ -5338,7 +5338,7 @@ class e_admin_form_ui extends e_form
".$filter_pre."
<div class='row-fluid'>
<div class='left form-inline span8' style='margin-top:10px;margin-bottom:-10px;'>
".$this->text('searchquery', $current_query[0], 50, $input_options)."<i class='icon-search searchquery'></i>
".$this->text('searchquery', $current_query[0], 50, $input_options)."<i class='fa fa-search searchquery'></i>
".$this->select_open('filter_options', array('class' => 'e-tip tbox select filter', 'id' => false, 'title'=>'Filter the results below'))."
".$this->option(LAN_FILTER_LABEL_DISPLAYALL, '')."
".$this->option(LAN_FILTER_LABEL_CLEAR, '___reset___')."
@@ -5371,7 +5371,7 @@ class e_admin_form_ui extends e_form
$def = deftrue('LAN_UI_USING_DATABASE_TABLE','Using [x] database table');
$diz = e107::getParser()->lanVars($def, $lang); // "Using ".$lang." database table";
$text .= "<span class='e-tip' title=\"".$diz."\">";
$text .= '<i class="icon-hdd"></i> ';
$text .= e107::getParser()->toGlyph('fa-hdd-o'); // '<i class="icon-hdd"></i> ';
$text .= e107::getLanguage()->toNative($lang)."</span>";
}