diff options
Diffstat (limited to 'html/display_panel/content/display-panel.html')
-rw-r--r-- | html/display_panel/content/display-panel.html | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/html/display_panel/content/display-panel.html b/html/display_panel/content/display-panel.html index 5f5ed18..79126a0 100644 --- a/html/display_panel/content/display-panel.html +++ b/html/display_panel/content/display-panel.html @@ -9,6 +9,8 @@ * GNU LibreJS - A browser add-on to block nonfree nontrivial JavaScript. * * * Copyright (C) 2011, 2012, 2014 Loic J. Duros + * Copyright (C) 2017, 2018 NateN1222 <nathannichols454@gmail.com> + * Copyright (C) 2018 Ruben Rodriguez <ruben@gnu.org> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,40 +30,39 @@ </head> <body> - <script src="main_panel.js"></script> - <div style="float:left; display:inline;" class="title-area"> - <div> - <a class="libre" - id="ljs-settings" - href="javascript:void" - title="LibreJS Whitelist Settings"> - <h1 class="libre">LibreJS</h1> - </a> + <script src="main_panel.js"></script> + <div id="header"> + <div class="title-area"> + <div> + <a class="libre" + id="ljs-settings" + href="javascript:void" + title="LibreJS Whitelist Settings"> + <h1 class="libre">LibreJS</h1> + </a> + </div> + <div> + <a target="_blank" href="https://www.gnu.org/software/librejs/" + id="librejs-web-link">gnu.org/software/librejs</a> + </div> + <div> + <strong>LibreJS 7.0</strong> + </div> </div> - <div> - <a target="_blank" href="https://www.gnu.org/software/librejs/" - id="librejs-web-link" - >gnu.org/software/librejs</a> + <div id="buttons" class="title-area"> + <table id="buttons_table"> + </table> </div> - <div> - <strong>LibreJS 7.0 <br><br></strong> - </div> - </div> - <div id="buttons" style="display:inline;" class="title-area"> - <table id="buttons_table" style="width: 80px;"> - </table> - </div> + </div> <div id="info"> <div id="whitelisted"> <h2 class="blocked-js"></h2> <ul class="blocked-js"></ul> </div> - <div id="accepted"> <h2 class="blocked-js"></h2> <ul class="blocked-js"></ul> </div> - <div id="blocked"> <h2 class="blocked-js"></h2> <ul class="blocked-js"></ul> |