Skip to content
Snippets Groups Projects
Commit 791ad726 authored by Erwan Rouchet's avatar Erwan Rouchet Committed by Bastien Abadie
Browse files

Prevent horizontal overflow on process list

parent d93e00f2
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