Secondary text color for byline in commit messages

This commit is contained in:
Markus Olsson 2016-11-11 18:06:13 +01:00
parent 969cc177df
commit 756bbbe675
2 changed files with 9 additions and 2 deletions

View file

@ -4,4 +4,5 @@
.byline {
font-size: var(--font-size-sm);
color: var(--text-secondary-color);
}

View file

@ -58,11 +58,17 @@
height: 100%;
&.selected {
color: var(--box-selected-text-color);
--text-color: var(--box-selected-text-color);
--text-secondary-color: var(--box-selected-text-color);
color: var(--text-color);
background-color: var(--box-selected-background-color);
&:focus {
color: var(--box-selected-active-text-color);
--text-color: var(--box-selected-active-text-color);
--text-secondary-color: var(--box-selected-active-text-color);
color: var(--text-color);
background-color: var(--box-selected-active-background-color);
}
}