Commit 37d43fa9 authored by dimitrieh's avatar dimitrieh

fix rake scss linting errors

parent 6e7b4110
......@@ -84,9 +84,9 @@
@for $i from 1 through length($defaultProperties) {
$p: null;
@if $i <= length($transition) {
$p: nth($transition, $i)
$p: nth($transition, $i);
} @else {
$p: nth($defaultProperties, $i)
$p: nth($defaultProperties, $i);
}
$unfoldedTransition: append($unfoldedTransition, $p);
}
......
......@@ -108,7 +108,7 @@
border-radius: $label-border-radius;
&:hover {
box-shadow: inset 0 0 0 80px rgba(0,0,0,0.1);
box-shadow: inset 0 0 0 80px $label-remove-border;
}
}
......@@ -209,7 +209,7 @@
padding: 6px 10px 6px 9px;
&:hover {
box-shadow: inset 0 0 0 80px rgba(0,0,0,0.1);
box-shadow: inset 0 0 0 80px $label-remove-border;
}
}
......
......@@ -25,7 +25,7 @@ textarea:hover,
}
input[type="checkbox"]:hover {
box-shadow: 0 0 2px 2px rgba(153, 212, 247, 0.4), 0 0 0 1px rgba(153, 212, 247, 0.4);
box-shadow: 0 0 2px 2px lighten($search-input-focus-shadow-color, 20%), 0 0 0 1px lighten($search-input-focus-shadow-color, 20%);
}
.search {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment