Console: Nicer "move" icons on /configsidebar, add tooltips

Icons from silk, rotated, same license as before
This commit is contained in:
zzz
2015-06-02 16:30:35 +00:00
parent 06104118d0
commit 272f63dbbd
5 changed files with 24 additions and 4 deletions

View File

@@ -921,12 +921,22 @@ public class SummaryHelper extends HelperBase {
.append(i)
.append("_top\"><img alt=\"")
.append(_("Top"))
.append("\" src=\"" + imgPath + "move_top.png\" /></button>");
.append("\" src=\"")
.append(imgPath)
.append("move_top.png")
.append("\" title=\"")
.append(_("Move to top"))
.append("\"/></button>");
buf.append("<button type=\"submit\" class=\"buttonUp\" name=\"action\" value=\"move_")
.append(i)
.append("_up\"><img alt=\"")
.append(_("Up"))
.append("\" src=\"" + imgPath + "move_up.png\" /></button>");
.append("\" src=\"")
.append(imgPath)
.append("move_up.png")
.append("\" title=\"")
.append(_("Move up"))
.append("\"/></button>");
}
buf.append("</td><td align=\"left\">");
if (i < sections.size() - 1) {
@@ -934,12 +944,22 @@ public class SummaryHelper extends HelperBase {
.append(i)
.append("_down\"><img alt=\"")
.append(_("Down"))
.append("\" src=\"" + imgPath + "move_down.png\" /></button>");
.append("\" src=\"")
.append(imgPath)
.append("move_down.png")
.append("\" title=\"")
.append(_("Move down"))
.append("\"/></button>");
buf.append("<button type=\"submit\" class=\"buttonBottom\" name=\"action\" value=\"move_")
.append(i)
.append("_bottom\"><img alt=\"")
.append(_("Bottom"))
.append("\" src=\"" + imgPath + "move_bottom.png\" /></button>");
.append("\" src=\"")
.append(imgPath)
.append("move_bottom.png")
.append("\" title=\"")
.append(_("Move to bottom"))
.append("\"/></button>");
}
buf.append("</td></tr>\n");
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 326 B

After

Width:  |  Height:  |  Size: 836 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 B

After

Width:  |  Height:  |  Size: 822 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 325 B

After

Width:  |  Height:  |  Size: 836 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 290 B

After

Width:  |  Height:  |  Size: 819 B