- changed the position of the tags displays to be post-default (of 5)

- cleaned up the content items style in the public "skin"

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4043385
This commit is contained in:
skewed
2009-12-07 16:15:58 +00:00
parent c384147f46
commit 93a6dd4fbb
2 changed files with 2 additions and 3 deletions

View File

@@ -446,7 +446,6 @@ ul.tagCloud li {
margin-left:8px;
margin-right:0;
}
.contentItems li:hover { background:#fafbed; }
.contentItems li:hover a.ibutton { background-position:0 0; }
.contentItems li:hover a.ibutton.remove { background-position:-20px 0; }
.contentItems li:hover a.ibutton.view { background-position:-40px 0; }

View File

@@ -32,8 +32,8 @@ namespace Orchard.Tags.Models {
Filters.Add(new ActivatingFilter<HasTags>("blogpost"));
OnGetDisplayViewModel<HasTags>((context, hasTags) => {
context.AddDisplay(new TemplateViewModel(hasTags) { Position = "1", TemplateName = "HasTagsList" });
context.AddDisplay(new TemplateViewModel(hasTags) { Position = "1" });
context.AddDisplay(new TemplateViewModel(hasTags) { Position = "6", TemplateName = "HasTagsList" });
context.AddDisplay(new TemplateViewModel(hasTags) { Position = "6" });
});
}