mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Merge
--HG-- branch : 1.x
This commit is contained in:
@@ -52,9 +52,18 @@
|
||||
}
|
||||
}
|
||||
|
||||
<div class="summary">
|
||||
@if (item.Notifications != null && item.Notifications.Count > 0) {
|
||||
<div class="notifications">
|
||||
@foreach (string notification in item.Notifications) {
|
||||
<h5>@Html.Raw(notification)</h5>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
<div class="@extensionClass">
|
||||
<div class="extensionDetails column">
|
||||
<div class="extensionName">
|
||||
<div class="extensionName @if (item.Installed) {<text>installed</text>}">
|
||||
@if (!string.IsNullOrWhiteSpace(item.GalleryDetailsUrl)) {
|
||||
<a href="@item.GalleryDetailsUrl">
|
||||
<h2>@item.Title<span> - @T("Version: {0}", item.Version)</span></h2>
|
||||
@@ -70,13 +79,6 @@
|
||||
</div>
|
||||
|
||||
<div class="properties">
|
||||
@if (item.Notifications != null && item.Notifications.Count > 0) {
|
||||
<div class="notifications">
|
||||
@foreach (string notification in item.Notifications) {
|
||||
<h5>@Html.Raw(notification)</h5>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
<p>@(item.Description == null ? T("(No description").Text : item.Description)</p>
|
||||
<ul class="pageStatus group">
|
||||
<li>@T("Last Updated: {0}", item.LastUpdated)</li>
|
||||
|
@@ -21,7 +21,7 @@
|
||||
<div id="installedBar" class="group">
|
||||
<h3>@T("Available")</h3>
|
||||
@if (Model.InstallThemes) {
|
||||
@Html.ActionLink(T("Install a theme from my computer").ToString(), "AddTheme", "PackagingServices", new { area = "Orchard.Packaging", returnUrl = HttpContext.Current.Request.RawUrl }, null)
|
||||
@Html.ActionLink(T("Install a theme from your computer").ToString(), "AddTheme", "PackagingServices", new { area = "Orchard.Packaging", returnUrl = HttpContext.Current.Request.RawUrl }, null)
|
||||
}
|
||||
</div>
|
||||
|
||||
|
@@ -9,5 +9,7 @@
|
||||
theme_advanced_buttons2: "",
|
||||
theme_advanced_buttons3: "",
|
||||
convert_urls: false,
|
||||
valid_elements: "*[*]"
|
||||
valid_elements: "*[*]",
|
||||
// shouldn't be needed due to the valid_elements setting, but TinyMCE would strip script.src without it.
|
||||
extended_valid_elements: "script[type|defer|src|language]"
|
||||
});
|
||||
|
@@ -2,7 +2,7 @@
|
||||
border:1px solid #D3D2D2;
|
||||
}
|
||||
|
||||
.bulk-actions {display:block;}
|
||||
/*.bulk-actions {display:block;}*/
|
||||
|
||||
button, .button, .button:link, .button:visited {
|
||||
background:#6a7b42;
|
||||
@@ -37,5 +37,7 @@ zoom:1;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
/*modules*/
|
||||
.iconThumbnail .extensionThumbnail {right:0px;}
|
||||
/*packaging module*/
|
||||
.iconThumbnail .extensionThumbnail {right:0px;}
|
||||
|
||||
.orchard-packaging .screenshotThumbnail .extensionThumbnail.column {position:static;}
|
@@ -359,8 +359,8 @@ ul.menuItems {margin:6px 0 0 0;}
|
||||
display: inline;
|
||||
font-size:15px;
|
||||
line-height:32px;
|
||||
}
|
||||
.localmenu li {
|
||||
z-index:10;
|
||||
position:relative;
|
||||
margin:0 2px;
|
||||
padding: 8px 18px 7px 18px;
|
||||
}
|
||||
|
Reference in New Issue
Block a user