eca0e7bf56
* button styles * Further styles including global toggle adjustment * sidebar funcs and header * Functioning task logs in high-level sidebars * same-lineify the show tasks toggle * Changelog * Full-height sidebar calc in css, plz drop soon container queries * Active status and query params for allocations page * Reactive shouldShowLogs getter and added to client and task group pages * Higher order func passing, thanks @DingoEatingFuzz * Non-service job types get allocation params passed * Keyframe animation for task log sidebar * Acceptance test * A few more sub-row tests * Lintfix
40 lines
797 B
SCSS
40 lines
797 B
SCSS
table tbody .task-sub-row {
|
|
td {
|
|
border-top: 2px solid white;
|
|
|
|
.name-grid {
|
|
display: inline-grid;
|
|
grid-template-columns: auto 1fr;
|
|
margin-left: 4rem;
|
|
gap: 1rem;
|
|
|
|
.task-name {
|
|
display: block;
|
|
width: 150px;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
&:before {
|
|
color: black;
|
|
content: '/';
|
|
display: inline-block;
|
|
margin-right: 0.5rem;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.logs-sidebar-trigger {
|
|
color: $blue;
|
|
text-decoration: underline;
|
|
font-weight: normal;
|
|
svg {
|
|
color: black;
|
|
margin-right: 5px;
|
|
position: relative;
|
|
top: 3px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|