Skip to content

Commit

Permalink
Task sub row alignment changes (#15363)
Browse files Browse the repository at this point in the history
  • Loading branch information
philrenaud committed Nov 22, 2022
1 parent 8667dc2 commit 1420433
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .changelog/15363.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
ui: Made task rows in Allocation tables look more aligned with their parent
```
9 changes: 6 additions & 3 deletions ui/app/styles/components/task-sub-row.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
$taskSubRowBackground: #f9f9f9;

table tbody .task-sub-row {
td {
border-top: 2px solid white;

border-top: 2px solid $taskSubRowBackground;
background-color: $taskSubRowBackground;
padding: 0.75em 1.5em;
.name-grid {
display: inline-grid;
grid-template-columns: auto 1fr;
margin-left: 4rem;
gap: 1rem;

.task-name {
Expand All @@ -27,6 +29,7 @@ table tbody .task-sub-row {
color: $blue;
text-decoration: underline;
font-weight: normal;
background-color: transparent;
svg {
color: black;
margin-right: 5px;
Expand Down

0 comments on commit 1420433

Please sign in to comment.