1
0
mirror of https://github.com/typecho/typecho.git synced 2025-04-07 03:32:30 +02:00
This commit is contained in:
joyqi 2013-10-15 17:11:26 +08:00
commit afc98d0930
6 changed files with 29 additions and 18 deletions

@ -823,7 +823,19 @@ margin-top: 25px;
.typecho-page-title h2 {
font-size: 1.28571em;
}
.typecho-page-title h2 a {
margin-left: 10px;
padding: 3px 6px;
background: #E9E9E6;
font-size: .8em;
border-radius: 2px;
}
.typecho-page-title h2 a:hover {
background: #E6E6E3;
color: #666;
text-decoration: none;
}
/**
* 后台页面主体
@ -1564,6 +1576,8 @@ ul.typecho-list-notable li .loading {
}
.typecho-post-area #auto-save-message {
color: #999;
line-height: 32px;
}
/*.typecho-post-area .typecho-preview-label {
@ -1635,9 +1649,6 @@ ul.typecho-list-notable li .loading {
}
.typecho-post-area .submit {
height: 24px;
line-height: 24px;
margin: 15px 0px 20px;
}
.typecho-post-area .right {

@ -37,12 +37,12 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<form method="post" name="manage_medias" class="operate-form">
<table class="typecho-list-table draggable">
<colgroup>
<col width="3%"/>
<col width="20"/>
<col width="5%"/>
<col width="37%"/>
<col width="10%"/>
<col width="30%"/>
<col width="15%"/>
<col width=""/>
<col width="30%"/>
<col width="16%"/>
</colgroup>
<thead>
<tr>

@ -37,10 +37,10 @@ include 'menu.php';
</div>
<table class="typecho-list-table">
<colgroup>
<col width="5%"/>
<col width="40%"/>
<col width="20"/>
<col width="35%"/>
<col width="30%"/>
<col width="10%"/>
<col width=""/>
<col width="15%"/>
</colgroup>
<thead>

@ -35,12 +35,12 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<table class="typecho-list-table">
<colgroup>
<col width="3%"/>
<col width="20"/>
<col width="5%"/>
<col width="47%"/>
<col width="20%"/>
<col width="10%"/>
<col width="15%"/>
<col width="30%"/>
<col width="30%"/>
<col width=""/>
<col width="16%"/>
</colgroup>
<thead>
<tr>

@ -46,10 +46,10 @@ $stat = Typecho_Widget::widget('Widget_Stat');
<colgroup>
<col width="20"/>
<col width="5%"/>
<col width="45%"/>
<col width=""/>
<col width="10%"/>
<col width="18%"/>
<col width="18%"/>
<col width="16%"/>
</colgroup>
<thead>
<tr>

@ -15,7 +15,7 @@ Typecho_Widget::widget('Widget_Contents_Post_Edit')->to($post);
<cite class="edit-draft-notice"><?php _e('你正在编辑的是保存于 %s 的草稿, 你也可以 <a href="%s">删除它</a>', $postModifyDate->word(),
Typecho_Common::url('/action/contents-post-edit?do=deleteDraft&cid=' . $post->cid, $options->index)); ?></cite>
<?php endif; ?>
<p class="title"><input type="text" id="title" name="title" value="<?php echo htmlspecialchars($post->title); ?>" placeholder="<?php _e('标题'); ?>" class="w-100 text title" /></p>
<?php $permalink = Typecho_Common::url($options->routingTable['post']['url'], $options->index);
list ($scheme, $permalink) = explode(':', $permalink, 2);