Commit c0e1c87b authored by Nathan Friend's avatar Nathan Friend

Fix button link foreground color

This commit fixes a regression that caused button links to render with a
dark foreground instead of a white foreground.
parent 2cd6006a
......@@ -123,7 +123,7 @@ ul.content-list {
font-weight: $gl-font-weight-bold;
}
a:not(.default-link-color) {
a {
color: $gl-text-color;
}
......
.tag-release-link {
color: $blue-600 !important;
}
......@@ -24,7 +24,7 @@
.text-secondary
= icon('rocket')
= _("Release")
= link_to release.name, project_releases_path(@project, anchor: release.tag), class: 'default-link-color'
= link_to release.name, project_releases_path(@project, anchor: release.tag), class: 'tag-release-link'
- if release.description.present?
.description.md.prepend-top-default
= markdown_field(release, :description)
......
---
title: Fix button link foreground color
merge_request: 18669
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment