diff options
author | Ruben Rodriguez <ruben@fsf.org> | 2018-04-27 17:21:11 -0400 |
---|---|---|
committer | Ruben Rodriguez <ruben@fsf.org> | 2018-04-27 17:21:11 -0400 |
commit | 181e5194a418d0cf9f876710f559e6dc80590989 (patch) | |
tree | 306ea611bad480bd215abd1232bf511d94e0e0d3 /html/display_panel/content/display-panel.html | |
parent | ef338f7693fe5339d833679aed1c7e7e399b67f2 (diff) |
Fixes to the CSS plus showing links instead of hashes
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> |