Skip to content
Snippets Groups Projects
Commit b94b6635 authored by Bastien Abadie's avatar Bastien Abadie
Browse files

Merge branch 'fix-process-list-overflow' into 'master'

Prevent horizontal overflow on process list

Closes #1003

See merge request !1284
parents d93e00f2 791ad726
No related branches found
No related tags found
1 merge request!1284Prevent horizontal overflow on process list
......@@ -50,6 +50,15 @@ td.shrink {
}
}
/*
* Add this to any element that displays user-defined names, for example a project or process name,
* to ensure that very long names cannot cause the element to overflow the page.
* This is most commonly needed in tables, on <td> cells.
*/
.is-word-break-all {
word-break: break-all;
}
kbd {
display: inline-block;
padding: .2em .5em;
......
......@@ -18,8 +18,8 @@
<i class="icon icon-help has-text-info"></i>
</samp>
</td>
<td>{{ process.name }}</td>
<td>{{ corpus.name || process.corpus }}</td>
<td class="is-word-break-all">{{ process.name }}</td>
<td class="is-word-break-all">{{ corpus.name || process.corpus }}</td>
<td>{{ processMode }}</td>
<td>
<template v-if="process.finished">Finished</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment