summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/icons.scss
diff options
context:
space:
mode:
authorSimon Knox <psimyn@gmail.com>2017-11-23 21:13:57 +1100
committerSimon Knox <psimyn@gmail.com>2017-11-23 22:10:49 +1100
commit1d6f37861ed04201f90b0248fc23e51b529addac (patch)
treef9dce42e0340c9f7f0ff627d574bd73b4489c1f5 /app/assets/stylesheets/framework/icons.scss
parentf19a5e6dc27935c4fed5e736152105a363f5a8f8 (diff)
downloadgitlab-ce-1d6f37861ed04201f90b0248fc23e51b529addac.tar.gz
override a:focus styles. fix Commit page pipeline icon40459-svg-icon-fix
Diffstat (limited to 'app/assets/stylesheets/framework/icons.scss')
-rw-r--r--app/assets/stylesheets/framework/icons.scss21
1 files changed, 14 insertions, 7 deletions
diff --git a/app/assets/stylesheets/framework/icons.scss b/app/assets/stylesheets/framework/icons.scss
index 2fc8a3508d5..9e45ed52163 100644
--- a/app/assets/stylesheets/framework/icons.scss
+++ b/app/assets/stylesheets/framework/icons.scss
@@ -1,14 +1,16 @@
.ci-status-icon-success,
.ci-status-icon-passed {
&,
- &:hover {
+ &:hover,
+ &:focus {
color: $green-500;
}
}
.ci-status-icon-failed {
&,
- &:hover {
+ &:hover,
+ &:focus {
color: $gl-danger;
}
}
@@ -17,14 +19,16 @@
.ci-status-icon-failed_with_warnings,
.ci-status-icon-success_with_warnings {
&,
- &:hover {
+ &:hover,
+ &:focus {
color: $orange-500;
}
}
.ci-status-icon-running {
&,
- &:hover {
+ &:hover,
+ &:focus {
color: $blue-400;
}
}
@@ -33,7 +37,8 @@
.ci-status-icon-disabled,
.ci-status-icon-not-found {
&,
- &:hover {
+ &:hover,
+ &:focus {
color: $gl-text-color;
}
}
@@ -41,14 +46,16 @@
.ci-status-icon-created,
.ci-status-icon-skipped {
&,
- &:hover {
+ &:hover,
+ &:focus {
color: $gray-darkest;
}
}
.ci-status-icon-manual {
&,
- &:hover {
+ &:hover,
+ &:focus {
color: $gl-text-color;
}
}