Commit 46d9cf15 authored by Phil Hughes's avatar Phil Hughes

Merge branch '327553-jira-issue-label-colors-should-have-higher-contrast' into 'master'

Update label color on Jira issues pages

See merge request gitlab-org/gitlab!59226
parents 50fd1ac6 a1c7062a
...@@ -200,7 +200,7 @@ export default { ...@@ -200,7 +200,7 @@ export default {
@filter="handleFilterIssues" @filter="handleFilterIssues"
> >
<template #nav-actions> <template #nav-actions>
<gl-button :href="issueCreateUrl" target="_blank" <gl-button :href="issueCreateUrl" target="_blank" class="gl-my-5"
>{{ s__('Integrations|Create new issue in Jira') }}<gl-icon name="external-link" >{{ s__('Integrations|Create new issue in Jira') }}<gl-icon name="external-link"
/></gl-button> /></gl-button>
</template> </template>
......
...@@ -34,8 +34,8 @@ module Integrations ...@@ -34,8 +34,8 @@ module Integrations
{ {
title: name, title: name,
name: name, name: name,
color: '#EBECF0', color: '#0052CC',
text_color: '#283856' text_color: '#FFFFFF'
} }
end end
end end
......
---
title: Update label color on Jira issues pages
merge_request: 59226
author:
type: changed
...@@ -18,8 +18,8 @@ export const mockJiraIssue1 = { ...@@ -18,8 +18,8 @@ export const mockJiraIssue1 = {
labels: [ labels: [
{ {
name: 'backend', name: 'backend',
color: '#EBECF0', color: '#0052CC',
text_color: '#283856', text_color: '#FFFFFF',
}, },
], ],
author: { author: {
......
...@@ -20,8 +20,8 @@ export const mockJiraIssue = { ...@@ -20,8 +20,8 @@ export const mockJiraIssue = {
{ {
title: 'In Progress', title: 'In Progress',
description: 'Work that is still in progress', description: 'Work that is still in progress',
color: '#EBECF0', color: '#0052CC',
text_color: '#283856', text_color: '#FFFFFF',
}, },
], ],
references: { references: {
......
...@@ -88,8 +88,8 @@ RSpec.describe Integrations::Jira::IssueDetailEntity do ...@@ -88,8 +88,8 @@ RSpec.describe Integrations::Jira::IssueDetailEntity do
{ {
title: 'backend', title: 'backend',
name: 'backend', name: 'backend',
color: '#EBECF0', color: '#0052CC',
text_color: '#283856' text_color: '#FFFFFF'
} }
], ],
author: hash_including( author: hash_including(
......
...@@ -55,8 +55,8 @@ RSpec.describe Integrations::Jira::IssueEntity do ...@@ -55,8 +55,8 @@ RSpec.describe Integrations::Jira::IssueEntity do
{ {
title: 'backend', title: 'backend',
name: 'backend', name: 'backend',
color: '#EBECF0', color: '#0052CC',
text_color: '#283856' text_color: '#FFFFFF'
} }
], ],
author: hash_including( author: hash_including(
......
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