mirror of
https://github.com/typecho/typecho.git
synced 2025-03-25 12:29:43 +01:00
issue #56 好多改进
This commit is contained in:
parent
18f4ef3641
commit
1870eee501
@ -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; }
|
||||
|
||||
/**
|
||||
* 评论管理
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user