Commit a46f05cd authored by Vitaly Slobodin's avatar Vitaly Slobodin

Merge branch '321364-update-plan-color-code' into 'master'

SCSS - update badge color for new plans

See merge request gitlab-org/gitlab!54685
parents d32ba0c0 1320af59
...@@ -830,8 +830,8 @@ $ci-variable-remove-button-width: calc(1em + #{2 * $gl-padding}); ...@@ -830,8 +830,8 @@ $ci-variable-remove-button-width: calc(1em + #{2 * $gl-padding});
/* /*
GitLab Plans GitLab Plans
*/ */
$gl-gold-plan: #d4af37; $gl-ultimate-plan: #d4af37;
$gl-silver-plan: #91a1ab; $gl-premium-plan: #91a1ab;
$gl-bronze-plan: #cd7f32; $gl-bronze-plan: #cd7f32;
/* /*
......
...@@ -14,13 +14,23 @@ ...@@ -14,13 +14,23 @@
} }
&[data-plan='gold'] { &[data-plan='gold'] {
color: darken($gl-gold-plan, 20%); color: darken($gl-ultimate-plan, 20%);
svg g { fill: $gl-gold-plan; } svg g { fill: $gl-ultimate-plan; }
}
&[data-plan='ultimate'] {
color: darken($gl-ultimate-plan, 20%);
svg g { fill: $gl-ultimate-plan; }
} }
&[data-plan='silver'] { &[data-plan='silver'] {
color: darken($gl-silver-plan, 20%); color: darken($gl-premium-plan, 20%);
svg g { fill: $gl-silver-plan; } svg g { fill: $gl-premium-plan; }
}
&[data-plan='premium'] {
color: darken($gl-premium-plan, 20%);
svg g { fill: $gl-premium-plan; }
} }
&[data-plan='bronze'] { &[data-plan='bronze'] {
......
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