Fix CSS errors in linter

stable
Xavier Julián 2014-10-29 16:22:34 +01:00
parent 60317f7d20
commit 3087cb3cbe
5 changed files with 21 additions and 11 deletions

View File

@ -242,11 +242,11 @@
&:last-child {
margin: 0;
}
&.clickable {
&:hover {
@include transition(background .2s ease-in);
background: darken($whitish, 10%);
}
}
.clickable {
&:hover {
@include transition(background .2s ease-in);
background: darken($whitish, 10%);
}
}
.level {

View File

@ -11,7 +11,6 @@
a {
display: block;
padding: 1rem 0 1rem 1rem;
&.active,
&:hover {
.icon {
@include transition (opacity .3s linear);
@ -19,6 +18,10 @@
}
}
}
.active {
@include transition (opacity .3s linear);
opacity: 1;
}
.icon {
color: $blackish;
float: right;

View File

@ -56,7 +56,7 @@
&:hover {
@include transition(color .3s linear);
color: $green-taiga;
&.icon-delete {
.icon-delete {
color: $red;
}
}

View File

@ -15,7 +15,6 @@
@extend %large;
@extend %title;
opacity: .4;
&.active,
&:hover {
@include transition (opacity .3s linear);
color: $blackish;
@ -23,6 +22,11 @@
}
}
.active {
@include transition (opacity .3s linear);
color: $blackish;
opacity: 1;
}
.icon {
padding-right: .5rem;
}

View File

@ -11,18 +11,21 @@
@extend %large;
@extend %title;
opacity: .2;
&.active,
&:hover {
@include transition (opacity .3s linear);
color: $blackish;
opacity: 1;
}
}
.active {
@include transition (opacity .3s linear);
color: $blackish;
opacity: 1;
}
.icon {
margin-right: .4rem;
}
span.name {
.name {
padding-left: 5px;
}
}