Fix CSS errors in linter
parent
60317f7d20
commit
3087cb3cbe
|
@ -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 {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
&:hover {
|
||||
@include transition(color .3s linear);
|
||||
color: $green-taiga;
|
||||
&.icon-delete {
|
||||
.icon-delete {
|
||||
color: $red;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue