--HG--
branch : 1.x
This commit is contained in:
Suha Can
2011-03-31 15:32:47 -07:00
11 changed files with 35 additions and 19 deletions

View File

@@ -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

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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;
}

View File

@@ -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

View File

@@ -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;
}

View File

@@ -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