summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/icons.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/icons.scss')
-rw-r--r--app/assets/stylesheets/framework/icons.scss42
1 files changed, 35 insertions, 7 deletions
diff --git a/app/assets/stylesheets/framework/icons.scss b/app/assets/stylesheets/framework/icons.scss
index 1ab5e6a93f9..9e45ed52163 100644
--- a/app/assets/stylesheets/framework/icons.scss
+++ b/app/assets/stylesheets/framework/icons.scss
@@ -1,35 +1,63 @@
.ci-status-icon-success,
.ci-status-icon-passed {
- color: $green-500;
+ &,
+ &:hover,
+ &:focus {
+ color: $green-500;
+ }
}
.ci-status-icon-failed {
- color: $gl-danger;
+ &,
+ &:hover,
+ &:focus {
+ color: $gl-danger;
+ }
}
.ci-status-icon-pending,
.ci-status-icon-failed_with_warnings,
.ci-status-icon-success_with_warnings {
- color: $orange-500;
+ &,
+ &:hover,
+ &:focus {
+ color: $orange-500;
+ }
}
.ci-status-icon-running {
- color: $blue-400;
+ &,
+ &:hover,
+ &:focus {
+ color: $blue-400;
+ }
}
.ci-status-icon-canceled,
.ci-status-icon-disabled,
.ci-status-icon-not-found {
- color: $gl-text-color;
+ &,
+ &:hover,
+ &:focus {
+ color: $gl-text-color;
+ }
}
.ci-status-icon-created,
.ci-status-icon-skipped {
- color: $gray-darkest;
+ &,
+ &:hover,
+ &:focus {
+ color: $gray-darkest;
+ }
}
.ci-status-icon-manual {
- color: $gl-text-color;
+ &,
+ &:hover,
+ &:focus {
+ color: $gl-text-color;
+ }
}
.icon-link {