Skip to content

Commit

Permalink
Fixed: Increase width and truncate long titles on Import List Exclusions
Browse files Browse the repository at this point in the history
Closes #4528
  • Loading branch information
markus101 committed Nov 28, 2021
1 parent ae328c1 commit 2d0541c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
}

.title {
flex: 0 0 300px;
@add-mixin truncate;

flex: 0 1 600px;
}

.tvdbId {
flex: 0 0 400px;
flex: 0 0 70px;
}

.actions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
font-weight: bold;
}

.host {
flex: 0 0 300px;
.title {
flex: 0 1 600px;
}

.path {
flex: 0 0 400px;
.tvdbId {
flex: 0 0 70px;
}

.addImportListExclusion {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class ImportListExclusions extends Component {
{...otherProps}
>
<div className={styles.importListExclusionsHeader}>
<div className={styles.host}>Title</div>
<div className={styles.path}>TVDB ID</div>
<div className={styles.title}>Title</div>
<div className={styles.tvdbId}>TVDB ID</div>
</div>

<div>
Expand Down

0 comments on commit 2d0541c

Please sign in to comment.