Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hpc-team
strudelv2_spa
Commits
be0a63ba
Commit
be0a63ba
authored
Dec 09, 2019
by
Melvin Luong
Browse files
Fixed the bottom border color for the table row header to design spec.
parent
fcf6e07b
Changes
2
Show whitespace changes
Inline
Side-by-side
src/app/accountinfo/accountinfo.component.css
View file @
be0a63ba
...
...
@@ -18,6 +18,11 @@
background-color
:
#fafafa
;
}
.row-header
{
text-align
:
left
;
border-bottom-color
:
#a2bae1
;
}
.mat-header-cell
{
color
:
#11356e
;
font-size
:
18px
;
...
...
src/app/accountinfo/accountinfo.component.html
View file @
be0a63ba
...
...
@@ -29,7 +29,7 @@
<div
class=
"table-header"
><span>
{{ h.title }}
</span></div>
<table
mat-table
[dataSource]=
"h.data.rows"
style=
"width: 100%"
>
<ng-container
*ngFor=
"let c of h.data.cols"
matColumnDef=
"{{c.key}}"
>
<th
mat-header-cell
*matHeaderCellDef
style=
"text-align: left"
>
{{ c.header }}
</th>
<th
mat-header-cell
*matHeaderCellDef
style=
"text-align: left
; border-bottom-color: #a2bae1;
"
>
{{ c.header }}
</th>
<td
mat-cell
*matCellDef=
"let row;"
style=
"text-align: left"
>
{{row[c.key]}}
</td>
</ng-container>
<tr
mat-header-row
*matHeaderRowDef=
"calculateCols(h.data.cols); sticky: true"
></tr>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment