Skip to content

Commit b166f74

Browse files
committed
-> #1478
1 parent 8dd38c6 commit b166f74

File tree

3 files changed

+23
-13
lines changed

3 files changed

+23
-13
lines changed

static/css/search.css

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,14 @@ tr {
423423
width: 23.75%;
424424
word-wrap: break-word; }
425425

426+
#cases_table td.narrow, #cases_table_head th.narrow {
427+
width: 15%;
428+
word-wrap: break-word; }
429+
430+
#cases_table td.wide, #cases_table_head th.wide {
431+
width: 28%;
432+
word-wrap: break-word; }
433+
426434
#studies_table_head th, #studies_table td {
427435
word-break: break-word; }
428436

@@ -463,8 +471,11 @@ tr {
463471
}
464472

465473
#studies_table_head th.download-col,
466-
#studies_table td.download-col {
474+
#studies_table td.download-col, #cases_table_head th.download-col,
475+
#cases_table td.download-col, #series_table_head th.download-col,
476+
#series_table td.download-col {
467477
width:6%;
478+
min-width: 80px;
468479
}
469480

470481
#series_table_head th, #series_table td {

static/js/tables.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -491,10 +491,10 @@ define(['cartutils','filterutils','tippy','jquery', 'base'], function(cartutils,
491491
{className: "ckbx studyview","targets": [0]},
492492
{className: "ckbx shopping-cart-holder", "targets": [1]},
493493
{className: "ckbx cartnumholder", "targets":[2]},
494-
{className: "col1 project-name", "targets": [3]},
494+
{className: "col1 project-name wide", "targets": [3]},
495495
{className: "col1 case-id", "targets": [4]},
496-
{className: "col1 numrows", "targets": [5]},
497-
{className: "col1 numseries", "targets": [6]},
496+
{className: "col1 numrows narrow", "targets": [5]},
497+
{className: "col1 numseries narrow", "targets": [6]},
498498
{className: "col1 download-case download-col", "targets": [7]}];
499499
};
500500

@@ -864,7 +864,7 @@ define(['cartutils','filterutils','tippy','jquery', 'base'], function(cartutils,
864864
{className: "col1 numrows", "targets": [7]},
865865
{className: "ohif open-viewer", "targets": [8]},
866866
{className: "manifest-col", "targets": [9]},
867-
{className: "download-col", "targets": [10]},
867+
{className: "download-col download-study", "targets": [10]},
868868
],
869869
"columns": [
870870
{
@@ -1244,7 +1244,7 @@ define(['cartutils','filterutils','tippy','jquery', 'base'], function(cartutils,
12441244
{className: "series-description", "targets": [6]},
12451245
{className: "ohif open-viewer", "targets": [7]},
12461246
{className: "manifest-col", "targets": [8]},
1247-
{className: "download-col", "targets": [9]}
1247+
{className: "download-col download-series", "targets": [9]}
12481248
],
12491249
"columns": [
12501250
{"type": "html", "orderable": false, render: function () {

templates/idc/explore_data_core.html

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -864,11 +864,11 @@ <h4 class="panel-title">
864864
</th>
865865
<th class="ckbx cart-info"><i class="fa-solid fa-info-circle cart-info-icon"></i></th>
866866
<th class="ckbx cartnumholder"># of Series in Cart</th>
867-
<th class="text_data">Collection Name</th>
867+
<th class="text_data wide">Collection Name</th>
868868
<th class="text_data">Case ID <i class="fas fa-info-circle case-info"></i></th>
869-
<th class="numeric_data">Total # of Studies</th>
870-
<th class="numeric_data">Total # of Series</th>
871-
<th class="download-case"></th>
869+
<th class="numeric_data narrow">Total # of Studies</th>
870+
<th class="numeric_data narrow">Total # of Series</th>
871+
<th class="download-case download-col"></th>
872872
</tr>
873873
</thead>
874874
</table>
@@ -895,7 +895,7 @@ <h4 class="panel-title">
895895
<th class="col1 numrows numeric_data table-count"># of Series</th>
896896
<th class="ohif text_data open-viewer">View</th>
897897
<th class="manifest-col"></th>
898-
<th class="download-col"></th>
898+
<th class="download-col download-study"></th>
899899
</tr>
900900
</thead>
901901
</table>
@@ -917,9 +917,8 @@ <h4 class="panel-title">
917917
<th class="body-part-examined">Body Part Examined</th>
918918
<th class="series-description">Series Description</th>
919919
<th class="open-viewer text_data">View</th>
920-
<th class="series-citations"></th>
921920
<th class="download-manifest"></th>
922-
<th class="download-files"></th>
921+
<th class="download-files dowbload-series download-col"></th>
923922
</tr>
924923
</thead>
925924
</table>

0 commit comments

Comments
 (0)