diff --git a/module/block/view/flowchart.html.php b/module/block/view/flowchart.html.php
index d1e4356e15..176c3e1fa6 100644
--- a/module/block/view/flowchart.html.php
+++ b/module/block/view/flowchart.html.php
@@ -18,7 +18,7 @@
.block-flowchart .table > tbody > tr > td {color: #3c4353;}
.block-flowchart .table > tbody > tr:nth-child(even) > td {background: #f7f8f9;}
.block-flowchart .flowchart-title {font-size: 14px;font-weight: bold;color: #3c4353;}
-.block-flowchart .flowchart-step {display: inline-block;width: 24px;height: 24px;font-size: 14px;line-height: 24px;color: #fff;background-color: #00a9fc;border-radius: 50%;}
+.block-flowchart .flowchart-step {display: inline-block;width: 24px;height: 24px;font-size: 14px;line-height: 24px;color: #fff; border-radius: 50%;}
@@ -28,7 +28,7 @@
| block->role?> |
-
|
+
|
diff --git a/module/common/lang/en.php b/module/common/lang/en.php
index 77b280d810..4539995bee 100644
--- a/module/common/lang/en.php
+++ b/module/common/lang/en.php
@@ -166,6 +166,7 @@ $lang->themes['red'] = 'Red';
$lang->themes['purple'] = 'Purple';
$lang->themes['pink'] = 'Pink';
$lang->themes['blackberry'] = 'Blackberry';
+$lang->themes['classic'] = 'Classic';
/* 首页菜单设置。*/
$lang->index = new stdclass();
diff --git a/module/common/lang/zh-cn.php b/module/common/lang/zh-cn.php
index 49e9ed6565..a4377b1ec2 100644
--- a/module/common/lang/zh-cn.php
+++ b/module/common/lang/zh-cn.php
@@ -167,6 +167,7 @@ $lang->themes['red'] = '赤诚红';
$lang->themes['purple'] = '玉烟紫';
$lang->themes['pink'] = '芙蕖粉';
$lang->themes['blackberry'] = '黑莓';
+$lang->themes['classic'] = '经典';
/* 首页菜单设置。*/
$lang->index = new stdclass();
diff --git a/module/common/model.php b/module/common/model.php
index e4e188fb0d..fca371ecce 100644
--- a/module/common/model.php
+++ b/module/common/model.php
@@ -237,7 +237,7 @@ class commonModel extends model
$isGuest = $app->user->account == 'guest';
echo "";
- echo "" . strtoupper($app->user->account{0}) . "
\n";
+ echo "" . strtoupper($app->user->account{0}) . "
\n";
echo "" . (empty($app->user->realname) ? $app->user->account : $app->user->realname) . '';
echo "";
echo '';
@@ -246,7 +246,7 @@ class commonModel extends model
{
echo '';
echo "";
- echo "" . strtoupper($app->user->account{0}) . "
\n";
+ echo "" . strtoupper($app->user->account{0}) . "
\n";
echo '' . (empty($app->user->realname) ? $app->user->account : $app->user->realname) . '
';
if(isset($lang->user->roleList[$app->user->role])) echo '' . $lang->user->roleList[$app->user->role] . '
';
echo '';
diff --git a/module/tutorial/css/index.css b/module/tutorial/css/index.css
index f5247837bf..afcf12341e 100644
--- a/module/tutorial/css/index.css
+++ b/module/tutorial/css/index.css
@@ -4,7 +4,7 @@
#sidebar > header {color: #fff; padding: 10px; position: fixed; top: 0; right: 0; z-index: 10; width: 300px; border-bottom: 1px solid #ddd}
#sidebar > header > h2 {margin: 0 0 0 40px; font-size: 18px; padding: 0; line-height: 36px; color: #fff}
#sidebar > header .start-icon {position: absolute; left: 10px; top: 10px; width: 36px; height: 36px; text-align: center; margin-right: 5px;}
-#sidebar > header .start-icon > .icon-front {color: #00B1FD; position: absolute; width: 36px; height: 36px; line-height: 36px; top: 0; left: 0; font-size: 12px}
+#sidebar > header .start-icon > .icon-front {position: absolute; width: 36px; height: 36px; line-height: 36px; top: 0; left: 0; font-size: 12px}
#sidebar > header .start-icon > .icon-back {font-size: 22px; color: #fff; line-height: 36px;}
#sidebar > header .start-icon > .icon-back:before {content: '\f0a3'}
#sidebar > header > .actions {position: absolute; right: 15px; top: 15px}
diff --git a/module/tutorial/view/index.html.php b/module/tutorial/view/index.html.php
index 35b16d5a80..46eb8a8d4d 100644
--- a/module/tutorial/view/index.html.php
+++ b/module/tutorial/view/index.html.php
@@ -33,7 +33,7 @@