summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2011-10-06 11:35:41 +0100
committerAnika Henke <anika@selfthinker.org>2011-10-06 11:35:41 +0100
commit0ef918b64a54c170d4b6621a297b19de6a11749c (patch)
tree8a61401c8835e2fc820f3f62793b0d82b07f80e0
parent5f153e6cbdbdd4632e7f0ffd57ed90c32cbcf33e (diff)
downloadrpg-0ef918b64a54c170d4b6621a297b19de6a11749c.tar.gz
rpg-0ef918b64a54c170d4b6621a297b19de6a11749c.tar.bz2
added missing icons (and moved revert action higher up)
-rwxr-xr-xcss/design.css3
-rw-r--r--images/pagetools/pencil_add.pngbin0 -> 742 bytes
-rw-r--r--images/pagetools/site_backup_and_restore.pngbin0 -> 745 bytes
-rwxr-xr-xmain.php2
4 files changed, 4 insertions, 1 deletions
diff --git a/css/design.css b/css/design.css
index 19c64be2a..4259e6071 100755
--- a/css/design.css
+++ b/css/design.css
@@ -186,6 +186,9 @@
#dokuwiki__pagetools ul li a.draft {
background-image: url(images/pagetools/inbox-document-text.png);
}
+#dokuwiki__pagetools ul li a.revert {
+ background-image: url(images/pagetools/site_backup_and_restore.png);
+}
#dokuwiki__pagetools ul li a.source {
background-image: url(images/pagetools/page_code.png);
}
diff --git a/images/pagetools/pencil_add.png b/images/pagetools/pencil_add.png
new file mode 100644
index 000000000..edbebeed0
--- /dev/null
+++ b/images/pagetools/pencil_add.png
Binary files differ
diff --git a/images/pagetools/site_backup_and_restore.png b/images/pagetools/site_backup_and_restore.png
new file mode 100644
index 000000000..467e441b0
--- /dev/null
+++ b/images/pagetools/site_backup_and_restore.png
Binary files differ
diff --git a/main.php b/main.php
index 367fd5e7f..91e012b1b 100755
--- a/main.php
+++ b/main.php
@@ -140,10 +140,10 @@ $showTools = !tpl_getConf('hideTools') || ( tpl_getConf('hideTools') && $_SERVER
<ul>
<?php
tpl_action('edit', 1, 'li');
+ tpl_action('revert', 1, 'li');
tpl_action('history', 1, 'li');
tpl_action('backlink', 1, 'li');
tpl_action('subscribe', 1, 'li');
- tpl_action('revert', 1, 'li');
tpl_action('top', 1, 'li');
?>
</ul>