Radarr/frontend/src/System/Tasks/Queued/QueuedTaskRow.css
Robin Dadswell fcec787eb6
Show User Agent in System->Tasks for externally triggered commands (#6327)
* Show User Agent in System->Tasks for externally triggered commands

(cherry picked from commit fe8f319f7bfdadb7218b6313ada6cae1d2a35ad8)

* Translations

Co-authored-by: Taloth Saldono <Taloth@users.noreply.github.com>
2021-05-17 21:45:23 -04:00

40 lines
587 B
CSS

.trigger {
composes: cell from '~Components/Table/Cells/TableRowCell.css';
width: 50px;
}
.triggerContent {
display: flex;
justify-content: space-between;
width: 100%;
}
.commandName {
display: inline-block;
min-width: 220px;
}
.userAgent {
color: #b0b0b0;
}
.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: 60px;
}