Skip to content

Commit

Permalink
Update Recording Table Width
Browse files Browse the repository at this point in the history
This patch updates the column width of the main recordings table
preventing actions to be shown more or less in the status label. The
additional space is taken from the title column which maximum width is
constricted further.

To make up for this, the complete title is now contained in a title tag
which is shown when you hover over the title cells of the table.
  • Loading branch information
lkiesow committed Oct 1, 2021
1 parent bee8662 commit 5707094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/Event.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<tr>
<td class="title">{{ event.title }}</td>
<td class="title" v-bind:title=event.title>{{ event.title }}</td>
<td>{{ event.start }}</td>
<td>{{ event.end }}</td>
<td>
Expand Down
2 changes: 1 addition & 1 deletion ui/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ td.more:hover {
}

td.title {
max-width: 250px;
max-width: 150px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
Expand Down

0 comments on commit 5707094

Please sign in to comment.