Commit 29ee03a3 authored by Derek DeMoro's avatar Derek DeMoro Committed by derek

Fixing colors in plugins pages.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4176 b35dd754-fafc-0310-a699-88a17e54d16e
parent 89f83721
...@@ -151,7 +151,7 @@ ...@@ -151,7 +151,7 @@
function downloadPlugin(url, id) { function downloadPlugin(url, id) {
downloading = true; downloading = true;
document.getElementById(id + "-image").innerHTML = '<img src="images/working-16x16.gif" border="0"/>'; document.getElementById(id + "-image").innerHTML = '<img src="images/working-16x16.gif" border="0"/>';
document.getElementById(id).style.background = "#FFFFF7"; document.getElementById(id).style.background = "##915a15";
setTimeout("startDownload('" + url + "','" + id + "')", 5000); setTimeout("startDownload('" + url + "','" + id + "')", 5000);
} }
...@@ -409,13 +409,12 @@ ...@@ -409,13 +409,12 @@
<% } %> <% } %>
</td> </td>
</tr> </tr>
<tr id="<%= plugin.hashCode()%>-row" style="display:none;"> <tr id="<%= plugin.hashCode()%>-row" style="display:none;background: #E7FBDE;">
<td width="1%" class="line-bottom-border"> <td width="1%" class="line-bottom-border">
<img src="<%= plugin.getIcon()%>" width="16" height="16"/> <img src="<%= plugin.getIcon()%>" width="16" height="16"/>
</td> </td>
<td class="line-bottom-border"><%= plugin.getName()%> <fmt:message key="plugin.available.installation.success" /></td> <td colspan="6" nowrap class="line-bottom-border"><%= plugin.getName()%> <fmt:message key="plugin.available.installation.success" /></td>
<td colspan="5" class="line-bottom-border">&nbsp;</td> <td class="line-bottom-border" align="center">
<td class="line-bottom-border">
<img src="images/success-16x16.gif" height="16" width="16"/> <img src="images/success-16x16.gif" height="16" width="16"/>
</td> </td>
</tr> </tr>
...@@ -516,7 +515,7 @@ ...@@ -516,7 +515,7 @@
<% if(time != null) { %> <% if(time != null) { %>
<fmt:message key="plugin.available.autoupdate" /> <%= time%>. <fmt:message key="plugin.available.autoupdate" /> <%= time%>.
<% } %> <% } %>
<% if(!updateManager.isServiceEnabled()){%> <% if(updateManager.isServiceEnabled()){%>
<fmt:message key="plugin.available.autoupdate.on" /> <fmt:message key="plugin.available.autoupdate.on" />
<% } else { %> <% } else { %>
<fmt:message key="plugin.available.autoupdate.off" /> <fmt:message key="plugin.available.autoupdate.off" />
......
...@@ -434,7 +434,7 @@ else if ("false".equals(request.getParameter("deletesuccess"))) { %> ...@@ -434,7 +434,7 @@ else if ("false".equals(request.getParameter("deletesuccess"))) { %>
if (plugins.size() == 1) { if (plugins.size() == 1) {
%> %>
<tr> <tr>
<td align="center" colspan="8"><fmt:message key="plugin.admin.no_plugin"/></td> <td align="center" colspan="8" style="padding:5px;"><fmt:message key="plugin.admin.no_plugin"/></td>
</tr> </tr>
<% <%
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment