Fixed: Misaligned table border

Closes #2232

(cherry picked from commit aa938d911b61b08185dc57a0887f3f33e3c6e1f2)
pull/3354/head
Mark McDowall 1 year ago committed by Bogdan
parent 5e7e0eb50b
commit 42751b598b

@ -218,10 +218,12 @@ class HistoryRow extends Component {
key={name}
className={styles.details}
>
<IconButton
name={icons.INFO}
onPress={this.onDetailsPress}
/>
<div className={styles.actionContents}>
<IconButton
name={icons.INFO}
onPress={this.onDetailsPress}
/>
</div>
</TableRowCell>
);
}

@ -8,12 +8,11 @@
width: 80px;
}
.title {
composes: cell;
}
.title div {
overflow-wrap: break-word;
.titleContent {
display: flex;
align-items: center;
justify-content: space-between;
word-break: break-all;
}
.indexer {

@ -11,7 +11,7 @@ interface CssExports {
'quality': string;
'rejected': string;
'size': string;
'title': string;
'titleContent': string;
}
export const cssExports: CssExports;
export default cssExports;

@ -153,10 +153,12 @@ class InteractiveSearchRow extends Component {
{formatAge(age, ageHours, ageMinutes)}
</TableRowCell>
<TableRowCell className={styles.title}>
<Link to={infoUrl}>
{title}
</Link>
<TableRowCell>
<div className={styles.titleContent}>
<Link to={infoUrl}>
{title}
</Link>
</div>
</TableRowCell>
<TableRowCell className={styles.indexer}>

Loading…
Cancel
Save