Task sub row alignment changes (#15363)

This commit is contained in:
Phil Renaud 2022-11-22 15:49:50 -05:00 committed by GitHub
parent 0263e7af34
commit 3189826a5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

3
.changelog/15363.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:improvement
ui: Made task rows in Allocation tables look more aligned with their parent
```

View File

@ -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 {
@ -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;