Skip to content
Snippets Groups Projects
Unverified Commit 5abc1682 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray
Browse files

Change pipeline charts colors to match legend

parent bce886b7
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,16 +6,16 @@ document.addEventListener('DOMContentLoaded', () => {
const data = {
labels: chartScope.labels,
datasets: [{
fillColor: '#7f8fa4',
strokeColor: '#7f8fa4',
pointColor: '#7f8fa4',
fillColor: '#707070',
strokeColor: '#707070',
pointColor: '#707070',
pointStrokeColor: '#EEE',
data: chartScope.totalValues,
},
{
fillColor: '#44aa22',
strokeColor: '#44aa22',
pointColor: '#44aa22',
fillColor: '#1aaa55',
strokeColor: '#1aaa55',
pointColor: '#1aaa55',
pointStrokeColor: '#fff',
data: chartScope.successValues,
},
Loading
Loading
Loading
Loading
@@ -993,3 +993,11 @@ button.mini-pipeline-graph-dropdown-toggle {
font-weight: $gl-font-weight-normal;
line-height: 1.5;
}
.legend-all {
color: $gl-text-color-secondary;
}
.legend-success {
color: $green-500;
}
Loading
Loading
@@ -4,11 +4,11 @@
%h4= _("Pipelines charts")
%p
 
%span.cgreen
%span.legend-success
= icon("circle")
= s_("Pipeline|success")
 
%span.cgray
%span.legend-all
= icon("circle")
= s_("Pipeline|all")
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment