feat: improve outlines

This commit is contained in:
Johannes Millan 2018-04-07 02:56:52 +02:00
parent 5fb50a58dc
commit 5540461df4

View file

@ -83,11 +83,18 @@ $task-inner-padding-left-right: 6px;
&:focus > .inner-wrapper {
background: #eeeeee;
color: #000000;
// outline
outline: none;
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 1), 3px 3px 5px 0 rgba(0, 0, 0, 0.4);
}
@include dark-theme {
&:focus > .inner-wrapper {
background-color: $dark-theme-bg-darker;
color: #dddddd;
// outline
box-shadow: 0 0 3px 0 #ffffff, 0 0 2px 0 #ffffff, 1px 1px 10px 0 #ffffff;
}
}