issue #56 好多改进

This commit is contained in:
fen 2013-11-06 13:02:04 +08:00
parent 18f4ef3641
commit 1870eee501
4 changed files with 8 additions and 6 deletions

View File

@ -700,10 +700,12 @@ a.operate-reply {
color: #B94A48; }
.typecho-list-table tr td .hidden-by-mouse {
visibility: hidden; }
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0; }
.typecho-list-table tr:hover td .hidden-by-mouse {
visibility: visible; }
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1; }
/**
* 评论管理

View File

@ -434,11 +434,11 @@ a.operate-reply {
.typecho-list-table tr td .hidden-by-mouse {
visibility: hidden;
@include opacity(0);
}
.typecho-list-table tr:hover td .hidden-by-mouse {
visibility: visible;
@include opacity(1);
}

View File

@ -54,7 +54,7 @@ Typecho_Widget::widget('Widget_Contents_Page_Edit')->to($page);
</p>
</div>
<div class="col-mb-12 col-tb-3" role="complementary">
<section class="typecho-post-option">
<section class="typecho-post-option" role="application">
<label for="date" class="typecho-label"><?php _e('发布日期'); ?></label>
<p><input class="typecho-date w-100" type="text" name="date" id="date" value="<?php $page->have() ? $page->date('Y-m-d H:i') : ''; ?>" /></p>
</section>

View File

@ -58,7 +58,7 @@ Typecho_Widget::widget('Widget_Contents_Post_Edit')->to($post);
</p>
</div>
<div class="col-mb-12 col-tb-3" role="complementary">
<section class="typecho-post-option">
<section class="typecho-post-option" role="application">
<label for="date" class="typecho-label"><?php _e('发布日期'); ?></label>
<p><input class="typecho-date w-100" type="text" name="date" id="date" value="<?php $post->have() ? $post->date('Y-m-d H:i') : ''; ?>" /></p>
</section>