Added wrapping of task names in task lists when names are long

(DBOINCP-29)
This commit is contained in:
Tristan Olive 2015-06-04 17:48:15 -04:00
parent c200d47a5c
commit 7851661f25
2 changed files with 16 additions and 1 deletions

View File

@ -142,6 +142,21 @@
}
/**
* Computer and task lists
*/
.views-table .views-field-expavg-credit,
.views-table .views-field-total-credit,
.views-table .views-field-elapsed-time,
.views-table .views-field-cpu-time,
.views-table .views-field-claimed-credit-1,
.views-table .views-field-granted-credit {
text-align: right;
}
.views-table .views-field .task-name {
word-break: break-all;
}
/**
* Friends block
*/

View File

@ -19,6 +19,6 @@
* the view is modified.
*/
?>
<span>
<span class="task-name">
<?php print l($row->result_name, "task/{$row->id}"); ?>
</span>