Fixed Misaligned table border

(cherry picked from commit aa938d911b61b08185dc57a0887f3f33e3c6e1f2)

Closes #8176
pull/9232/head
Mark McDowall 2 years ago committed by Bogdan
parent 3468f1144d
commit 4e3535f1fe

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

@ -52,11 +52,7 @@
width: 75px; width: 75px;
} }
.title { .titleContent {
composes: cell;
}
.title div {
overflow-wrap: break-word; overflow-wrap: break-word;
} }

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

@ -246,10 +246,12 @@ function InteractiveSearchRow(props: InteractiveSearchRowProps) {
) : null} ) : null}
</TableRowCell> </TableRowCell>
<TableRowCell className={styles.title}> <TableRowCell>
<Link to={infoUrl} title={title}> <div className={styles.titleContent}>
<div>{title}</div> <Link to={infoUrl} title={title}>
</Link> {title}
</Link>
</div>
</TableRowCell> </TableRowCell>
<TableRowCell className={styles.indexer}>{indexer}</TableRowCell> <TableRowCell className={styles.indexer}>{indexer}</TableRowCell>

Loading…
Cancel
Save