Fix no difference between hover and selected in lightbox

stable
Xavier Julián 2015-04-24 07:57:54 +02:00
parent f8acb6db4a
commit 0d4bee68a9
1 changed files with 6 additions and 3 deletions

View File

@ -58,7 +58,7 @@
.iocaine {
&:hover {
background: $fresh-taiga;
border: 1px solid $fresh-taiga;
border: 1px solid $green-taiga;
color: $white;
transition: all .2s ease-in;
}
@ -68,7 +68,7 @@
padding: 8px 30px;
&:hover {
background: $red-light;
border: 1px solid $red-light;
border: 1px solid $red;
color: $white;
transition: all .2s ease-in;
}
@ -79,14 +79,17 @@
.team-requirement,
.iocaine-flag {
input:checked+label {
background: $fresh-taiga;
background: $green-taiga;
border: 1px solid $green-taiga;
color: $white;
}
}
.blocking-flag {
input:checked+label {
background: $red;
border: 1px solid $red;
color: $white;
}
}