Fixed: Increase width and truncate long titles on Import List Exclusions

Closes #4528
pull/4777/head
Mark McDowall 3 years ago
parent ae328c1d84
commit 2d0541c03b

@ -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 {

@ -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 {

@ -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>

Loading…
Cancel
Save