Skip to content

Commit

Permalink
fix: replace #d1d1d1
Browse files Browse the repository at this point in the history
  • Loading branch information
eshankvaish committed Jan 10, 2025
1 parent f5d82af commit 6ef0737
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Jobs/ExpandedRow/ExpandedRow.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

.button-edit--white {
background-color: var(--bg-primary);
box-shadow: inset 0 -1px 0 0 #d1d1d1;
box-shadow: inset 0 -1px 0 0 var(--N200);
}

.button-edit--white .fill-color {
Expand Down
2 changes: 1 addition & 1 deletion src/components/app/list/expandedRow/expandedRow.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

.button-edit--white {
background-color: var(--bg-primary);
box-shadow: inset 0 -1px 0 0 #d1d1d1;
box-shadow: inset 0 -1px 0 0 var(--N200);
}

.button-edit--white .fill-color {
Expand Down
6 changes: 3 additions & 3 deletions src/components/common/lineChart/lineChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class LineChart extends Component<LineChartProps> {
.attr('y1', 0)
.attr('x2', 0)
.attr('y2', height)
.attr('stroke', '#d1d1d1')
.attr('stroke', 'var(--N200)')
.attr('stroke-width', 1)
.attr('opacity', 0)

Expand All @@ -110,7 +110,7 @@ export default class LineChart extends Component<LineChartProps> {
.attr('y', '0')
.attr('width', width)
.attr('height', height)
.attr('stroke', '#d1d1d1')
.attr('stroke', 'var(--N200)')
.attr('fill', 'var(--N50)')
// grid lines
gridGroup
Expand All @@ -126,7 +126,7 @@ export default class LineChart extends Component<LineChartProps> {
.attr('y2', function (d) {
return yScale(d)
})
.attr('stroke', '#d1d1d1')
.attr('stroke', 'var(--N200)')

// Draw X axis
svg.append('g')
Expand Down
2 changes: 1 addition & 1 deletion src/css/patternfly.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3763,7 +3763,7 @@ button.close {
fieldset[disabled] .btn {
background-color: var(--bg-secondary) !important;
background-image: none !important;
border-color: #d1d1d1 !important;
border-color: var(--N200) !important;
color: #8b8d8f !important;
opacity: 1;
}
Expand Down

0 comments on commit 6ef0737

Please sign in to comment.