From ca8f4acdaa7ffd25c0b6b5cd359a0a0791017d8e Mon Sep 17 00:00:00 2001 From: nitsua Date: Wed, 29 Jul 2020 16:00:44 -0400 Subject: [PATCH] Fixed: icon stacking on the movie details page (#4658) #4653 --- frontend/src/MovieFile/Editor/MovieFileEditorRow.css | 8 +++++++- .../src/MovieFile/Editor/MovieFileEditorTableContent.js | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/MovieFile/Editor/MovieFileEditorRow.css b/frontend/src/MovieFile/Editor/MovieFileEditorRow.css index 2c849aece..b75a60a77 100644 --- a/frontend/src/MovieFile/Editor/MovieFileEditorRow.css +++ b/frontend/src/MovieFile/Editor/MovieFileEditorRow.css @@ -1,4 +1,4 @@ -.title { +.relativePath { composes: cell from '~Components/Table/Cells/TableRowCell.css'; word-break: break-all; @@ -27,3 +27,9 @@ white-space: nowrap; } + +.actions { + composes: cell from '~Components/Table/Cells/TableRowCell.css'; + + width: 100px; +} diff --git a/frontend/src/MovieFile/Editor/MovieFileEditorTableContent.js b/frontend/src/MovieFile/Editor/MovieFileEditorTableContent.js index 3b0d85813..92e8247f2 100644 --- a/frontend/src/MovieFile/Editor/MovieFileEditorTableContent.js +++ b/frontend/src/MovieFile/Editor/MovieFileEditorTableContent.js @@ -10,7 +10,7 @@ import styles from './MovieFileEditorTableContent.css'; const columns = [ { name: 'title', - label: 'Title', + label: 'Relative Path', isVisible: true }, {