summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConstance Okoghenun <cokoghenun@gitlab.com>2018-07-02 17:25:52 +0000
committerAnnabel Gray <annabel.m.gray@gmail.com>2018-07-02 17:25:52 +0000
commit0f90249c05fc553df43cab5d29517ba382eef696 (patch)
tree64f1cdfe826c6d3aa0f9446cf6a60671d1b448e6
parented4675c66c3764f24b02a4479187764ea840f64c (diff)
downloadgitlab-ce-0f90249c05fc553df43cab5d29517ba382eef696.tar.gz
Fixed last commit author link is blue regression
-rw-r--r--app/assets/stylesheets/pages/commits.scss14
-rw-r--r--changelogs/unreleased/fix-last-commit-author-link-is-blue.yml5
2 files changed, 14 insertions, 5 deletions
diff --git a/app/assets/stylesheets/pages/commits.scss b/app/assets/stylesheets/pages/commits.scss
index 49226ae8eac..f75be4e01cd 100644
--- a/app/assets/stylesheets/pages/commits.scss
+++ b/app/assets/stylesheets/pages/commits.scss
@@ -261,12 +261,16 @@
vertical-align: baseline;
}
- a.autodevops-badge {
- color: $white-light;
- }
+ a {
+ color: $gl-text-color;
- a.autodevops-link {
- color: $gl-link-color;
+ &.autodevops-badge {
+ color: $white-light;
+ }
+
+ &.autodevops-link {
+ color: $gl-link-color;
+ }
}
.commit-row-description {
diff --git a/changelogs/unreleased/fix-last-commit-author-link-is-blue.yml b/changelogs/unreleased/fix-last-commit-author-link-is-blue.yml
new file mode 100644
index 00000000000..aaceeaecfb1
--- /dev/null
+++ b/changelogs/unreleased/fix-last-commit-author-link-is-blue.yml
@@ -0,0 +1,5 @@
+---
+title: Updated last commit link color
+merge_request: 20234
+author: Constance Okoghenun
+type: fixed