mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
a7720e829d
(cherry picked from commit 6d552f2a60f44052079b5e8944f5e1bbabac56e0) Closes #9837
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: 60px;
|
|
}
|