diff options
author | David Phillips <david@sighup.nz> | 2016-11-03 00:03:44 +1300 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2016-11-03 00:03:44 +1300 |
commit | 47521f75180d9971fe94ad235ca2c695f9cb6f40 (patch) | |
tree | b7e3a3b383741a16d225aafbd45fe710b95e6858 /index.html | |
parent | d6bb5c09203ec2b2e2add38c11aab22fcbe3581c (diff) | |
parent | e6f634b9a8d6b12b2d6ec97e17ca218a0d9e43aa (diff) | |
download | petrichor-47521f75180d9971fe94ad235ca2c695f9cb6f40.tar.xz |
Merge branch 'develop'
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -20,23 +20,25 @@ <div id="message-container"> <span id="message-label"></span> </div> - <a id="mask" href="#" onclick="hide_element('power-confirm');hide_element('mask');"></a> + <a id="mask" href="#" onclick="hide_element('power-confirm');hide_element('mask');"> + <h1>Power Off?</h1> + </a> <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> |