You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ry...@apache.org on 2011/05/26 20:09:14 UTC

svn commit: r1128012 - in /lucene/dev/trunk/solr/src/webapp/web: css/screen.css index.jsp

Author: ryan
Date: Thu May 26 18:09:14 2011
New Revision: 1128012

URL: http://svn.apache.org/viewvc?rev=1128012&view=rev
Log:
SOLR-2399: fix header

Modified:
    lucene/dev/trunk/solr/src/webapp/web/css/screen.css
    lucene/dev/trunk/solr/src/webapp/web/index.jsp

Modified: lucene/dev/trunk/solr/src/webapp/web/css/screen.css
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/src/webapp/web/css/screen.css?rev=1128012&r1=1128011&r2=1128012&view=diff
==============================================================================
--- lucene/dev/trunk/solr/src/webapp/web/css/screen.css (original)
+++ lucene/dev/trunk/solr/src/webapp/web/css/screen.css Thu May 26 18:09:14 2011
@@ -71,7 +71,7 @@ ul
     position: relative;
 }
 
-#header a
+#header #solr
 {
     background-image: url( ../img/solr.png );
     display: block;
@@ -79,28 +79,27 @@ ul
     width: 200px;
 }
 
-#header a span
+#header #solr span
 {
     display: none;
 }
 
-
 #header #wip-notice
 {
+    background-color: #eceffa;
+    background-image: url( ../img/ico/information-button.png );
+    background-position: 8px 7px;
+    border: 1px solid #4465cb;
+    padding: 5px 10px;
+    padding-left: 31px;
     left: 212px;
     position: absolute;
-    top: 10px;
+    top: 0;
 }
 
 #header #wip-notice a
 {
-    background-color: #eceffa;
-    background-image: url( ../img/ico/information-button.png );
-    background-position: 8px 7px;
-    border: 1px solid #4465cb;
     display: block;
-    padding: 5px 10px;
-    padding-left: 31px;
 }
 
 #header #wip-notice span

Modified: lucene/dev/trunk/solr/src/webapp/web/index.jsp
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/src/webapp/web/index.jsp?rev=1128012&r1=1128011&r2=1128012&view=diff
==============================================================================
--- lucene/dev/trunk/solr/src/webapp/web/index.jsp (original)
+++ lucene/dev/trunk/solr/src/webapp/web/index.jsp Thu May 26 18:09:14 2011
@@ -31,16 +31,15 @@
     
         <div id="header">
             
-            <a href="./"><span>Apache SOLR</span></a>
+            <a href="./" id="solr"><span>Apache SOLR</span></a>
 
             <div id="wip-notice">
-                <a href="https://issues.apache.org/jira/browse/SOLR-2399">
-                    This UI is currently under development.<br>
-                    Bugs/Requests/Suggestions: <span>SOLR-2399</span>
-                </a>
+                <p>This interface is work in progress. It works best in Chrome.</p>
+                <p><a href="admin/">Use the <span>old admin interface</span> if there are problems with this one.</a></p>
+                <p><a href="https://issues.apache.org/jira/browse/SOLR-2399">Bugs/Requests/Suggestions: <span>SOLR-2399</span></a></p>
             </div>
-            
-            <p id="environment">&nbsp;</p>
+
+	    <p id="environment">&nbsp;</p>
 
         </div>