mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-14 00:40:49 +02:00
57 lines
630 B
CSS
57 lines
630 B
CSS
.cell {
|
|
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.status {
|
|
composes: cell;
|
|
|
|
flex: 0 0 60px;
|
|
}
|
|
|
|
.title {
|
|
composes: cell;
|
|
|
|
flex: 4 0 110px;
|
|
}
|
|
|
|
.indexer {
|
|
composes: cell;
|
|
|
|
flex: 0 0 85px;
|
|
}
|
|
|
|
.age,
|
|
.size,
|
|
.peers {
|
|
composes: cell;
|
|
|
|
flex: 0 0 75px;
|
|
}
|
|
|
|
.indexerFlags {
|
|
composes: cell;
|
|
|
|
flex: 0 0 50px;
|
|
}
|
|
|
|
.actions {
|
|
composes: cell;
|
|
|
|
flex: 0 1 90px;
|
|
min-width: 90px;
|
|
}
|
|
|
|
.checkInput {
|
|
composes: input from '~Components/Form/CheckInput.css';
|
|
|
|
margin-top: 0;
|
|
}
|
|
|
|
.externalLinks {
|
|
margin: 0 2px;
|
|
width: 22px;
|
|
text-align: center;
|
|
}
|