* ajusted dropdown style in 'topNavbar'.

* renamed theme 'classic blue' to 'light blue'.
This commit is contained in:
Catouse
2014-04-22 20:07:21 +08:00
parent a08b278d9b
commit 875b5f9718
4 changed files with 3 additions and 3 deletions

View File

@@ -126,7 +126,7 @@ $lang->exportTypeList['selected'] = 'Only checked';
$lang->themes['default'] = 'Default';
$lang->themes['green'] = 'Green';
$lang->themes['red'] = 'Red';
$lang->themes['classblue'] = 'Blue';
$lang->themes['lightblue'] = 'Light Blue';
/* Index mododule menu. */
$lang->index = new stdclass();

View File

@@ -130,7 +130,7 @@ $lang->theme = '主题';
$lang->themes['default'] = '默认';
$lang->themes['green'] = '绿色';
$lang->themes['red'] = '红色';
$lang->themes['classblue'] = '经典蓝';
$lang->themes['lightblue'] = '蓝';
/* 首页菜单设置。*/
$lang->index = new stdclass();

View File

@@ -224,7 +224,7 @@ class commonModel extends model
echo "<div class='dropdown' id='userMenu'>";
echo "<a href='javascript:;' data-toggle='dropdown'><i class='icon-user'></i> " . $app->user->realname . " <span class='caret'></span></a>";
echo "<ul class='dropdown-menu pull-right'><li class='dropdown-header'>" . $lang->theme . '</li>';
echo "<ul class='dropdown-menu'><li class='dropdown-header'>" . $lang->theme . '</li>';
foreach ($app->lang->themes as $key => $value)
{
echo "<li class='theme-option" . ($app->cookie->theme == $key ? " active" : '') . "'><a href='javascript:selectTheme(\"$key\");' data-value='" . $key . "'>" . $value . "</a></li>";

View File