Give delete button a warning color

This commit is contained in:
2018-04-01 16:03:03 +02:00
parent c7a4faf5b2
commit 74e442ce8b
2 changed files with 23 additions and 0 deletions

View File

@@ -30,6 +30,28 @@ header {
}
}
&.delete {
border-color: $dark-red;
color: $dark-red;
svg {
path {
fill: $dark-red;
}
}
&:hover {
background-color: $dark-red;
color: #fff;
svg {
path {
fill: #fff;
}
}
}
}
&:disabled:not(.active),
&:disabled:not(.active):hover {
border-color: $dark-grey-3;