Skip to content

Commit

Permalink
FIX: Use box-shadow for activity indicators (#62)
Browse files Browse the repository at this point in the history
The old way of using borders makes ugly photo-frame
edges, this looks nicer
  • Loading branch information
martin-brennan authored Oct 10, 2024
1 parent 6246fc1 commit f0411be
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions common/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,15 @@ html:has(body.kanban-active) {
}

&.card-no-recent-activity {
border-left: 5px solid var(--danger-low);
box-shadow: inset 5px 0px 0 0px var(--danger-low);
border-left: 0px;
padding-left: 15px;
}

&.card-stale {
border-left: 5px solid var(--danger-medium);
box-shadow: inset 5px 0px 0 0px var(--danger-medium);
border-left: 0px;
padding-left: 15px;
}

.card-row {
Expand Down

0 comments on commit f0411be

Please sign in to comment.