Modify styling for app / env spend table

This commit is contained in:
graham-dds 2019-11-27 15:28:26 -05:00
parent 4e0af139cc
commit 00b79e2c7b
2 changed files with 24 additions and 2 deletions

View File

@ -97,4 +97,22 @@
border-top: 1px solid $color-gray-lighter; border-top: 1px solid $color-gray-lighter;
} }
} }
.reporting-spend-table {
&__env-row {
&-label {
margin-left: $gap * 5;
}
&--last {
& > td {
border-bottom: 1px solid black;
}
&:last-of-type {
& > td {
border-bottom: none;
}
}
}
}
}
} }

View File

@ -59,9 +59,13 @@
<span v-html='formatDollars(application["total_spend_to_date"])'></span> <span v-html='formatDollars(application["total_spend_to_date"])'></span>
</td> </td>
</tr> </tr>
<tr v-for='(environment, envName) in environments[name]' v-show='application.isVisible'> <tr
v-for='(environment, envName, index) in environments[name]'
v-show='application.isVisible'
v-bind:class="[ index == Object.keys(environments[name]).length -1 ? 'reporting-spend-table__env-row--last' : '']"
>
<td> <td>
<span v-html='envName'></span> <span class="reporting-spend-table__env-row-label" v-html='envName'></span>
</td> </td>
<td class="table-cell--align-right"> <td class="table-cell--align-right">
<span v-html='formatDollars(environment[currentMonthIndex] || 0)'></span> <span v-html='formatDollars(environment[currentMonthIndex] || 0)'></span>