aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-03-15 22:30:57 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2016-03-15 22:30:57 +1300
commit60d38ddd14dde4252a0499cfc87ef7c081663827 (patch)
treedf1466774be0c663acf89249c909a1e6026b451a
parent1ffe28ca0ef8eab3dc1528d4f035377591935466 (diff)
downloadpetrichor-60d38ddd14dde4252a0499cfc87ef7c081663827.tar.xz
Remove references to non-existent 'button' class
-rw-r--r--index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/index.html b/index.html
index 6b1b34d..b5e7068 100644
--- a/index.html
+++ b/index.html
@@ -24,19 +24,19 @@
<div id="power-confirm" onclick="document.getElementById('mask').click();">
<ul>
<li>
- <a class="button" href="#" onclick="lightdm.shutdown();">
+ <a href="#" onclick="lightdm.shutdown();">
<div class="icon" id="icon-shutdown"></div>
<span>Power off</span>
</a>
</li>
<li>
- <a class="button" href="#" onclick="lightdm.restart();">
+ <a href="#" onclick="lightdm.restart();">
<div class="icon" id="icon-reboot"></div>
<span>Restart</span>
</a>
</li>
<li>
- <a class="button" href="#" onclick="hide_element('power-confirm');hide_element('mask');">
+ <a href="#" onclick="hide_element('power-confirm');hide_element('mask');">
<div class="icon" id="icon-cancel"></div>
<span>Cancel</span>
</a>