You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2014/06/04 09:53:16 UTC

svn commit: r1599961 - in /manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp: editjob.jsp style.css

Author: kwright
Date: Wed Jun  4 07:53:15 2014
New Revision: 1599961

URL: http://svn.apache.org/r1599961
Log:
Adjust styles just a bit so job tabs are easier to understand

Modified:
    manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp
    manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/style.css

Modified: manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp?rev=1599961&r1=1599960&r2=1599961&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp (original)
+++ manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/editjob.jsp Wed Jun  4 07:53:15 2014
@@ -739,7 +739,22 @@
 <%
 	}
 %>
-		      <td class="remaindersequencetab"></td>
+		      <td class="remaindersequencetab" rowspan="2">
+<%
+	if (description.length() > 0)
+	{
+%>
+			  <nobr><%=Messages.getBodyString(pageContext.getRequest().getLocale(),"editjob.EditJob")%> '<%=org.apache.manifoldcf.ui.util.Encoder.bodyEscape(description)%>'</nobr>
+<%
+	}
+	else
+	{
+%>
+		          <nobr><%=Messages.getBodyString(pageContext.getRequest().getLocale(),"editjob.EditaJob")%></nobr>
+<%
+	}
+%>
+		      </td>
 	      </tr>
 	      <tr class="tabrow">
 <%
@@ -761,23 +776,8 @@
 <%
 		}
 	}
+	// Missing remainder tab ON PURPOSE -- comes from rowspan=2 tab above
 %>
-		      <td class="remaindertab">
-<%
-	if (description.length() > 0)
-	{
-%>
-			  <nobr><%=Messages.getBodyString(pageContext.getRequest().getLocale(),"editjob.EditJob")%> '<%=org.apache.manifoldcf.ui.util.Encoder.bodyEscape(description)%>'</nobr>
-<%
-	}
-	else
-	{
-%>
-		          <nobr><%=Messages.getBodyString(pageContext.getRequest().getLocale(),"editjob.EditaJob")%></nobr>
-<%
-	}
-%>
-		      </td>
 	      </tr>
 	      <tr class="tabbodyrow">
 		<td class="tabbody" colspan='<%=Integer.toString(tabsArray.size()+1)%>'>

Modified: manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/style.css
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/style.css?rev=1599961&r1=1599960&r2=1599961&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/style.css (original)
+++ manifoldcf/branches/CONNECTORS-946/framework/crawler-ui/src/main/webapp/style.css Wed Jun  4 07:53:15 2014
@@ -47,9 +47,9 @@ body
 
 .blanksequencetab
 {
-    background: #f8f8f8;
+    background: #f0f0f0;
     border-style: solid;
-    border-width: 1px 0 0 2px;
+    border-width: 1px 0 0 1px;
     border-color: #ccc #ccc #229ddb #ccc;
     margin: 0;
     padding: 2px 10px 3px 10px;
@@ -61,7 +61,7 @@ body
 {
     background: #f8f8f8;
     border-style: solid;
-    border-width: 1px 1px 0 2px;
+    border-width: 1px 1px 0 1px;
     border-color: #ccc #ccc #229ddb #ccc;
     margin: 0;
     padding: 2px 10px 3px 10px;
@@ -73,14 +73,15 @@ body
 .remaindersequencetab
 {
     width: 100%;
-    background: #f8f8f8;
+    background: #f0f0f0;
     border-style: solid;
-    border-width: 1px 1px 0 0;
-    border-color: #ccc #ccc;
-    padding: 2px 10px 3px 10px;
-    height: 8px;
+    border-width: 1px 1px 1px 0;
+    border-color: #ccc #ccc #229ddb;
+    padding: 18px 10px 2px 10px;
+    height: 28px;
     vertical-align: top;
     text-align: right;
+	font-size: 12px;
     color: #555;
 }
 
@@ -124,7 +125,7 @@ body
 .remaindertab
 {
     width: 100%;
-    background: #f8f8f8;
+    background: #f0f0f0;
     border-style: solid;
     border-width: 1px 1px 1px 0;
     border-color: #ccc #ccc #229ddb;