mirror of https://github.com/BOINC/boinc.git
Added wrapping of task names in task lists when names are long
(DBOINCP-29)
This commit is contained in:
parent
c200d47a5c
commit
7851661f25
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -19,6 +19,6 @@
|
|||
* the view is modified.
|
||||
*/
|
||||
?>
|
||||
<span>
|
||||
<span class="task-name">
|
||||
<?php print l($row->result_name, "task/{$row->id}"); ?>
|
||||
</span>
|
Loading…
Reference in New Issue