mirror of
https://github.com/Radarr/Radarr
synced 2025-12-24 09:13:45 +01:00
* 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>
40 lines
587 B
CSS
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;
|
|
}
|