Commit 3f269bcf authored by Enrique Alcántara's avatar Enrique Alcántara

Merge branch '224120-replace-gray-500-value-replace-usages-with-gray-300' into 'master'

Update $gray-500 hex value and replace usages with $gray-300

Closes #224120

See merge request gitlab-org/gitlab!38229
parents c1490972 c890f998
...@@ -88,7 +88,7 @@ export default { ...@@ -88,7 +88,7 @@ export default {
</div> </div>
</div> </div>
<div <div
class="gl-display-flex gl-align-items-center gl-justify-content-space-between gl-font-sm gl-text-gray-500" class="gl-display-flex gl-align-items-center gl-justify-content-space-between gl-font-sm gl-text-gray-300"
> >
<div> <div>
<slot name="left-secondary"></slot> <slot name="left-secondary"></slot>
......
...@@ -82,7 +82,7 @@ export default { ...@@ -82,7 +82,7 @@ export default {
:disabled="item.deleting" :disabled="item.deleting"
:text="item.location" :text="item.location"
:title="item.location" :title="item.location"
css-class="btn-default btn-transparent btn-clipboard gl-text-gray-500" css-class="btn-default btn-transparent btn-clipboard gl-text-gray-300"
/> />
<gl-icon <gl-icon
v-if="item.failedDelete" v-if="item.failedDelete"
......
...@@ -18,7 +18,7 @@ export default { ...@@ -18,7 +18,7 @@ export default {
/> />
<gl-icon <gl-icon
name="search" name="search"
class="dropdown-input-search gl-absolute gl-top-3 gl-right-5 gl-text-gray-500 gl-pointer-events-none" class="dropdown-input-search gl-absolute gl-top-3 gl-right-5 gl-text-gray-300 gl-pointer-events-none"
/> />
<gl-icon <gl-icon
name="close" name="close"
......
...@@ -76,7 +76,7 @@ export default { ...@@ -76,7 +76,7 @@ export default {
<template> <template>
<gl-new-dropdown :text="value" block lazy menu-class="gl-w-full!"> <gl-new-dropdown :text="value" block lazy menu-class="gl-w-full!">
<template #button-content> <template #button-content>
<span class="gl-flex-grow-1" :class="{ 'gl-text-gray-500': !value }"> <span class="gl-flex-grow-1" :class="{ 'gl-text-gray-300': !value }">
{{ selectedTimezoneLabel }} {{ selectedTimezoneLabel }}
</span> </span>
<gl-icon name="chevron-down" /> <gl-icon name="chevron-down" />
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
} }
&-icon { &-icon {
color: $gray-500; color: $gray-300;
} }
&-footer { &-footer {
......
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
} }
&:hover { &:hover {
border-color: $gray-500; border-color: $gray-300;
} }
} }
......
...@@ -295,7 +295,7 @@ body { ...@@ -295,7 +295,7 @@ body {
&.ui-dark { &.ui-dark {
@include gitlab-theme( @include gitlab-theme(
$gray-200, $gray-200,
$gray-500, $gray-300,
$gray-700, $gray-700,
$gray-800, $gray-800,
$gray-900, $gray-900,
......
...@@ -34,11 +34,11 @@ ...@@ -34,11 +34,11 @@
.ci-status-icon-preparing { .ci-status-icon-preparing {
svg { svg {
fill: $gray-500; fill: $gray-300;
} }
&.add-border { &.add-border {
@include borderless-status-icon($gray-500); @include borderless-status-icon($gray-300);
} }
} }
......
...@@ -168,7 +168,7 @@ ...@@ -168,7 +168,7 @@
&::before { &::before {
content: ''; content: '';
border-left: 1px solid $gray-500; border-left: 1px solid $gray-300;
position: absolute; position: absolute;
top: $gl-padding; top: $gl-padding;
bottom: $gl-padding; bottom: $gl-padding;
......
...@@ -167,7 +167,7 @@ $gray-100: #dbdbdb !default; ...@@ -167,7 +167,7 @@ $gray-100: #dbdbdb !default;
$gray-200: #bfbfbf !default; $gray-200: #bfbfbf !default;
$gray-300: #999 !default; $gray-300: #999 !default;
$gray-400: #868686 !default; $gray-400: #868686 !default;
$gray-500: #a7a7a7 !default; $gray-500: #666 !default;
$gray-600: #919191 !default; $gray-600: #919191 !default;
$gray-700: #707070 !default; $gray-700: #707070 !default;
$gray-800: #4f4f4f !default; $gray-800: #4f4f4f !default;
......
...@@ -70,5 +70,5 @@ ...@@ -70,5 +70,5 @@
.animate-flicker { .animate-flicker {
animation: flickerAnimation 1.5s infinite; animation: flickerAnimation 1.5s infinite;
fill: $gray-500; fill: $gray-300;
} }
...@@ -809,7 +809,7 @@ ...@@ -809,7 +809,7 @@
&.ci-status-icon-created, &.ci-status-icon-created,
&.ci-status-icon-skipped { &.ci-status-icon-skipped {
@include mini-pipeline-graph-color($white, $gray-100, $gray-200, $gray-500, $gray-600, $gray-700); @include mini-pipeline-graph-color($white, $gray-100, $gray-200, $gray-300, $gray-600, $gray-700);
} }
} }
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
&.sortable-chosen .draggable-panel { &.sortable-chosen .draggable-panel {
background: $white; background: $white;
box-shadow: 0 0 4px $gray-500; box-shadow: 0 0 4px $gray-300;
} }
.draggable-remove { .draggable-remove {
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
} }
&.ci-preparing { &.ci-preparing {
@include status-color($gray-100, $gray-500, $gray-600); @include status-color($gray-100, $gray-300, $gray-600);
} }
&.ci-pending, &.ci-pending,
......
---
title: ee Updating $gray-500 hex value and replacing instances with $gray-300
merge_request: 38229
author:
type: other
...@@ -153,7 +153,7 @@ dropdown-menu-user dropdown-menu-selectable dropdown-menu-author" ...@@ -153,7 +153,7 @@ dropdown-menu-user dropdown-menu-selectable dropdown-menu-author"
/> />
<gl-icon <gl-icon
name="search" name="search"
class="dropdown-input-search gl-absolute gl-top-3 gl-right-5 gl-text-gray-500 gl-pointer-events-none" class="dropdown-input-search gl-absolute gl-top-3 gl-right-5 gl-text-gray-300 gl-pointer-events-none"
/> />
<gl-icon <gl-icon
name="close" name="close"
......
...@@ -111,7 +111,7 @@ export default { ...@@ -111,7 +111,7 @@ export default {
/> />
<gl-icon <gl-icon
name="search" name="search"
class="dropdown-input-search gl-absolute gl-top-3 gl-right-5 gl-text-gray-500 gl-pointer-events-none" class="dropdown-input-search gl-absolute gl-top-3 gl-right-5 gl-text-gray-300 gl-pointer-events-none"
/> />
<gl-icon <gl-icon
name="close" name="close"
......
...@@ -81,7 +81,7 @@ export default { ...@@ -81,7 +81,7 @@ export default {
v-gl-tooltip v-gl-tooltip
:title="tooltipTitle(list.created_at)" :title="tooltipTitle(list.created_at)"
data-testid="ffUserListTimestamp" data-testid="ffUserListTimestamp"
class="gl-text-gray-500 gl-mb-2" class="gl-text-gray-300 gl-mb-2"
> >
{{ createdTimeago(list) }} {{ createdTimeago(list) }}
</span> </span>
......
...@@ -23,7 +23,7 @@ export default { ...@@ -23,7 +23,7 @@ export default {
severityLevels: { severityLevels: {
[severityLevels.CRITICAL]: 'gl-text-red-900', [severityLevels.CRITICAL]: 'gl-text-red-900',
[severityLevels.HIGH]: 'gl-text-red-700', [severityLevels.HIGH]: 'gl-text-red-700',
[severityLevels.UNKNOWN]: 'gl-text-gray-500', [severityLevels.UNKNOWN]: 'gl-text-gray-300',
[severityLevels.MEDIUM]: 'gl-text-orange-600', [severityLevels.MEDIUM]: 'gl-text-orange-600',
[severityLevels.LOW]: 'gl-text-orange-500', [severityLevels.LOW]: 'gl-text-orange-500',
[severityLevels.NONE]: 'gl-text-green-500', [severityLevels.NONE]: 'gl-text-green-500',
......
...@@ -160,7 +160,7 @@ export default { ...@@ -160,7 +160,7 @@ export default {
<div class="gl-text-overflow-ellipsis gl-overflow-hidden" :title="vulnerabilityIdentifier"> <div class="gl-text-overflow-ellipsis gl-overflow-hidden" :title="vulnerabilityIdentifier">
{{ vulnerabilityIdentifier }} {{ vulnerabilityIdentifier }}
</div> </div>
<div v-if="shouldShowExtraIdentifierCount" class="gl-text-gray-500"> <div v-if="shouldShowExtraIdentifierCount" class="gl-text-gray-300">
<gl-sprintf :message="__('+ %{count} more')"> <gl-sprintf :message="__('+ %{count} more')">
<template #count> <template #count>
{{ extraIdentifierCount }} {{ extraIdentifierCount }}
...@@ -176,7 +176,7 @@ export default { ...@@ -176,7 +176,7 @@ export default {
<div class="text-capitalize"> <div class="text-capitalize">
{{ useConvertReportType }} {{ useConvertReportType }}
</div> </div>
<div v-if="vulnerabilityVendor" class="gl-text-gray-500" data-testid="vulnerability-vendor"> <div v-if="vulnerabilityVendor" class="gl-text-gray-300" data-testid="vulnerability-vendor">
{{ vulnerabilityVendor }} {{ vulnerabilityVendor }}
</div> </div>
</div> </div>
......
...@@ -346,7 +346,7 @@ export default { ...@@ -346,7 +346,7 @@ export default {
<div <div
v-if="shouldShowExtraIdentifierCount(item.identifiers)" v-if="shouldShowExtraIdentifierCount(item.identifiers)"
data-testid="vulnerability-more-identifiers" data-testid="vulnerability-more-identifiers"
class="gl-text-gray-500" class="gl-text-gray-300"
> >
<gl-sprintf :message="__('+ %{count} more')"> <gl-sprintf :message="__('+ %{count} more')">
<template #count> <template #count>
...@@ -360,7 +360,7 @@ export default { ...@@ -360,7 +360,7 @@ export default {
<div data-testid="vulnerability-report-type" class="text-capitalize"> <div data-testid="vulnerability-report-type" class="text-capitalize">
{{ useConvertReportType(item.reportType) }} {{ useConvertReportType(item.reportType) }}
</div> </div>
<div data-testid="vulnerability-vendor" class="gl-text-gray-500"> <div data-testid="vulnerability-vendor" class="gl-text-gray-300">
{{ item.scanner.vendor }} {{ item.scanner.vendor }}
</div> </div>
</template> </template>
......
...@@ -23,7 +23,7 @@ export default { ...@@ -23,7 +23,7 @@ export default {
severityLevels: { severityLevels: {
[severityLevels.CRITICAL]: 'gl-text-red-900', [severityLevels.CRITICAL]: 'gl-text-red-900',
[severityLevels.HIGH]: 'gl-text-red-700', [severityLevels.HIGH]: 'gl-text-red-700',
[severityLevels.UNKNOWN]: 'gl-text-gray-500', [severityLevels.UNKNOWN]: 'gl-text-gray-300',
[severityLevels.MEDIUM]: 'gl-text-orange-600', [severityLevels.MEDIUM]: 'gl-text-orange-600',
[severityLevels.LOW]: 'gl-text-orange-500', [severityLevels.LOW]: 'gl-text-orange-500',
[severityLevels.NONE]: 'gl-text-green-500', [severityLevels.NONE]: 'gl-text-green-500',
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
border-color: $gray-700; border-color: $gray-700;
&.link:hover { &.link:hover {
background-color: $gray-500; background-color: $gray-300;
border-color: $gray-900; border-color: $gray-900;
} }
} }
......
...@@ -7,7 +7,7 @@ $label-blue: #428bca; ...@@ -7,7 +7,7 @@ $label-blue: #428bca;
.badge-inactive { .badge-inactive {
color: $white; color: $white;
background-color: $gray-500; background-color: $gray-300;
} }
.seach-icon-input, .seach-icon-input,
......
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