diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-03-15 22:30:57 +1300 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2016-03-15 22:30:57 +1300 |
commit | 60d38ddd14dde4252a0499cfc87ef7c081663827 (patch) | |
tree | df1466774be0c663acf89249c909a1e6026b451a /index.html | |
parent | 1ffe28ca0ef8eab3dc1528d4f035377591935466 (diff) | |
download | petrichor-60d38ddd14dde4252a0499cfc87ef7c081663827.tar.xz |
Remove references to non-existent 'button' class
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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> |