mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
32 lines
490 B
CSS
32 lines
490 B
CSS
.trigger {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
width: 50px;
|
|
}
|
|
|
|
.triggerContent {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.queued,
|
|
.started,
|
|
.ended {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
width: 180px;
|
|
}
|
|
|
|
.duration {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
width: 100px;
|
|
}
|
|
|
|
.actions {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
width: 20px;
|
|
}
|