Skip to content

Commit

Permalink
Hover colors (directus#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
benhaynes authored and rijkvanzanten committed Aug 6, 2018
1 parent 94518fe commit db8db1f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/components/form-inputs/textarea.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,17 @@ textarea {
transition-property: color, border-color;
&::placeholder {
color: var(--light-gray);
color: var(--lighter-gray);
}
&:hover {
transition: none;
border-color: var(--light-gray);
outline: 0;
}
&:focus {
color: var(--darker-gray);
color: var(--dark-gray);
border-color: var(--accent);
outline: 0;
}
Expand Down

0 comments on commit db8db1f

Please sign in to comment.