|
8 | 8 | <title>Shared Library Version Bump (verbump.de)</title> |
9 | 9 | <meta charset="utf-8"/> |
10 | 10 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
11 | | - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> |
| 11 | + <link rel="stylesheet" href="https://bootswatch.com/4/united/bootstrap.min.css" integrity="sha256-gbLii3KI7XRhzx2HLy44g+eh/weNeieCzRFvn3K56qc=" crossorigin="anonymous"> |
12 | 12 | <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous"></script> |
13 | 13 |
|
14 | 14 | <style> |
|
30 | 30 | } |
31 | 31 |
|
32 | 32 | /* Keep checkbox "There is a previous release" well visible at all times */ |
33 | | - #prev-release.disabled .form-check label { |
| 33 | + #prev-release.disabled .custom-control label { |
34 | 34 | color: #212529 !important; |
35 | 35 | } |
36 | 36 |
|
|
44 | 44 | color: #212529; |
45 | 45 | text-decoration: none; |
46 | 46 | } |
| 47 | + |
| 48 | + /* Get rid of green/red icons in checkboxes */ |
| 49 | + .was-validated .form-control:valid, .form-control.is-valid { |
| 50 | + background-image: unset !important; |
| 51 | + padding-right: .75rem !important; |
| 52 | + } |
| 53 | + .was-validated .form-control:valid, .form-control.is-invalid { |
| 54 | + background-image: unset !important; |
| 55 | + padding-right: .75rem !important; |
| 56 | + } |
47 | 57 | </style> |
48 | 58 |
|
49 | 59 | <script> |
@@ -348,9 +358,9 @@ <h1 class="display-3"><a href="" class="logo">Shared Library Version Bump</a></h |
348 | 358 | <div id="prev-release"> |
349 | 359 | <h2 class="display-4 mt-0">Previous Release</h2> |
350 | 360 | <div class="container"> |
351 | | - <div class="form-check"> |
352 | | - <input class="form-check-input" type="checkbox" id="prev-exists"> |
353 | | - <label class="form-check-label" for="prev-exists"> |
| 361 | + <div class="custom-control custom-checkbox"> |
| 362 | + <input class="custom-control-input" type="checkbox" id="prev-exists"> |
| 363 | + <label class="custom-control-label" for="prev-exists"> |
354 | 364 | There is a previous release |
355 | 365 | </label> |
356 | 366 | </div> |
@@ -380,28 +390,28 @@ <h2 class="mt-4"> |
380 | 390 | <small class="text-muted">in the Mean Time</small> |
381 | 391 | </h2> |
382 | 392 | <div class="container"> |
383 | | - <div class="form-check"> |
384 | | - <input class="form-check-input" type="checkbox" id="changes-any"> |
385 | | - <label class="form-check-label" for="changes-any"> |
| 393 | + <div class="custom-control custom-checkbox"> |
| 394 | + <input class="custom-control-input" type="checkbox" id="changes-any"> |
| 395 | + <label class="custom-control-label" for="changes-any"> |
386 | 396 | Changed something in the source code |
387 | 397 | </label> |
388 | 398 | </div> |
389 | 399 | <div style="padding-left: 1.4em"> |
390 | | - <div class="form-check"> |
391 | | - <input class="form-check-input" type="checkbox" id="changes-added"> |
392 | | - <label class="form-check-label" for="changes-added"> |
| 400 | + <div class="custom-control custom-checkbox"> |
| 401 | + <input class="custom-control-input" type="checkbox" id="changes-added"> |
| 402 | + <label class="custom-control-label" for="changes-added"> |
393 | 403 | Added something new to the public interface |
394 | 404 | </label> |
395 | 405 | </div> |
396 | | - <div class="form-check"> |
397 | | - <input class="form-check-input" type="checkbox" id="changes-removed"> |
398 | | - <label class="form-check-label" for="changes-removed"> |
| 406 | + <div class="custom-control custom-checkbox"> |
| 407 | + <input class="custom-control-input" type="checkbox" id="changes-removed"> |
| 408 | + <label class="custom-control-label" for="changes-removed"> |
399 | 409 | Removed something from the public interface |
400 | 410 | </label> |
401 | 411 | </div> |
402 | | - <div class="form-check"> |
403 | | - <input class="form-check-input" type="checkbox" id="changes-changed"> |
404 | | - <label class="form-check-label" for="changes-changed"> |
| 412 | + <div class="custom-control custom-checkbox"> |
| 413 | + <input class="custom-control-input" type="checkbox" id="changes-changed"> |
| 414 | + <label class="custom-control-label" for="changes-changed"> |
405 | 415 | Changed any existing part of the public interface |
406 | 416 | </label> |
407 | 417 | </div> |
@@ -437,7 +447,7 @@ <h2 class="display-4">Upcoming Release</h2> |
437 | 447 | </div><!-- jumbotron --> |
438 | 448 |
|
439 | 449 | <p> |
440 | | - A small handy tool developed by <a href="https://blog.hartwork.org/">Sebastian Pipping</a> in 2021 using Bootstrap 4 and jQuery.<br/> |
| 450 | + A small handy tool developed by <a href="https://blog.hartwork.org/">Sebastian Pipping</a> in 2021 using <a href="https://bootswatch.com/4/united/">Bootswatch 4 United</a> and jQuery.<br/> |
441 | 451 | If you like it, please support it by starring the <a href="https://github.com/hartwork/shared-library-version-bump">GitHub repository</a>. Thank you! |
442 | 452 | </p> |
443 | 453 | <p> |
|
0 commit comments