Add 'upcoming' status msg to dashboard entries list.
Also added some general layout styles.
This commit is contained in:
parent
625458ecda
commit
bc17eec490
@ -45,29 +45,18 @@
|
||||
|
||||
<ol class="plainList">
|
||||
{foreach $entries as $entry}
|
||||
<li>
|
||||
<li class="clearfix">
|
||||
<a href="?serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=edit&serendipity[id]={$entry.id}" title="#{$entry.id}: {$entry.title|escape}">{$entry.title}</a>
|
||||
{if $entry.isdraft == "true"}
|
||||
<span class="entry_status status_draft">Draft</span>
|
||||
{/if}
|
||||
<ul class="plainList actions">
|
||||
<li>
|
||||
<a class="button_link" href="?serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=preview&{$token}&serendipity[id]={$entry.id}" title="{$CONST.PREVIEW} #{$entry.id}">
|
||||
<span class="icon-eye"></span>
|
||||
<span class="visuallyhidden">
|
||||
{$CONST.PREVIEW}
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="button_link" href="?serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=edit&serendipity[id]={$entry.id}" title="{$CONST.EDIT} #{$entry.id}">
|
||||
<span class="icon-edit"></span>
|
||||
<span class="visuallyhidden">
|
||||
{$CONST.EDIT}
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
||||
<li><a class="button_link" href="?serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=preview&{$token}&serendipity[id]={$entry.id}" title="{$CONST.PREVIEW} #{$entry.id}"><span class="icon-eye"></span><span class="visuallyhidden"> {$CONST.PREVIEW}</span></a></li>
|
||||
<li><a class="button_link" href="?serendipity[action]=admin&serendipity[adminModule]=entries&serendipity[adminAction]=edit&serendipity[id]={$entry.id}" title="{$CONST.EDIT} #{$entry.id}"><span class="icon-edit"></span><span class="visuallyhidden"> {$CONST.EDIT}</span></a></li>
|
||||
</ul>
|
||||
{if !$showFutureEntries && ($entry.timestamp >= $serverOffsetHour) && $entry.isdraft == "false"}
|
||||
<span class="entry_status status_future">{$CONST.ENTRY_PUBLISHED_FUTURE}</span>
|
||||
{/if}
|
||||
{if $entry.isdraft == "true"}
|
||||
<span class="entry_status status_draft">Draft</span>
|
||||
{/if}
|
||||
</li>
|
||||
{/foreach}
|
||||
</ol>
|
||||
|
@ -436,7 +436,8 @@ form > a,
|
||||
.folder_name,
|
||||
.toggle_info,
|
||||
#serendipityScaleForm .form_field label,
|
||||
.filters_toolbar li {
|
||||
.filters_toolbar li,
|
||||
#dashboard_entries .entry_status {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
@ -457,7 +458,8 @@ legend > span > span,
|
||||
.configuration_group .form_multiselect label,
|
||||
.configuration_group .form_field label,
|
||||
.configuration_group .form_area label,
|
||||
#captchabox .captcha {
|
||||
#captchabox .captcha,
|
||||
#dashboard_entries li > a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@ -1311,7 +1313,8 @@ fieldset p,
|
||||
}
|
||||
|
||||
.actions,
|
||||
.edit_actions {
|
||||
.edit_actions,
|
||||
#dashboard_entries .entry_status {
|
||||
margin-top: .35em;
|
||||
margin-bottom: .35em;
|
||||
}
|
||||
@ -1468,6 +1471,14 @@ form > .button_link:first-of-type,
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
#dashboard_entries .actions {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#dashboard_entries .entry_status {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.js #dashboard > #further_links > .collapsed {
|
||||
border-bottom: 0 none;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user