Skip to content

Commit

Permalink
Merge pull request #540 from OWASP/dependabot/maven/org.webjars-datat…
Browse files Browse the repository at this point in the history
…ables-1.13.1

Bump datatables from 1.12.1 to 1.13.1
  • Loading branch information
commjoen authored Dec 20, 2022
2 parents 2ac0616 + 62968b6 commit e63da0f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
<jruby.version>9.4.0.0</jruby.version>
<bootstrap.version>5.2.3</bootstrap.version>
<github.button.version>2.14.1</github.button.version>
<datatables.version>1.13.1</datatables.version>
<gcp.sdk.version>3.4.1</gcp.sdk.version>
<datatables.version>1.12.1</datatables.version>
<jquery.version>3.6.1</jquery.version>
<thymeleaf.layout>3.1.0</thymeleaf.layout>
<asciidoctor.maven.plugin.version>2.2.2</asciidoctor.maven.plugin.version>
Expand Down
10 changes: 10 additions & 0 deletions src/main/resources/static/css/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@
border-color: var(--bs-indigo);
}

.dark-mode .paginate_button {
background-color: var(--bs-primary);
border-color: var(--bs-primary);
color: #7e7e7e;
}
.dark-mode .paginate_button:hover {
background-color: var(--bs-indigo);
border-color: var(--bs-indigo);
}

.dark-mode input {
background-color: var(--bs-gray-600);
color: var(--bs-body-color);
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<meta charset="UTF-8">
<title>OWASP WrongSecrets</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link th:rel="stylesheet" th:href="@{/webjars/datatables/1.13.1/css/dataTables.bootstrap5.min.css} " />
<link th:rel="stylesheet" th:href="@{/webjars/bootstrap/5.2.3/css/bootstrap.min.css} " />
<link th:rel="stylesheet" th:href="@{/webjars/datatables/1.12.1/css/dataTables.bootstrap5.min.css} " />
<link rel="stylesheet" type="text/css" th:href="@{/css/style.css}" />
<link rel="stylesheet" type="text/css" th:href="@{/css/dark.css}" />

Expand All @@ -21,8 +21,8 @@
<script th:src="@{/webjars/bootstrap/5.2.3/js/bootstrap.bundle.min.js}"></script>
<script th:src="@{/webjars/github-buttons/2.14.1/dist/buttons.js}"></script>
<script th:src="@{/webjars/jquery/3.6.1/jquery.js}"></script>
<script th:src="@{/webjars/datatables/1.12.1/js/jquery.dataTables.min.js}"></script>
<script th:src="@{/webjars/datatables/1.12.1/js/dataTables.bootstrap5.min.js}"></script>
<script th:src="@{/webjars/datatables/1.13.1/js/jquery.dataTables.min.js}"></script>
<script th:src="@{/webjars/datatables/1.13.1/js/dataTables.bootstrap5.min.js}"></script>
<script th:if="${allCompleted} eq 'party'">
window.addEventListener("load", function () {
new bootstrap.Modal(document.getElementById('finishedModal'), {}).toggle()
Expand Down

0 comments on commit e63da0f

Please sign in to comment.