diff --git a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java index 0509d6f37..86c9daaea 100644 --- a/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java +++ b/apps/routerconsole/java/src/net/i2p/router/web/SummaryHelper.java @@ -921,12 +921,22 @@ public class SummaryHelper extends HelperBase { .append(i) .append("_top\">\"")"); + .append("\" src=\"") + .append(imgPath) + .append("move_top.png") + .append("\" title=\"") + .append(_("Move to top")) + .append("\"/>"); buf.append(""); + .append("\" src=\"") + .append(imgPath) + .append("move_up.png") + .append("\" title=\"") + .append(_("Move up")) + .append("\"/>"); } buf.append(""); if (i < sections.size() - 1) { @@ -934,12 +944,22 @@ public class SummaryHelper extends HelperBase { .append(i) .append("_down\">\"")"); + .append("\" src=\"") + .append(imgPath) + .append("move_down.png") + .append("\" title=\"") + .append(_("Move down")) + .append("\"/>"); buf.append(""); + .append("\" src=\"") + .append(imgPath) + .append("move_bottom.png") + .append("\" title=\"") + .append(_("Move to bottom")) + .append("\"/>"); } buf.append("\n"); } diff --git a/installer/resources/themes/console/light/images/move_bottom.png b/installer/resources/themes/console/light/images/move_bottom.png index 577ae3352..bc0ecd8d7 100644 Binary files a/installer/resources/themes/console/light/images/move_bottom.png and b/installer/resources/themes/console/light/images/move_bottom.png differ diff --git a/installer/resources/themes/console/light/images/move_down.png b/installer/resources/themes/console/light/images/move_down.png index d82b5d45d..4c9d311de 100644 Binary files a/installer/resources/themes/console/light/images/move_down.png and b/installer/resources/themes/console/light/images/move_down.png differ diff --git a/installer/resources/themes/console/light/images/move_top.png b/installer/resources/themes/console/light/images/move_top.png index 55192cf79..6a05a35ea 100644 Binary files a/installer/resources/themes/console/light/images/move_top.png and b/installer/resources/themes/console/light/images/move_top.png differ diff --git a/installer/resources/themes/console/light/images/move_up.png b/installer/resources/themes/console/light/images/move_up.png index e512dbdc2..47f79c108 100644 Binary files a/installer/resources/themes/console/light/images/move_up.png and b/installer/resources/themes/console/light/images/move_up.png differ