Use CSS constant for assignee color

Change-Id: Ia254955113d3c4e3893da3e68c232704d0e88144
This commit is contained in:
Kasper Nilsson
2018-05-10 09:17:56 -07:00
parent 36725f37fc
commit 0db312da4c
2 changed files with 3 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ limitations under the License.
font-family: var(--font-family-bold);
}
:host([highlight]) {
background-color: #fcfad6;
background-color: var(--assignee-highlight-color);
}
.container {
position: relative;

View File

@@ -48,6 +48,8 @@ limitations under the License.
--select-background-color: rgb(248, 248, 248);
--assignee-highlight-color: #fcfad6;
/* Font sizes */
--font-size-normal: 1rem;
--font-size-small: .92rem;