From: Michael Rasmussen Date: Wed, 3 Jun 2015 21:19:10 +0000 (+0200) Subject: Navigate using icons X-Git-Url: http://git.datanom.net/qtadmin.git/commitdiff_plain/a0aacaacc4fdf4b96bdaaf03f7b222681a31668a Navigate using icons --- diff --git a/index.php b/index.php index f5b3e65..4d24a35 100644 --- a/index.php +++ b/index.php @@ -71,10 +71,10 @@ if ($pageNum > 1) { $page = $pageNum - 1; - $prev = " \"Previous\""; - $first = " \"First\" "; + $prev = "[[\"Previous\"]"; + $first = "[\"First\"]"; } else { $prev = ' '; // we're on page one, don't print previous link $first = ' '; // nor the first page link @@ -82,10 +82,10 @@ if ($pageNum < $maxPage) { $page = $pageNum + 1; - $next = " \"Next\""; - $last = "\"Last\" "; + $next = "[[\"Next\"]"; + $last = "[\"Last\"]"; } else { $next = ' '; // we're on the last page, don't print next link $last = ' '; // nor the last page link diff --git a/pics/go-first.png b/pics/go-first.png index b43e4b3..718cd36 100644 Binary files a/pics/go-first.png and b/pics/go-first.png differ diff --git a/pics/go-last.png b/pics/go-last.png index 2d603cd..578e66f 100644 Binary files a/pics/go-last.png and b/pics/go-last.png differ diff --git a/pics/go-next.png b/pics/go-next.png index af1b730..1ae0411 100644 Binary files a/pics/go-next.png and b/pics/go-next.png differ diff --git a/pics/go-previous.png b/pics/go-previous.png index 01b7cf4..12fed7f 100644 Binary files a/pics/go-previous.png and b/pics/go-previous.png differ