Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Gray <annabel.m.gray@gmail.com>2018-07-02 20:25:52 +0300
committerAnnabel Gray <annabel.m.gray@gmail.com>2018-07-02 20:25:52 +0300
commit9ce5b098801c9a06ca4352bc0cfb8fc921b45c61 (patch)
tree64f1cdfe826c6d3aa0f9446cf6a60671d1b448e6
parented4675c66c3764f24b02a4479187764ea840f64c (diff)
parent0f90249c05fc553df43cab5d29517ba382eef696 (diff)
Merge branch 'fix-last-commit-author-link-is-blue' into 'master'
Fixed last commit author link is blue regression Closes #48251 See merge request gitlab-org/gitlab-ce!20234
-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