Change bootstrap version to stable

For firefox addons are only stable versions of external libaries allowed, so we change from bootstrap 4 to bootstrap 3.3.7
This commit is contained in:
Kevin Röbert 2017-09-02 23:55:34 +02:00
parent d7dcd87826
commit 7ae849cd9d
5 changed files with 21 additions and 26 deletions

7
bootstrap.min.css vendored

File diff suppressed because one or more lines are too long

9
bootstrap.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "ClearURLs", "name": "ClearURLs",
"version": "1.1.2.0", "version": "1.1.2.1",
"author": "Kevin R.", "author": "Kevin R.",
"description": "Remove tracking elements form URLs. ", "description": "Remove tracking elements form URLs. ",
"homepage_url": "https://github.com/KevinRoebert/ClearUrls", "homepage_url": "https://github.com/KevinRoebert/ClearUrls",

5
popper.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -12,15 +12,18 @@
<body> <body>
<div class="container-fluid" style="background: url('img-noise-361x370.png');background-size: auto;"> <div class="container-fluid" style="background: url('img-noise-361x370.png');background-size: auto;">
<div class="row"> <div class="row">
<nav class="col-sm-1 navbar navbar-dark bg-dark"> <nav class="col-sm-1 navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<span class="navbar-brand"> <span class="navbar-brand">
<img src="icon38.png" width="30" height="30" class="d-inline-block align-top" alt=""> <span><img src="icon38.png" width="30" height="30" alt=""></span>
ClearURLs ClearURLs
</span> </span>
</nav>
</div> </div>
<br> </div>
</nav>
</div>
<div class="row"> <div class="row">
<div class="col-sm-1"> <div class="col-sm-1">
<h5>Configs</h5> <h5>Configs</h5>
@ -43,12 +46,10 @@
<h5>Statistics</h5> <h5>Statistics</h5>
<div class="progress"> <div class="progress">
<div class="progress-bar bg-danger" role="progressbar" style="width: 0%" id="progress_blocked"></div> <div class="progress-bar progress-bar-danger progress-bar-striped" role="progressbar" style="width: 0%" id="progress_blocked"></div>
<div class="progress-bar bg-info" role="progressbar" style="width: 100%" id="progress_non_blocked"></div> <div class="progress-bar progress-bar-info progress-bar-striped" role="progressbar" style="width: 100%" id="progress_non_blocked"></div>
</div> </div>
<br>
<h6>Total elements</h6> <h6>Total elements</h6>
<p class="text-info text-right" id="statistics_total_elements"></p> <p class="text-info text-right" id="statistics_total_elements"></p>
@ -59,14 +60,14 @@
<p class="text-right" id="statistics_value_global_percentage"></p> <p class="text-right" id="statistics_value_global_percentage"></p>
<p class="text-center"> <p class="text-center">
<button type="button" id="reset_counter_btn" class="btn btn-outline-danger" title="Reset the global statistics">Reset counter</button> <button type="button" id="reset_counter_btn" class="btn btn-danger" title="Reset the global statistics">Reset counter</button>
</p> </p>
</div> </div>
</div> </div>
<footer> <footer>
<div class="row"> <div class="row">
<div class="col-sm-1 bg-dark text-center"> <div class="col-sm-1 navbar-inverse text-center">
<small class="text-muted">Version 1.1.2.0</small> <small class="text-muted">Version 1.1.2.1</small>
</div> </div>
</div> </div>
</footer> </footer>
@ -76,7 +77,6 @@
<!-- Optional JavaScript --> <!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS --> <!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="jquery-3.2.1.min.js"></script> <script src="jquery-3.2.1.min.js"></script>
<script src="popper.min.js"></script>
<script src="bootstrap.min.js"></script> <script src="bootstrap.min.js"></script>
<script src="popup_new.js"></script> <script src="popup_new.js"></script>
</body> </body>