From 486450732dacacef099513a5d9483979d05ec9bb Mon Sep 17 00:00:00 2001 From: Kyle Huynh Date: Tue, 2 Mar 2021 11:14:46 -0500 Subject: [PATCH] fixed "select-all" checkbox --- admin/admin.php | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/admin/admin.php b/admin/admin.php index d5e3c54..8b8f050 100755 --- a/admin/admin.php +++ b/admin/admin.php @@ -98,9 +98,19 @@ content: "✔"; margin-top: -11px; margin-left: -4px; - text-align: center; text-shadow: rgb(176, 190, 217) 1px 1px, rgb(176, 190, 217) -1px -1px, rgb(176, 190, 217) 1px -1px, rgb(176, 190, 217) -1px 1px; } + + table.dataTable th, table.dataTable td { + text-align: center; + } + + table.dataTable thead th.select-checkbox:before, table.dataTable tbody th.select-checkbox:before { + content: "\00a0 \00a0 \00a0\00a0\00a0"; + border: 1px solid black; + border-radius: 3px; + font-size: xx-small; + }