Skip to content

Commit 7f151ca

Browse files
authored
Merge pull request #3968 from cmangeat/improve_url_checker_table_layout
improve url checker table layout
2 parents e7f2582 + 3946b75 commit 7f151ca

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

web-ui/src/main/resources/catalog/style/gn_admin.less

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,24 @@
2828
}
2929

3030
.gn-record-link-table {
31+
table-layout: fixed;
3132
td a {
3233
word-break: break-all;
3334
}
3435
}
3536

37+
.gn-record-link-table-state-column {
38+
width: 3.5em;
39+
}
40+
41+
.gn-record-link-table-date-column {
42+
width: 19em;
43+
}
44+
45+
.gn-record-link-table-md-column {
46+
width: 11em;
47+
}
48+
3649
.harvester-logo {
3750
height:20px;
3851
}

web-ui/src/main/resources/catalog/templates/admin/dashboard/record-links.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ <h1 data-translate="">recordLinksDashboard</h1>
5353
<table class="table table-bordered gn-record-link-table">
5454
<thead>
5555
<tr>
56-
<th data-translate=""></th>
56+
<th data-translate="" class="gn-record-link-table-state-column"></th>
5757
<th data-translate="">url</th>
58-
<th data-translate="">lastCheck</th>
59-
<th data-translate="">associatedRecords</th>
58+
<th data-translate="" class="gn-record-link-table-date-column">lastCheck</th>
59+
<th data-translate="" class="gn-record-link-table-md-column">associatedRecords</th>
6060
</tr>
6161
</thead>
6262
<tbody>

0 commit comments

Comments
 (0)