mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Merge
--HG-- branch : 1.x
This commit is contained in:
@@ -123,6 +123,12 @@ Website: http://code.google.com/p/jquery-utils/
|
||||
Copyright: Copyright (c) Maxime Haineault (http://haineault.com)
|
||||
License: MIT
|
||||
|
||||
jQuery ScrollTo
|
||||
-----
|
||||
Website: http://flesler.blogspot.com
|
||||
Copyright: Copyright (c) 2007-2009 Ariel Flesler
|
||||
License: MIT
|
||||
|
||||
Log4Net
|
||||
-----
|
||||
Website: http://logging.apache.org/log4net/index.html
|
||||
|
||||
@@ -3,4 +3,14 @@ background-image:url(images/menu.content.png) !important;
|
||||
}
|
||||
.navicon-content:hover {
|
||||
background-position:0 -30px !important;
|
||||
}
|
||||
.section-new .menuItems a {
|
||||
background-image:url(images/menu.content.png);
|
||||
}
|
||||
/* subnav */
|
||||
#menu .menu-admin .selected .menuItems a {
|
||||
background-position:0 4px;
|
||||
}
|
||||
#menu .menu-admin .selected .menuItems a:hover, #menu .menu-admin .selected .menuItems .selected a {
|
||||
background-position:0 -28px;
|
||||
}
|
||||
@@ -4,12 +4,4 @@ background-image:url(images/menu.list.png) !important;
|
||||
}
|
||||
.navicon-lists:hover {
|
||||
background-position:0 -30px !important;
|
||||
}
|
||||
/* subnav */
|
||||
.section-new .subnavicon-list {
|
||||
background-position:0 6px !important;
|
||||
padding-left:20px !important;
|
||||
}
|
||||
.section-new .subnavicon-list:hover {
|
||||
background-position:0 -26px !important;
|
||||
}
|
||||
@@ -4,12 +4,4 @@ background-image:url(images/menu.page.png) !important;
|
||||
}
|
||||
.navicon-page:hover {
|
||||
background-position:0 -30px !important;
|
||||
}
|
||||
/* subnav */
|
||||
.section-new .subnavicon-page {
|
||||
background-position:0 6px !important;
|
||||
padding-left:20px !important;
|
||||
}
|
||||
.section-new .subnavicon-page:hover {
|
||||
background-position:0 -26px !important;
|
||||
}
|
||||
@@ -81,9 +81,13 @@
|
||||
<Content Include="Content\Admin\images\moveup.gif" />
|
||||
<Content Include="Content\Admin\images\movedown.gif" />
|
||||
<Content Include="Module.txt" />
|
||||
<Content Include="Styles\images\all-zones-on.gif" />
|
||||
<Content Include="Styles\images\all-zones.gif" />
|
||||
<Content Include="Styles\images\arrows.png" />
|
||||
<Content Include="Styles\images\eye.png" />
|
||||
<Content Include="Styles\images\menu.widgets.png" />
|
||||
<Content Include="Styles\images\widget-zones-on.gif" />
|
||||
<Content Include="Styles\images\widget-zones.gif" />
|
||||
<Content Include="Styles\menu.widgets-admin.css" />
|
||||
<Content Include="Styles\orchard-widgets-admin.css" />
|
||||
<Content Include="Views\Web.config" />
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
@@ -106,7 +106,7 @@ background-color:#e6f1c9;
|
||||
/*#widgets-layer-visibility li.widgets-this-layer:hover {
|
||||
border-color:#487328;
|
||||
}*/
|
||||
.widgets-listed li li.widgets-this-layer:hover, #widgets-layer-visibility li:hover, #widgets-layer-visibility li.on {
|
||||
.widgets-listed li li.widgets-this-layer:hover, #widgets-layer-visibility li:hover {
|
||||
/*border-color:#bfd3a7;*/
|
||||
border-color:#487328;
|
||||
}
|
||||
@@ -216,6 +216,18 @@ background-position:5px -17px;
|
||||
}
|
||||
|
||||
/* begin: switchable tweaks for admin/widgets */
|
||||
.orchard-widgets .switch-for-switchable .summary-view {
|
||||
background: url("images/widget-zones.gif") no-repeat left top;
|
||||
}
|
||||
.orchard-widgets .switch-for-switchable.summary-switched .summary-view {
|
||||
background:url("images/widget-zones-on.gif") no-repeat left top;
|
||||
}
|
||||
.orchard-widgets .switch-for-switchable .detail-view {
|
||||
background:url("images/all-zones.gif") no-repeat left top;
|
||||
}
|
||||
.orchard-widgets .switch-for-switchable.detail-switched .detail-view {
|
||||
background:url("images/all-zones-on.gif") no-repeat left top;
|
||||
}
|
||||
#widgets-placement .switch-for-switchable {
|
||||
margin:-32px 10px -2px 0;
|
||||
}
|
||||
|
||||
@@ -84,10 +84,10 @@ namespace Orchard.DisplayManagement.Descriptors.ShapePlacementStrategy {
|
||||
placement.ShapeType = value;
|
||||
break;
|
||||
case "alternate":
|
||||
placement.Alternates = new[] {value};
|
||||
placement.Alternates = placement.Alternates.Concat(new[] { value });
|
||||
break;
|
||||
case "wrapper":
|
||||
placement.Wrappers = new[] {value};
|
||||
placement.Wrappers = placement.Wrappers.Concat(new[] { value });
|
||||
break;
|
||||
default:
|
||||
// ignore unknown properties
|
||||
|
||||
Reference in New Issue
Block a user