You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gs...@apache.org on 2012/01/30 20:12:21 UTC

svn commit: r1237933 - in /lucene/cms/trunk: content/css/solr.css templates/solr.html

Author: gsingers
Date: Mon Jan 30 19:12:21 2012
New Revision: 1237933

URL: http://svn.apache.org/viewvc?rev=1237933&view=rev
Log:
try some different colors for the Solr site

Modified:
    lucene/cms/trunk/content/css/solr.css
    lucene/cms/trunk/templates/solr.html

Modified: lucene/cms/trunk/content/css/solr.css
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/css/solr.css?rev=1237933&r1=1237932&r2=1237933&view=diff
==============================================================================
--- lucene/cms/trunk/content/css/solr.css (original)
+++ lucene/cms/trunk/content/css/solr.css Mon Jan 30 19:12:21 2012
@@ -686,6 +686,7 @@ input.button {
     margin-left:20px;
 }
 
+
 /********************************
  Content Styles
 ********************************/
@@ -771,9 +772,15 @@ body#home #header #slides {
 	left: 0px;
 	width: 945px;
 	height: 260px;
-    background-color: #C4E0BA;
+    background-color: #EA8327;
+        /*#EA8327;*/
+}
+
+.sidenav h1{
+    color: #EA8327;
 }
 
+
 body#home #header #slides .slideshow {
 	width:945px;
 	height:260px;
@@ -795,7 +802,7 @@ body#home #header #slides .descwrapper {
 	top: 175px;
 	font-size: 14px;
 	line-height: 15px;
-    background-color: #2B2A38;
+    background-color: #888888;
 	width: 945px;
     height: 85px;
 }

Modified: lucene/cms/trunk/templates/solr.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/solr.html?rev=1237933&r1=1237932&r2=1237933&view=diff
==============================================================================
--- lucene/cms/trunk/templates/solr.html (original)
+++ lucene/cms/trunk/templates/solr.html Mon Jan 30 19:12:21 2012
@@ -19,7 +19,7 @@
       See the License for the specific language governing permissions and
       limitations under the License.
   -->
-  <link href="../css/global.css" rel="stylesheet" type="text/css">
+  <link href="../css/solr.css" rel="stylesheet" type="text/css">
   <title>Apache Lucene - {% block title %}{{ headers.title }}{% endblock %}</title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
   <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
@@ -113,38 +113,39 @@
 
 {% block sidebar %}
     <div id="sidebar">
-      {% filter markdown %}{% include "solrnav.mdtext" %}{% endfilter %}
-      <div class="status">
-        <div id="svn">
-          <h1>Latest SVN</h1>
-          <div class="status-item">
-          {% for e in svn.list %}
-          <a class="svn" href="http://svn.apache.org/viewvc?revision={{ e.revision }};view=revision">r{{ e.revision }}</a>
-          {{ e.message|safe|truncatewords_html:20 }} ({{
-          e.projects|safe }}) &mdash;
-          <a href="http://people.apache.org/committer-index.html#{{ e.author }}">{{ e.author }}</a>
-        {% endfor %}</div></div>
-        <div id="jira">
-          <h1>Latest JIRA</h1>
-          <div class="status-item">{% for e in jira.list %}
-          <a class="bug" href="{{ e.url }}">{{ e.title|safe }}</a><br/>
-          {{ e.content|safe|truncatewords_html:20 }}
-        {% endfor %}</div></div>
-        <div id="dev-mail">
-          <h1>Latest Dev</h1>
-          <div class="status-item">{% for e in dev.list %}
-          <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
-          <hr>
-          {% endfor %}</div>
-        </div>
-        <div id="solr-user-mail">
-          <h1>Latest Solr User</h1>
-          <div class="status-item">{% for e in solruser.list %}
-          <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
-          <hr>
-          {% endfor %}</div>
+      <span class="sidenav">{% filter markdown %}{% include "solrnav.mdtext" %}{% endfilter %}
+        <div class="status">
+          <div id="svn">
+            <h1>Latest SVN</h1>
+            <div class="status-item">
+            {% for e in svn.list %}
+            <a class="svn" href="http://svn.apache.org/viewvc?revision={{ e.revision }};view=revision">r{{ e.revision }}</a>
+            {{ e.message|safe|truncatewords_html:20 }} ({{
+            e.projects|safe }}) &mdash;
+            <a href="http://people.apache.org/committer-index.html#{{ e.author }}">{{ e.author }}</a>
+          {% endfor %}</div></div>
+          <div id="jira">
+            <h1>Latest JIRA</h1>
+            <div class="status-item">{% for e in jira.list %}
+            <a class="bug" href="{{ e.url }}">{{ e.title|safe }}</a><br/>
+            {{ e.content|safe|truncatewords_html:20 }}
+          {% endfor %}</div></div>
+          <div id="dev-mail">
+            <h1>Latest Dev</h1>
+            <div class="status-item">{% for e in dev.list %}
+            <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
+            <hr>
+            {% endfor %}</div>
+          </div>
+          <div id="solr-user-mail">
+            <h1>Latest Solr User</h1>
+            <div class="status-item">{% for e in solruser.list %}
+            <h4><a href="{{ e.url }}">{{ e.title }}</a></h4>
+            <hr>
+            {% endfor %}</div>
+          </div>
         </div>
-      </div>
+      </span>
     </div>
 {% endblock %}
 {% block privacy %}<a href="../privacy.html">Privacy Policy</a>{% endblock %}
\ No newline at end of file