调整评论

This commit is contained in:
fen 2013-10-11 22:09:01 +08:00
parent d22a3120c0
commit 6cb5555b13
10 changed files with 118 additions and 124 deletions

View File

@ -39,8 +39,9 @@ code, pre, .mono {
}
a.balloon-button {
padding: 0 5px;
min-width: 14px;
display: inline-block;
padding: 0 6px;
min-width: 12px;
height: 18px;
line-height: 18px;
background: #D8E7EE;
@ -57,7 +58,7 @@ a.balloon-button {
}
a.button:hover, a.balloon-button:hover {
background-color: #467B96;
background-color: #A5CADC;
color: #FFF;
text-decoration: none;
}
@ -675,7 +676,6 @@ margin-top: 25px;
}
.typecho-nav-list {
zoom: 1;
}
#typecho-nav-list ul {
@ -760,19 +760,6 @@ margin-top: 25px;
right: 0;
}
.typecho-head-nav .operate a.exit {
display: inline-block;
background: url(../images/sprite.png) no-repeat scroll 0px -223px;
width: 20px;
height: 20px;
text-indent: -999px;
outline: none;
overflow: hidden;
position:relative;
*position:absolute;
top: 5px;
}
.typecho-head-nav .operate .author {
margin-right: 8px;
text-decoration: underline;
@ -854,21 +841,12 @@ margin-top: 25px;
.typecho-dashboard-nav .balloon,
.typecho-option-tabs .balloon {
margin-left: 5px;
padding: 1px 5px;
background: #BD6800;
color: #FFF;
font-size: 13px;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.typecho-dashboard-nav .dashboard-status {
}
.typecho-dashboard-nav .status p {
margin-bottom: 5px;
}
.typecho-dashboard-nav .update-check {
@ -1087,12 +1065,16 @@ a.operate-reply {
color: #999;
}
.typecho-list-table {
.typecho-list-table {
border: 30px solid #FFF;
width: 100%;
background: #FFF;
}
.typecho-list-table .right {
text-align: right;
}
.typecho-list-table-border {
border-collapse: separate;
}
@ -1146,10 +1128,10 @@ a.operate-reply {
.typecho-list-table .important {
}
.typecho-list-table .description, ul.typecho-list-notable .description {
.typecho-list-table .description {
}
.typecho-list-table .warning, ul.typecho-list-notable .warning {
.typecho-list-table .warning {
color: #B94A48;
}
@ -1177,6 +1159,7 @@ a.operate-reply {
/**
* 不使用表格的列表
*/
/*
ul.typecho-list-notable {
margin: 10px 0 0 0;
padding: 0;
@ -1312,7 +1295,6 @@ ul.typecho-list-notable li .reply-message {
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
/* hope IE support border radius, God save me! */
border-radius: 4px;
}
@ -1320,6 +1302,8 @@ ul.typecho-list-notable li .loading {
background-position: center top;
}
*/
/**
* 评论回复
*/
@ -1328,9 +1312,9 @@ ul.typecho-list-notable li .loading {
display: none;
}
ul.typecho-list-notable li #typecho-respond {
/*ul.typecho-list-notable li #typecho-respond {
display: inline;
}
}*/
#typecho-respond textarea {
}

View File

@ -77,80 +77,96 @@ $comments = Typecho_Widget::widget('Widget_Comments_Admin');
</div>
<form method="post" name="manage_comments" class="operate-form">
<ul class="typecho-list-notable clearfix">
<?php if($comments->have()): ?>
<?php while($comments->next()): ?>
<li class="col-12<?php $comments->alt(' even', ''); ?>" id="<?php $comments->theId(); ?>">
<div class="col-1 center">
<input type="checkbox" value="<?php $comments->coid(); ?>" name="coid[]"/>
</div>
<div class="col-13 comment-body">
<div class="content">
<table class="typecho-list-table">
<colgroup>
<col width="20"/>
<col width="50" />
<col width="20%"/>
<col width=""/>
</colgroup>
<thead>
<tr>
<th> </th>
<th> </th>
<th><?php _e('作者'); ?></th>
<th><?php _e('内容'); ?></th>
</tr>
</thead>
<tbody>
<?php if($comments->have()): ?>
<?php while($comments->next()): ?>
<tr class="<?php $comments->alt(' even', ''); ?>" id="<?php $comments->theId(); ?>">
<td valign="top">
<input type="checkbox" value="<?php $comments->coid(); ?>" name="coid[]"/>
</td>
<td valign="top">
<div class="comment-avatar">
<?php $comments->gravatar(); ?>
<?php $comments->gravatar(40); ?>
</div>
</td>
<td valign="top" class="comment-head">
<div class="comment-meta">
<span class="<?php $comments->type(); ?>"></span>
<span class="comment-author"><?php $comments->author(true); ?></span>
<span class="comment-author"><?php $comments->author(true); ?></span><br>
<?php if($comments->mail): ?>
|
<a href="mailto:<?php $comments->mail(); ?>"><?php $comments->mail(); ?></a>
<a href="mailto:<?php $comments->mail(); ?>"><?php $comments->mail(); ?></a><br>
<?php endif; ?>
<?php if($comments->ip): ?>
|
<?php $comments->ip(); ?>
<?php endif; ?>
</div>
</td>
<td valign="top" class="comment-body">
<div class="content">
<div class="comment-content">
<?php $comments->content(); ?>
</div>
</div>
<div class="comment-content">
<?php $comments->content(); ?>
<div class="line">
<div class="left hidden-by-mouse">
<?php if('approved' == $comments->status): ?>
<span class="weak"><?php _e('通过'); ?></span>
<?php else: ?>
<a href="<?php $options->index('/action/comments-edit?do=approved&coid=' . $comments->coid); ?>" class="ajax"><?php _e('通过'); ?></a>
<?php endif; ?>
|
<?php if('waiting' == $comments->status): ?>
<span class="weak"><?php _e('待审核'); ?></span>
<?php else: ?>
<a href="<?php $options->index('/action/comments-edit?do=waiting&coid=' . $comments->coid); ?>" class="ajax"><?php _e('待审核'); ?></a>
<?php endif; ?>
|
<?php if('spam' == $comments->status): ?>
<span class="weak"><?php _e('垃圾'); ?></span>
<?php else: ?>
<a href="<?php $options->index('/action/comments-edit?do=spam&coid=' . $comments->coid); ?>" class="ajax"><?php _e('垃圾'); ?></a>
<?php endif; ?>
|
<a href="#<?php $comments->theId(); ?>" rel="<?php $options->index('/action/comments-edit?do=get&coid=' . $comments->coid); ?>" class="ajax operate-edit"><?php _e('编辑'); ?></a>
<?php if('approved' == $comments->status && 'comment' == $comments->type): ?>
|
<a href="#<?php $comments->theId(); ?>" rel="<?php $options->index('/action/comments-edit?do=reply&coid=' . $comments->coid); ?>" class="ajax operate-reply"><?php _e('回复'); ?></a>
<?php endif; ?>
|
<a lang="<?php _e('你确认要删除%s的评论吗?', htmlspecialchars($comments->author)); ?>" href="<?php $options->index('/action/comments-edit?do=delete&coid=' . $comments->coid); ?>" class="ajax operate-delete"><?php _e('删除'); ?></a>
</div>
<div class="right">
<?php $comments->dateWord(); ?>
&nbsp;&nbsp;
<a href="<?php $comments->permalink(); ?>"><?php $comments->title(); ?></a>
</div>
</div>
</div>
<div class="line">
<div class="left hidden-by-mouse">
<?php if('approved' == $comments->status): ?>
<span class="weak"><?php _e('通过'); ?></span>
<?php else: ?>
<a href="<?php $options->index('/action/comments-edit?do=approved&coid=' . $comments->coid); ?>" class="ajax"><?php _e('通过'); ?></a>
<?php endif; ?>
|
<?php if('waiting' == $comments->status): ?>
<span class="weak"><?php _e('待审核'); ?></span>
<?php else: ?>
<a href="<?php $options->index('/action/comments-edit?do=waiting&coid=' . $comments->coid); ?>" class="ajax"><?php _e('待审核'); ?></a>
<?php endif; ?>
|
<?php if('spam' == $comments->status): ?>
<span class="weak"><?php _e('垃圾'); ?></span>
<?php else: ?>
<a href="<?php $options->index('/action/comments-edit?do=spam&coid=' . $comments->coid); ?>" class="ajax"><?php _e('垃圾'); ?></a>
<?php endif; ?>
|
<a href="#<?php $comments->theId(); ?>" rel="<?php $options->index('/action/comments-edit?do=get&coid=' . $comments->coid); ?>" class="ajax operate-edit"><?php _e('编辑'); ?></a>
<?php if('approved' == $comments->status && 'comment' == $comments->type): ?>
|
<a href="#<?php $comments->theId(); ?>" rel="<?php $options->index('/action/comments-edit?do=reply&coid=' . $comments->coid); ?>" class="ajax operate-reply"><?php _e('回复'); ?></a>
<?php endif; ?>
|
<a lang="<?php _e('你确认要删除%s的评论吗?', htmlspecialchars($comments->author)); ?>" href="<?php $options->index('/action/comments-edit?do=delete&coid=' . $comments->coid); ?>" class="ajax operate-delete"><?php _e('删除'); ?></a>
</div>
<div class="right">
<?php $comments->dateWord(); ?>
&nbsp;&nbsp;
<a href="<?php $comments->permalink(); ?>"><?php $comments->title(); ?></a>
</div>
</div>
</div>
</li>
<?php endwhile; ?>
<?php else: ?>
<li class="even">
<h6 class="typecho-list-table-title"><?php _e('没有评论') ?></h6>
</li>
<?php endif; ?>
</ul>
</td>
</tr>
<?php endwhile; ?>
<?php else: ?>
<tr class="even">
<h6 class="typecho-list-table-title"><?php _e('没有评论') ?></h6>
</tr>
<?php endif; ?>
</tbody>
</table>
<?php if(isset($request->cid)): ?>
<input type="hidden" value="<?php echo htmlspecialchars($request->get('cid')); ?>" name="cid" />
<?php endif; ?>

View File

@ -37,7 +37,7 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<form method="post" name="manage_medias" class="operate-form">
<table class="typecho-list-table draggable">
<colgroup>
<col width="10"/>
<col width="20"/>
<col width="5%"/>
<col width="20"/>
<col width="30%"/>
@ -64,7 +64,7 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<?php $mime = Typecho_Common::mimeIconType($attachments->attachment->mime); ?>
<tr<?php $attachments->alt(' class="even"', ''); ?> id="<?php $attachments->theId(); ?>">
<td><input type="checkbox" value="<?php $attachments->cid(); ?>" name="cid[]"/></td>
<td><a href="<?php $options->adminUrl('manage-comments.php?cid=' . $attachments->cid); ?>" class="balloon-button right size-<?php echo Typecho_Common::splitByCount($attachments->commentsNum, 1, 10, 20, 50, 100); ?>"><?php $attachments->commentsNum(); ?></a></td>
<td><a href="<?php $options->adminUrl('manage-comments.php?cid=' . $attachments->cid); ?>" class="balloon-button size-<?php echo Typecho_Common::splitByCount($attachments->commentsNum, 1, 10, 20, 50, 100); ?>"><?php $attachments->commentsNum(); ?></a></td>
<td><span class="typecho-mime typecho-mime-<?php echo $mime; ?>"></span></td>
<td><a href="<?php $options->adminUrl('media.php?cid=' . $attachments->cid); ?>"><?php $attachments->title(); ?></a></td>
<td>

View File

@ -36,7 +36,7 @@ include 'menu.php';
<table class="typecho-list-table">
<colgroup>
<col width="25"/>
<col width="20"/>
<col width="230"/>
<col width="30"/>
<col width="170"/>
@ -67,7 +67,7 @@ include 'menu.php';
<?php if ($options->defaultCategory == $categories->mid): ?>
<span class="balloon right"><?php _e('默认'); ?></span>
<?php else: ?>
<a class="balloon-button right hidden-by-mouse" href="<?php $options->index('/action/metas-category-edit?do=default&mid=' . $categories->mid); ?>"><?php _e('默认'); ?></a>
<a class="balloon-button hidden-by-mouse" href="<?php $options->index('/action/metas-category-edit?do=default&mid=' . $categories->mid); ?>"><?php _e('默认'); ?></a>
<?php endif; ?>
</td>
<td><a class="balloon-button left size-<?php echo Typecho_Common::splitByCount($categories->count, 1, 10, 20, 50, 100); ?>" href="<?php $options->adminUrl('manage-posts.php?category=' . $categories->mid); ?>"><?php $categories->count(); ?></a></td>

View File

@ -34,7 +34,7 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<form method="post" name="manage_pages" class="operate-form">
<table class="typecho-list-table">
<colgroup>
<col width="10"/>
<col width="20"/>
<col width="5%"/>
<col width="35%"/>
<col width=""/>
@ -61,12 +61,12 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<?php while($pages->next()): ?>
<tr<?php $pages->alt(' class="even"', ''); ?> id="<?php $pages->theId(); ?>">
<td><input type="checkbox" value="<?php $pages->cid(); ?>" name="cid[]"/></td>
<td><a href="<?php $options->adminUrl('manage-comments.php?cid=' . $pages->cid); ?>" class="balloon-button right size-<?php echo Typecho_Common::splitByCount($pages->commentsNum, 1, 10, 20, 50, 100); ?>"><?php $pages->commentsNum(); ?></a></td>
<td><a href="<?php $options->adminUrl('manage-comments.php?cid=' . $pages->cid); ?>" class="balloon-button size-<?php echo Typecho_Common::splitByCount($pages->commentsNum, 1, 10, 20, 50, 100); ?>"><?php $pages->commentsNum(); ?></a></td>
<td<?php if ('draft' != $pages->status): ?> colspan="2"<?php endif; ?>><a href="<?php $options->adminUrl('write-page.php?cid=' . $pages->cid); ?>"><?php $pages->title(); ?></a>
<?php if ('draft' == $pages->status): ?>
</td>
<td>
<span class="balloon right"><?php _e('草稿'); ?></span>
<td class="right">
<span><?php _e('草稿'); ?></span>
<?php endif; ?></td>
</td>
<td>

View File

@ -44,7 +44,7 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<form method="post" name="manage_posts" class="operate-form">
<table class="typecho-list-table">
<colgroup>
<col width="10"/>
<col width="20"/>
<col width="5%"/>
<col width="35%"/>
<col width=""/>
@ -71,13 +71,13 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<?php while($posts->next()): ?>
<tr<?php $posts->alt(' class="even"', ''); ?> id="<?php $posts->theId(); ?>">
<td><input type="checkbox" value="<?php $posts->cid(); ?>" name="cid[]"/></td>
<td><a href="<?php $options->adminUrl('manage-comments.php?cid=' . $posts->cid); ?>" class="balloon-button right size-<?php echo Typecho_Common::splitByCount($posts->commentsNum, 1, 10, 20, 50, 100); ?>"><?php $posts->commentsNum(); ?></a></td>
<td><a href="<?php $options->adminUrl('manage-comments.php?cid=' . $posts->cid); ?>" class="balloon-button size-<?php echo Typecho_Common::splitByCount($posts->commentsNum, 1, 10, 20, 50, 100); ?>"><?php $posts->commentsNum(); ?></a></td>
<td<?php if ('draft' != $posts->status && 'waiting' != $posts->status && 'private' != $posts->status && !$posts->password): ?> colspan="2"<?php endif; ?>>
<a href="<?php $options->adminUrl('write-post.php?cid=' . $posts->cid); ?>"><?php $posts->title(); ?></a>
<?php if ('draft' == $posts->status || 'waiting' == $posts->status || 'private' == $posts->status || $posts->password): ?>
</td>
<td>
<span class="balloon right"><?php 'draft' == $posts->status ? _e('草稿') : ('waiting' == $posts->status ? _e('待审核') : ('private' == $posts->status ? _e('私密') : _e(''))); ?> <?php $posts->password ? _e('密码') : _e(''); ?></span>
<td class="right">
<span><?php 'draft' == $posts->status ? _e('草稿') : ('waiting' == $posts->status ? _e('待审核') : ('private' == $posts->status ? _e('私密') : _e(''))); ?> <?php $posts->password ? _e('密码') : _e(''); ?></span>
<?php endif; ?></td>
<td>
<?php if ('publish' == $posts->status): ?>

View File

@ -32,7 +32,7 @@ include 'menu.php';
<form method="post" name="manage_users" class="operate-form">
<table class="typecho-list-table">
<colgroup>
<col width="10"/>
<col width="20"/>
<col width="20%"/>
<col width="20%"/>
<col width="20"/>

View File

@ -3,10 +3,11 @@
<div id="typecho-nav-list">
<?php $menu->output(); ?>
</div>
<a href="">Typecho</a>
<a href="<?php $options->siteUrl(); ?>"><?php _e('我的站点'); ?></a>
<div class="operate">
<?php Typecho_Plugin::factory('admin/menu.php')->navBar(); _e('欢迎'); ?>,
<a href="<?php $options->adminUrl('profile.php'); ?>" class="author important"><?php $user->screenName(); ?></a>
<a class="exit" href="<?php $options->logoutUrl(); ?>" title="<?php _e('登出'); ?>"><?php _e('登出'); ?></a>
<a class="exit" href="<?php $options->logoutUrl(); ?>"><?php _e('登出'); ?></a>
</div>
<a href="<?php $options->siteUrl(); ?>"><?php _e('查看我的站点'); ?></a>
</div>

View File

@ -13,8 +13,7 @@ include 'menu.php';
<h4 class="typecho-list-table-title"><?php _e('激活的插件'); ?></h4>
<table class="typecho-list-table">
<colgroup>
<col width="10"/>
<col width="20%"/>
<col width="25%"/>
<col width="45%"/>
<col width="8%"/>
<col width="10%"/>
@ -22,7 +21,6 @@ include 'menu.php';
</colgroup>
<thead>
<tr>
<th> </th>
<th><?php _e('名称'); ?></th>
<th><?php _e('描述'); ?></th>
<th><?php _e('版本'); ?></th>
@ -33,7 +31,6 @@ include 'menu.php';
<tbody>
<?php while ($activatedPlugins->next()): ?>
<tr<?php $activatedPlugins->alt(' class="even"', ''); ?> id="plugin-<?php $activatedPlugins->name(); ?>">
<td></td>
<td><?php $activatedPlugins->title(); ?>
<?php if (!$activatedPlugins->dependence): ?>
<img src="<?php $options->adminUrl('images/notice.gif'); ?>" title="<?php _e('%s 无法在此版本的typecho下正常工作', $activatedPlugins->title); ?>" alt="<?php _e('%s 无法在此版本的typecho下正常工作', $activatedPlugins->title); ?>" class="tiny" />
@ -64,7 +61,6 @@ include 'menu.php';
<?php if (!empty($activatedPlugins->activatedPlugins)): ?>
<?php foreach ($activatedPlugins->activatedPlugins as $key => $val): ?>
<tr>
<td></td>
<td><?php echo $key; ?></td>
<td colspan="3"><span class="warning"><?php _e('此插件文件已经损坏或者被不安全移除, 强烈建议你禁用它'); ?></span></td>
<td><a lang="<?php _e('你确认要禁用插件 %s 吗?', $key); ?>" href="<?php $options->index('/action/plugins-edit?deactivate=' . $key); ?>"><?php _e('禁用'); ?></a></td>
@ -81,8 +77,7 @@ include 'menu.php';
<h4 class="typecho-list-table-title"><?php _e('禁用的插件'); ?></h4>
<table class="typecho-list-table deactivate">
<colgroup>
<col width="10"/>
<col width="20%"/>
<col width="25%"/>
<col width="45%"/>
<col width="8%"/>
<col width="10%"/>
@ -90,7 +85,6 @@ include 'menu.php';
</colgroup>
<thead>
<tr>
<th class="typecho-radius-topleft"> </th>
<th><?php _e('名称'); ?></th>
<th><?php _e('描述'); ?></th>
<th><?php _e('版本'); ?></th>
@ -102,7 +96,6 @@ include 'menu.php';
<?php if ($deactivatedPlugins->have()): ?>
<?php while ($deactivatedPlugins->next()): ?>
<tr<?php $deactivatedPlugins->alt(' class="even"', ''); ?> id="plugin-<?php $deactivatedPlugins->name(); ?>">
<td></td>
<td><?php $deactivatedPlugins->title(); ?></td>
<td><?php $deactivatedPlugins->description(); ?></td>
<td><?php $deactivatedPlugins->version(); ?></td>
@ -125,7 +118,7 @@ include 'menu.php';
<?php endwhile; ?>
<?php else: ?>
<tr class="even">
<td colspan="6"><?php _e('没有安装插件'); ?></td>
<td colspan="5"><?php _e('没有安装插件'); ?></td>
</tr>
<?php endif; ?>
</tbody>

View File

@ -38,9 +38,9 @@ Typecho_Widget::widget('Widget_Contents_Post_Edit')->to($post);
</span>
</p>
</div>
<ul id="advance-panel" class="typecho-post-option col-9">
<li class="col-9">
<div class="col-12 suffix">
<ul id="advance-panel" class="typecho-post-option clearfix">
<li>
<div class="col-9">
<?php if($user->pass('editor', true)): ?>
<label class="typecho-label"><?php _e('公开度'); ?></label>
<ul>
@ -71,8 +71,8 @@ Typecho_Widget::widget('Widget_Contents_Post_Edit')->to($post);
</div>
</li>
</ul>
<ul id="upload-panel" class="col-9">
<li class="col-9">
<ul id="upload-panel">
<li>
<?php include 'file-upload.php'; ?>
</li>
</ul>