mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00
Resolving CSS image URLs in the ThemePreview template
--HG-- branch : dev
This commit is contained in:
@@ -15,13 +15,13 @@ html.dyn #themepreview button.preview { display:none; }
|
||||
#themepreview button.cancel { float:right; }
|
||||
|
||||
/*Added styles below*/
|
||||
#themepreview { background: #000 url('../../Styles/Images/toolBarBackground.gif') repeat-x left top; font-size:15px; padding:5px; }
|
||||
#themepreview { background: #000 url('<%=ResolveUrl("../../Styles/Images/toolBarBackground.gif") %>') repeat-x left top; font-size:15px; padding:5px; }
|
||||
|
||||
/* Button styles */
|
||||
#themepreview button { font-size: 13px; padding:1px 4px; margin: 0 0 0 10px; text-align:center; color:#f1f1f1; border:1px solid; border-top-color:#191d1d; border-right-color:#494d4d; border-bottom-color:#494d4d; border-left-color:#171c1c; background:#2a2626 url('../../Styles/Images/toolBarActiveButtonBackground.gif') repeat-x left center; }
|
||||
|
||||
/* Hover for buttons */
|
||||
#themepreview button:hover { color:#fdcc64; border:1px #494d4d solid; cursor:pointer; background:#2a2626 url('../../Styles/Images/toolBarHoverButtonBackground.gif') repeat-x left center; }
|
||||
#themepreview button:hover { color:#fdcc64; border:1px #494d4d solid; cursor:pointer; background:#2a2626 url('<%=ResolveUrl("../../Styles/Images/toolBarHoverButtonBackground.gif") %>') repeat-x left center; }
|
||||
|
||||
</style>
|
||||
<div id="themepreview">
|
||||
|
Reference in New Issue
Block a user