summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordimitrieh <dimitriehoekstra@gmail.com>2017-01-03 15:45:11 +0100
committerdimitrieh <dimitriehoekstra@gmail.com>2017-01-03 15:45:11 +0100
commit37d43fa9095a43f7610428b2912515ef2e635b54 (patch)
treedfeb0bf968e682ffa583f98afcac2435a281801c
parent6e7b41105c887898c0e1cc0dbe0a5688939e992c (diff)
downloadgitlab-ce-37d43fa9095a43f7610428b2912515ef2e635b54.tar.gz
fix rake scss linting errors
-rw-r--r--app/assets/stylesheets/framework/animations.scss4
-rw-r--r--app/assets/stylesheets/pages/labels.scss4
-rw-r--r--app/assets/stylesheets/pages/search.scss2
3 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/stylesheets/framework/animations.scss b/app/assets/stylesheets/framework/animations.scss
index 572bb51e24b..2f7fda5cb21 100644
--- a/app/assets/stylesheets/framework/animations.scss
+++ b/app/assets/stylesheets/framework/animations.scss
@@ -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);
}
diff --git a/app/assets/stylesheets/pages/labels.scss b/app/assets/stylesheets/pages/labels.scss
index 01473bd3855..689de841cbd 100644
--- a/app/assets/stylesheets/pages/labels.scss
+++ b/app/assets/stylesheets/pages/labels.scss
@@ -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;
}
}
diff --git a/app/assets/stylesheets/pages/search.scss b/app/assets/stylesheets/pages/search.scss
index e524872ff3a..12bff32bbf3 100644
--- a/app/assets/stylesheets/pages/search.scss
+++ b/app/assets/stylesheets/pages/search.scss
@@ -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 {