Skip to content

Commit

Permalink
fixed "select-all" checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
kylehuynh205 committed Mar 2, 2021
1 parent ac61b43 commit 4864507
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions admin/admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
</style>
<script>
var noidTemplates = {
Expand Down Expand Up @@ -967,10 +977,10 @@ class="btn btn-primary"/>
<li>Download <a href="template.csv" download>template.csv</a>, place the above minted Ark IDs into the ARK_ID column.</li>
<li><strong>There no limitation of data field(s) to be bound with an Ark ID. For UTSC only, highly recommend to have the below essential columns which are already included in the template CSVs above</strong> and add more column(s) if needed for other metadata.
<ul>
<li><u>Ark_ID</u>: MANDATORY for binding.</li>
<li><u><strong>Ark_ID</strong></u>: MANDATORY field for binding.</li>
<li><u><strong>URL</strong></u>: MANDATORY field, the Resolver looks for this field to redirection.</li>
<li><u>LOCAL_ID</u>: Object's unique ID in the repository.</li>
<li><u>PID</u>: persistent Identifiers</li>
<li><u>URL</u>: will be redirected to after Ark ID's URL Resolver.</li>
<li><u>COLLECTION</u>(Optional): to assist on searching in the table.</li>
</ul>
</li>
Expand Down

0 comments on commit 4864507

Please sign in to comment.