Fix labels not turning cursors to pointers

This commit is contained in:
Sofia 2017-10-06 21:35:51 +03:00
parent 79a4394f8b
commit 285020dfe9
3 changed files with 9 additions and 2 deletions

View File

@ -260,6 +260,9 @@ input[type=text], button {
color: #c9c9c9;
background-color: #171c94; }
label:hover {
cursor: pointer; }
button:focus, button:hover, button:active, button::-moz-focus-inner {
border: none;
text-decoration: none; }

File diff suppressed because one or more lines are too long

View File

@ -361,6 +361,10 @@ input[type=text], button {
@include hoverable($default-white, $default-blue);
}
label:hover {
cursor: pointer;
}
button {
&:focus, &:hover, &:active, &::-moz-focus-inner {
border: none;