You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2005/08/29 22:25:44 UTC

svn commit: r264630 - in /incubator/roller/branches/roller_2.0/web: ./ WEB-INF/classes/ theme/ theme/images/ theme/sun/ theme/tan/ weblog/ website/

Author: snoopdave
Date: Mon Aug 29 13:25:05 2005
New Revision: 264630

URL: http://svn.apache.org/viewcvs?rev=264630&view=rev
Log:
allow editor theme to be specified by startup config property

Added:
    incubator/roller/branches/roller_2.0/web/theme/images/menutab-tl.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/images/menutab-tr.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/sun/logo.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/sun/menutab-sel.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/sun/menutab-unsel.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/sun/two-banner.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade-search.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/sun/two-togglegrey.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/tan/logo.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/tan/menutab-sel.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/tan/menutab-unsel.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/tan/two-banner.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/tan/two-bigbadge.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/tan/two-sidebarfade.gif   (with props)
    incubator/roller/branches/roller_2.0/web/theme/tan/two-togglegrey.gif   (with props)
Removed:
    incubator/roller/branches/roller_2.0/web/theme/images/menutab-tl.png
    incubator/roller/branches/roller_2.0/web/theme/images/menutab-tr.png
    incubator/roller/branches/roller_2.0/web/theme/sun/bsclogo.png
    incubator/roller/branches/roller_2.0/web/theme/sun/menutab-sel.png
    incubator/roller/branches/roller_2.0/web/theme/sun/menutab-unsel.png
    incubator/roller/branches/roller_2.0/web/theme/sun/two-banner.png
    incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade.png
    incubator/roller/branches/roller_2.0/web/theme/sun/two-togglegrey.png
    incubator/roller/branches/roller_2.0/web/theme/tan/menutab-sel.png
    incubator/roller/branches/roller_2.0/web/theme/tan/menutab-unsel.png
    incubator/roller/branches/roller_2.0/web/theme/tan/two-banner.png
    incubator/roller/branches/roller_2.0/web/theme/tan/two-bigbadge-shadow.png
    incubator/roller/branches/roller_2.0/web/theme/tan/two-bigbadge.png
    incubator/roller/branches/roller_2.0/web/theme/tan/two-sidebarfade.png
    incubator/roller/branches/roller_2.0/web/theme/tan/two-smallbadge.png
    incubator/roller/branches/roller_2.0/web/theme/tan/two-togglegrey.png
Modified:
    incubator/roller/branches/roller_2.0/web/WEB-INF/classes/roller.properties
    incubator/roller/branches/roller_2.0/web/main-sidebar.jsp
    incubator/roller/branches/roller_2.0/web/theme/banner.jsp
    incubator/roller/branches/roller_2.0/web/theme/head.jsp
    incubator/roller/branches/roller_2.0/web/theme/menu.css
    incubator/roller/branches/roller_2.0/web/theme/roller.css
    incubator/roller/branches/roller_2.0/web/theme/search.jsp
    incubator/roller/branches/roller_2.0/web/theme/sun/colors.css
    incubator/roller/branches/roller_2.0/web/theme/tan/colors.css
    incubator/roller/branches/roller_2.0/web/weblog/WeblogEditSidebar.jsp
    incubator/roller/branches/roller_2.0/web/weblog/WeblogQuerySidebar.jsp
    incubator/roller/branches/roller_2.0/web/website/YourWebsites.jsp

Modified: incubator/roller/branches/roller_2.0/web/WEB-INF/classes/roller.properties
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/WEB-INF/classes/roller.properties?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/WEB-INF/classes/roller.properties (original)
+++ incubator/roller/branches/roller_2.0/web/WEB-INF/classes/roller.properties Mon Aug 29 13:25:05 2005
@@ -251,6 +251,9 @@
 breadcrumbs.stacksize=3
 debug.memory.enabled=false
 
+# editor theme to be used (corresponds to directory name under /theme)
+editor.theme=tan
+
 #---------------------------------
 # settings for various plugins
 

Modified: incubator/roller/branches/roller_2.0/web/main-sidebar.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/main-sidebar.jsp?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/main-sidebar.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/main-sidebar.jsp Mon Aug 29 13:25:05 2005
@@ -1,6 +1,6 @@
 <%@ include file="/taglibs.jsp" %>
 
-<div class="sidebarfade">
+<div class="sidebarfade_hotblogs">
     <div class="menu-tr">
         <div class="menu-tl">
             <div class="sidebarBody">

Modified: incubator/roller/branches/roller_2.0/web/theme/banner.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/banner.jsp?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/banner.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/theme/banner.jsp Mon Aug 29 13:25:05 2005
@@ -1,8 +1,9 @@
 <%@ include file="/taglibs.jsp" %>
-
+<%
+String themename = RollerConfig.getProperty("editor.theme");
+String logourl = "/theme/" + themename + "/logo.gif";
+request.setAttribute("logourl", logourl);
+%>
 <div class="bannerBox">
-   <img src='<c:url value="/theme/tan/two-bigbadge-shadow.png" />' 
-      style="margin: 15px 0px 0px 15px;" />
-   <%-- <img src='<c:url value="/theme/sun/bsclogo.png" />' 
-           style="margin: 0px 0px 0px 0px;" align="left" /> --%>
+   <img class="bannerlogo" src='<c:url value="${logourl}" />' />
 </div>

Modified: incubator/roller/branches/roller_2.0/web/theme/head.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/head.jsp?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/head.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/theme/head.jsp Mon Aug 29 13:25:05 2005
@@ -7,7 +7,7 @@
 <link rel="stylesheet" type="text/css" media="all" href="<%= request.getContextPath() %>/theme/roller.css" />   
 <link rel="stylesheet" type="text/css" media="all" href="<%= request.getContextPath() %>/theme/menu.css" />
 <link rel="stylesheet" type="text/css" media="all" href="<%= request.getContextPath() %>/theme/calendar.css" />      
-<link rel="stylesheet" type="text/css" media="all" href="<%= request.getContextPath() %>/theme/tan/colors.css" />  
+<link rel="stylesheet" type="text/css" media="all" href="<%= request.getContextPath() %>/theme/<%= RollerConfig.getProperty("editor.theme") %>/colors.css" />  
 <script type="text/javascript" src="<%= request.getContextPath() %>/theme/scripts/roller.js"></script>   
 <script type="text/javascript" src="<%= request.getContextPath() %>/tags/calendar.js"></script>
 <script type="text/javascript" src="<%= request.getContextPath() %>/theme/scripts/overlib.js"><!-- overLIB (c) Erik Bosrup --></script>  

Added: incubator/roller/branches/roller_2.0/web/theme/images/menutab-tl.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/images/menutab-tl.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/images/menutab-tl.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/images/menutab-tr.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/images/menutab-tr.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/images/menutab-tr.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/roller/branches/roller_2.0/web/theme/menu.css
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/menu.css?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/menu.css (original)
+++ incubator/roller/branches/roller_2.0/web/theme/menu.css Mon Aug 29 13:25:05 2005
@@ -6,36 +6,15 @@
 
 div.menu-tl {
     padding: 5px 5px 0px 5px; margin: 0px; height:100%;
-    background: url("images/menutab-tl.png") no-repeat left top;    
+    background: url("images/menutab-tl.gif") no-repeat left top;    
     background-repeat: no-repeat;
 }
 div.menu-tr {
     margin: 0px; height:100%;
-    background: url("images/menutab-tr.png") no-repeat right top;    
+    background: url("images/menutab-tr.gif") no-repeat right top;    
     background-repeat: no-repeat;
 }
 
-/* style selected and unselected menu links*/
-
-td.menuTabSelected a:link, td.menuTabSelected a:visited, td.menuTabSelected a:hover, td.menuTabSelected a:active {
-    /* CUSTOMIZABLE color: black; */
-    text-decoration: none;
-    font-weight: bold;
-}
-td.menuTabUnselected a:link, td.menuTabUnselected a:visited, td.menuTabUnselected a:hover, td.menuTabUnselected a:active {
-    /* CUSTOMIZABLE color: black; */
-    text-decoration: none;
-}
-a.menuItemSelected:link, a.menuItemSelected:visited, a.menuItemSelected:hover, a.menuItemSelected:active {
-    /* CUSTOMIZABLE color: black; */
-    text-decoration: none;
-    font-weight: bold;
-}
-a.menuItemUnselected:link, a.menuItemUnselected:visited, a.menuItemUnselected:hover, a.menuItemUnselected:active {
-    /* CUSTOMIZABLE color: black; */
-    text-decoration: none;
-}
-
 /* ----------------------------------------------------------------------
 Menu tab table (the tabs)
 ---------------------------------------------------------------------- */
@@ -44,17 +23,17 @@
     height: 24px;
 }
 td.menuTabSeparator {
-    width: 10px;
+    width: 4px;
 }  
 td.menuTabSelected {
     padding: 0px; 
     margin: 0px;
-    /* CUSTOMIZABLE background: url("images/menutab-sel.png"); */
+    /* CUSTOMIZABLE background: url("images/menutab-sel.gif"); */
 }
 td.menuTabUnselected {
     padding: 0px 0px 0px 0px; 
     margin: 0px 0px 0px 0px;
-    /* CUSTOMIZABLE background: url("images/menutab-unsel.png"); */
+    /* CUSTOMIZABLE background: url("images/menutab-unsel.gif"); */
 }
 
 /* ----------------------------------------------------------------------

Modified: incubator/roller/branches/roller_2.0/web/theme/roller.css
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/roller.css?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/roller.css (original)
+++ incubator/roller/branches/roller_2.0/web/theme/roller.css Mon Aug 29 13:25:05 2005
@@ -6,24 +6,13 @@
 ====================================================================== */
 
 .bannerBox {
-    /* CUSTOMIZABLE background: url("images/two-banner.png") repeat-x top; */
     height: 78px; 
     width: 100%;
 }
 .bannerStatusBox {
     height: 25px; 
     width: 100%;
-    /* CUSTOMIZABLE background: #ad3431; */
 }
-/* 
-CUSTOMIZABLE
-.bannerStatusBox a {
-}
-.bannerStatusBox a:link {
-}
-.bannerStatusBox a:visited {
-}
-*/
 .bannerLeft {
     float: left; 
     padding: 4px 15px 4px 15px;
@@ -32,10 +21,9 @@
     float: right; 
     padding: 4px 15px 4px 15px;
 }
-.sidebarfade {
+.sidebarfade, .sidebarfade_hotblogs, .sidebarfade_search, {
     padding: 0px; 
     width: 100%;
-    /* CUSTOMIZABLE background: url("images/two-sidebarfade.png") repeat-x top; */
 }
 .sidebarfadeBody {
     padding: 0px 5px 0px 5px; 
@@ -72,16 +60,14 @@
 }
 h2 {
     background: transparent;
-    /* CUSTOMIZABLE color: #ad3537; */
     font-size: large;
     font-weight: bold;
 }
 h3 {
     background: transparent;
-    /* CUSTOMIZABLE color: #ad3537; */
     font-weight: bold;
 }
-div.sidebarfade h3 {
+div.sidebarfade h3, .sidebarfade_hotblogs h3, .sidebarfade_search h3 {
     margin: 0px; padding: 0px; 
 }
 img {
@@ -95,24 +81,19 @@
     margin-right: 5px;
 }
 a {
-    background: transparent;
     text-decoration: none;
 }
 a:link {
-    background: transparent;
-    /* CUSTOMIZABLE color: #ad3537; */
-    text-decoration: underline;
+    text-decoration: none;
 }
 a:visited {
-    background: transparent;
-    /* CUSTOMIZABLE color: #ad3537; */
-    text-decoration: underline;
+    text-decoration: none;
 }
 a:hover {
-    text-decoration: none;
+    text-decoration: underline;
 }
 a:active {
-    text-decoration: underline overline;
+    text-decoration: underline;
 }
 
 /* ----------------------------------------------------------------------
@@ -212,13 +193,11 @@
 }
 table.rollertable th, table.rollertable th {
     border: 1px solid #ccc;
-    /* CUSTOMIZABLE background: #c6ab74; */
 }
 table.rollertable th {
     color: white;
 }
 table.rollertable td, table.rollertable tbody td {
-    /* CUSTOMIZABLE border: 1px solid #c6ab74; */
     vertical-align: top;
 }
 table.rollertable tbody td {
@@ -422,30 +401,25 @@
 div.entryTitleBox {
    padding: 4px;
    margin: 4px 0px 4px 0px;
-   /* CUSTOMIZABLE background: #c6ab74; */
-   /* CUSTOMIZABLE color: white; */
    font-size: medium;
 }
 div.entryBox {
    padding: 4px;
    margin: 4px 0px 4px 0px;
-   /* CUSTOMIZABLE border: 1px #c6ab74 solid; */
+   /* line-height: 1.2em; */
 }
 div.entryBoxPinned {
    padding: 4px;
    margin: 4px 0px 4px 0px;
-   /* CUSTOMIZABLE border: 1px #c0c0c0 solid; */
-   /* CUSTOMIZABLE background: #e5e5e5; */
 }
 a.entryTitle, a:active.entryTitle, a:visited.entryTitle {
-   font-size: medium;
+   font-size: small;
    font-weight: bold;
-   /* CUSTOMIZABLE color: #ad3537; */
 }
 span.hotBlogs, a.hotBlogs, a:active.hotBlogs, a:visited.hotBlogs, ul.hotBlogs {
    font-size: small;
-   padding-left:0px;
-   list-style-type:none
+   padding-left: 0px;
+   list-style-type: none
 }
 span.entryDetails, a.entryDetails, a:active.entryDetails, a:visited.entryDetails {
    font-size: small;
@@ -490,7 +464,6 @@
 }
 div.centerTitle {
     border: 1px solid #ccc;
-    /* CUSTOMIZABLE background: #c6ab74; */
     color: black;
     font-weight: bolder;
     font-size: large;
@@ -498,12 +471,10 @@
 }
 div.control {
     width: 100%; 
-    /* CUSTOMIZABLE background: #c6ab74; */
 }
 div.controlToggle {
     width: 100%; 
     height: 20px;
-    /* background: url("images/two-togglegrey.png") repeat-x top; */
 }
 .control input { 
     margin: 5px; 

Modified: incubator/roller/branches/roller_2.0/web/theme/search.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/search.jsp?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/search.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/theme/search.jsp Mon Aug 29 13:25:05 2005
@@ -1,6 +1,6 @@
 <%@ include file="/taglibs.jsp" %>
 
-<div class="sidebarfade">
+<div class="sidebarfade_search">
     <div class="menu-tr">
         <div class="menu-tl">
             <div class="sidebarBody">
@@ -34,3 +34,5 @@
         </div>
     </div>
 </div>
+
+<br />

Modified: incubator/roller/branches/roller_2.0/web/theme/sun/colors.css
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/colors.css?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/sun/colors.css (original)
+++ incubator/roller/branches/roller_2.0/web/theme/sun/colors.css Mon Aug 29 13:25:05 2005
@@ -4,34 +4,39 @@
 /* ------------------------------------------------------------------------ */
 /* add colors and images to roller.css */
 
+.bannerlogo {
+    margin: 0px 0px 0px 0px;
+}
 .bannerBox {
-    background: url("two-banner.png") repeat-x top;
+    background: url("two-banner.gif") repeat-x top;
+    border-bottom: 2px black solid;
 }
 .sidebarfade {
-    background: url("two-sidebarfade.png") repeat-x top;
+    background: url("two-sidebarfade.gif") repeat-x bottom;
 }
-.bannerStatusBox {
-    background: #dee7e7;
-    color: black;
-}
-.bannerStatusBox a {
-    color: black;
+.sidebarfade_hotblogs {
+    background: #dee7ef;
 }
-.bannerStatusBox a:link {
-    color: black;
+.sidebarfade_search {
+    background: url("two-sidebarfade-search.gif") repeat-x bottom;
 }
-.bannerStatusBox a:visited {
-    color: black;
+.bannerStatusBox {
+    color: #31556b;
+    background: #dee7ef;
 }
 h1 {
     color: #e77100;
 }
 h2 {
-    color: black;
+    color: #e77100;
 }
 h3 {
     color: black;
 }
+p.subtitle {
+    color: #505050;
+    font-size: 120%;
+}
 a:link {
     color: #31556b;
 }
@@ -54,34 +59,42 @@
     background: #dee7ef; 
 }
 div.controlToggle {
-    background: url("two-togglegrey.png") repeat-x top; 
+    background: url("two-togglegrey.gif") repeat-x top; 
 }
 div.entryTitleBox {
-   background: red; 
    color: white; 
 }
 div.entryBox {
-   border: 1px red solid;
+   border-bottom: 1px grey solid;
+   background: #e7e3e7;
+   margin: 0px 0px 0px 0px;
+}
+div.entryTitleBox {
+   padding: 4px;
+   font-size: medium;
 }
 div.entryBoxPinned {
    background: #e5e5e5; 
    border: 1px #c0c0c0 solid;
 }
 a.entryTitle, a:active.entryTitle, a:visited.entryTitle {
-   color: #ad3537; 
+   color: #52829c; 
 }
 div.yourWeblogBox {
-   border-top: 1px #ad3537 solid;
+   border-top: 1px grey solid;
+}
+td.actions {
+    background: #e9e9e9;
 }
 
 /* ------------------------------------------------------------------------ */
 /* add colors and iamges to menu.css */
 
 td.menuTabSelected {
-    background: url("menutab-sel.png");
+    background: url("menutab-sel.gif");
 }
 td.menuTabUnselected {
-    background: url("menutab-unsel.png");
+    background: url("menutab-unsel.gif");
 }
 .menuItemTable {
     background-color: #52829c;
@@ -91,7 +104,7 @@
     color: white;
 }
 td.menuTabUnselected a:link, td.menuTabUnselected a:visited, td.menuTabUnselected a:hover, td.menuTabUnselected a:active {
-    color: white;
+    color: #52829c;
 }
 a.menuItemSelected:link, a.menuItemSelected:visited, a.menuItemSelected:hover, a.menuItemSelected:active {
     color: white;

Added: incubator/roller/branches/roller_2.0/web/theme/sun/logo.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/logo.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/sun/logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/sun/menutab-sel.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/menutab-sel.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/sun/menutab-sel.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/sun/menutab-unsel.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/menutab-unsel.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/sun/menutab-unsel.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/sun/two-banner.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/two-banner.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/sun/two-banner.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade-search.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade-search.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade-search.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/sun/two-sidebarfade.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/sun/two-togglegrey.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/sun/two-togglegrey.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/sun/two-togglegrey.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/roller/branches/roller_2.0/web/theme/tan/colors.css
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/colors.css?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/tan/colors.css (original)
+++ incubator/roller/branches/roller_2.0/web/theme/tan/colors.css Mon Aug 29 13:25:05 2005
@@ -4,11 +4,21 @@
 /* ------------------------------------------------------------------------ */
 /* add colors and images to roller.css */
 
+.bannerlogo {
+    margin: 15px 0px 0px 15px;
+}
+
 .bannerBox {
-    background: url("two-banner.png") repeat-x top;
+    background: url("two-banner.gif") repeat-x top;
 }
 .sidebarfade {
-    background: url("two-sidebarfade.png") repeat-x bottom;
+    background: url("two-sidebarfade.gif") repeat-x bottom;
+}
+.sidebarfade_hotblogs {
+    background: url("two-sidebarfade.gif") repeat-x bottom;
+}
+.sidebarfade_search {
+    background: url("two-sidebarfade.gif") repeat-x bottom;
 }
 .bannerStatusBox {
     background: #ad3431;
@@ -56,7 +66,7 @@
     background: #c6ab74; 
 }
 div.controlToggle {
-    background: url("two-togglegrey.png") repeat-x top; 
+    background: url("two-togglegrey.gif") repeat-x top; 
 }
 div.entryTitleBox {
    background: #c6ab74; 
@@ -82,10 +92,10 @@
 /* add colors and iamges to menu.css */
 
 td.menuTabSelected {
-    background: url("menutab-sel.png") repeat-x;
+    background: url("menutab-sel.gif") repeat-x;
 }
 td.menuTabUnselected {
-    background: url("menutab-unsel.png") repeat-x;
+    background: url("menutab-unsel.gif") repeat-x;
 }
 .menuItemTable {
     background-color: #c6ab74;

Added: incubator/roller/branches/roller_2.0/web/theme/tan/logo.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/logo.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/tan/logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/tan/menutab-sel.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/menutab-sel.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/tan/menutab-sel.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/tan/menutab-unsel.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/menutab-unsel.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/tan/menutab-unsel.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/tan/two-banner.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/two-banner.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/tan/two-banner.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/tan/two-bigbadge.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/two-bigbadge.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/tan/two-bigbadge.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/tan/two-sidebarfade.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/two-sidebarfade.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/tan/two-sidebarfade.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/roller/branches/roller_2.0/web/theme/tan/two-togglegrey.gif
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/tan/two-togglegrey.gif?rev=264630&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/roller/branches/roller_2.0/web/theme/tan/two-togglegrey.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: incubator/roller/branches/roller_2.0/web/weblog/WeblogEditSidebar.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/weblog/WeblogEditSidebar.jsp?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/weblog/WeblogEditSidebar.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/weblog/WeblogEditSidebar.jsp Mon Aug 29 13:25:05 2005
@@ -75,6 +75,9 @@
     </roller:link>                    
     <br />
 </c:forEach>
+
+<br />
+<br />
                 
             </div>
         </div>

Modified: incubator/roller/branches/roller_2.0/web/weblog/WeblogQuerySidebar.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/weblog/WeblogQuerySidebar.jsp?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/weblog/WeblogQuerySidebar.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/weblog/WeblogQuerySidebar.jsp Mon Aug 29 13:25:05 2005
@@ -102,6 +102,9 @@
 
 </html:form>
 
+<br />
+<br />
+
             </div>
         </div>
     </div>

Modified: incubator/roller/branches/roller_2.0/web/website/YourWebsites.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/website/YourWebsites.jsp?rev=264630&r1=264629&r2=264630&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/website/YourWebsites.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/website/YourWebsites.jsp Mon Aug 29 13:25:05 2005
@@ -108,7 +108,7 @@
 
                    </td>
 
-                   <td width="20%" align="left">
+                   <td class="actions" width="20%" align="left">
 
                            <fmt:message key='yourWebsites.actions' />                       
                            <br />