mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
blogs (list) admin UI updates (needs destinations for all blog related links)
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4043010
This commit is contained in:
@@ -260,9 +260,12 @@ a:hover, a:active, a:focus {
|
|||||||
#main form {
|
#main form {
|
||||||
margin:.345em 0 1.5em;
|
margin:.345em 0 1.5em;
|
||||||
}
|
}
|
||||||
#main h2, #main h3 {
|
#main h2 {
|
||||||
border-bottom:1px dashed #e4e7dc;
|
border-bottom:1px dashed #e4e7dc;
|
||||||
}
|
}
|
||||||
|
#main h3 {
|
||||||
|
border-bottom:2px solid #e4e7dc;
|
||||||
|
}
|
||||||
|
|
||||||
/* Confirmations, Messages and the like
|
/* Confirmations, Messages and the like
|
||||||
----------------------------------------------------------*/
|
----------------------------------------------------------*/
|
||||||
@@ -375,17 +378,24 @@ button:focus, .button:focus {
|
|||||||
.cancel {
|
.cancel {
|
||||||
margin:0 0 0 .93em;
|
margin:0 0 0 .93em;
|
||||||
}
|
}
|
||||||
#main .manage {
|
.manage {
|
||||||
float:right;
|
float:right;
|
||||||
margin:3px 0 6px 4px;
|
margin:3px 0 6px 4px;
|
||||||
overflow:hidden;
|
overflow:hidden;
|
||||||
}
|
}
|
||||||
#main div.actions {
|
.actions {
|
||||||
height:2em;
|
height:2em;
|
||||||
|
overflow:hidden;
|
||||||
padding:.6em 0 .1em;
|
padding:.6em 0 .1em;
|
||||||
text-align:right;
|
text-align:right;
|
||||||
}
|
}
|
||||||
#main .manage a.button {
|
.actions .construct {
|
||||||
|
float:left;
|
||||||
|
}
|
||||||
|
.actions .destruct {
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
.manage a.button {
|
||||||
float:right;
|
float:right;
|
||||||
height:inherit;
|
height:inherit;
|
||||||
margin-left:.3em;
|
margin-left:.3em;
|
||||||
@@ -524,8 +534,26 @@ todo: (heskew) pull out into relevant modules where appropriate
|
|||||||
|
|
||||||
/* Blogs
|
/* Blogs
|
||||||
----------------------------------------------------------*/
|
----------------------------------------------------------*/
|
||||||
|
ul.blogs {
|
||||||
|
margin:1.4em 0;
|
||||||
|
}
|
||||||
ul.blogs li {
|
ul.blogs li {
|
||||||
margin:0.575em 0 2.5em;
|
margin:0;
|
||||||
|
overflow:hidden;
|
||||||
|
padding:0 0 .4em;
|
||||||
|
}
|
||||||
|
#main ul.blogs li h3 {
|
||||||
|
margin:0 0 .5em;
|
||||||
|
}
|
||||||
|
/* todo: (heskew) clean up since this is a bit of a hack specific to a single page */
|
||||||
|
#main ul.blogs li .actions {
|
||||||
|
height:auto;
|
||||||
|
margin:-1.5em 0 0;
|
||||||
|
padding:0 0 .1em;
|
||||||
|
visibility:hidden;
|
||||||
|
}
|
||||||
|
#main ul.blogs li:hover .actions {
|
||||||
|
visibility:visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,10 +1,16 @@
|
|||||||
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Blog>" %>
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Blog>" %>
|
||||||
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
||||||
<%@ Import Namespace="Orchard.Blogs.Models"%>
|
<%@ Import Namespace="Orchard.Blogs.Models"%>
|
||||||
<h3>
|
<h3><a href="<%=Url.BlogEdit(Model.Slug) %>"><%=Html.Encode(Model.Name) %></a></h3>
|
||||||
<a href="<%=Url.BlogEdit(Model.Slug) %>"><%=Html.Encode(Model.Name) %></a>
|
<%--<p>[list of authors] [modify blog access]</p>--%>
|
||||||
<span>(<a href="<%=Url.Blog(Model.Slug) %>">view</a>)</span>
|
|
||||||
<span>(<a href="<%=Url.BlogPostCreate(Model.Slug) %>">create post</a>)</span>
|
|
||||||
</h3>
|
|
||||||
<p>[list of authors] [modify blog access]</p>
|
|
||||||
<p><%=Model.Description %></p>
|
<p><%=Model.Description %></p>
|
||||||
|
<p class="actions">
|
||||||
|
<%-- todo: (heskew) make into a ul --%>
|
||||||
|
<span class="construct">
|
||||||
|
<a href="<%=Url.Blog(Model.Slug) %>">manage posts</a>
|
||||||
|
| <a href="#">edit</a>
|
||||||
|
| <a href="#">view</a>
|
||||||
|
| <a href="#">create post</a>
|
||||||
|
</span>
|
||||||
|
<span class="destruct"><a href="#">delete</a></span>
|
||||||
|
</p>
|
Reference in New Issue
Block a user