parent
622e36de96
commit
aa938d911b
|
@ -242,10 +242,12 @@ class HistoryRow extends Component {
|
||||||
key={name}
|
key={name}
|
||||||
className={styles.details}
|
className={styles.details}
|
||||||
>
|
>
|
||||||
|
<div className={styles.actionContents}>
|
||||||
<IconButton
|
<IconButton
|
||||||
name={icons.INFO}
|
name={icons.INFO}
|
||||||
onPress={this.onDetailsPress}
|
onPress={this.onDetailsPress}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,5 @@
|
||||||
.actions {
|
.actions {
|
||||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
||||||
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
width: 55px;
|
width: 55px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,9 +4,7 @@
|
||||||
width: 80px;
|
width: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.titleContent {
|
||||||
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
|
@ -12,7 +12,7 @@ interface CssExports {
|
||||||
'rejected': string;
|
'rejected': string;
|
||||||
'sceneMapping': string;
|
'sceneMapping': string;
|
||||||
'size': string;
|
'size': string;
|
||||||
'title': string;
|
'titleContent': string;
|
||||||
}
|
}
|
||||||
export const cssExports: CssExports;
|
export const cssExports: CssExports;
|
||||||
export default cssExports;
|
export default cssExports;
|
||||||
|
|
|
@ -152,7 +152,8 @@ class InteractiveSearchRow extends Component {
|
||||||
{formatAge(age, ageHours, ageMinutes)}
|
{formatAge(age, ageHours, ageMinutes)}
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
|
|
||||||
<TableRowCell className={styles.title}>
|
<TableRowCell>
|
||||||
|
<div className={styles.titleContent}>
|
||||||
<Link to={infoUrl}>
|
<Link to={infoUrl}>
|
||||||
{title}
|
{title}
|
||||||
</Link>
|
</Link>
|
||||||
|
@ -168,6 +169,7 @@ class InteractiveSearchRow extends Component {
|
||||||
episodeRequested={episodeRequested}
|
episodeRequested={episodeRequested}
|
||||||
isDaily={isDaily}
|
isDaily={isDaily}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
</TableRowCell>
|
</TableRowCell>
|
||||||
|
|
||||||
<TableRowCell className={styles.indexer}>
|
<TableRowCell className={styles.indexer}>
|
||||||
|
|
Loading…
Reference in New Issue