From c67088628f8b5eea24304e630a9ffcaf757b591c Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 12 Feb 2019 09:05:22 -0500 Subject: [PATCH] fix border color --- src/components/DataListToolbar/styles.scss | 2 +- src/components/Lookup/Lookup.jsx | 4 ++-- src/components/Pagination/styles.scss | 2 +- src/components/SelectedList/styles.scss | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/DataListToolbar/styles.scss b/src/components/DataListToolbar/styles.scss index 1a31982629..535d6aacaf 100644 --- a/src/components/DataListToolbar/styles.scss +++ b/src/components/DataListToolbar/styles.scss @@ -1,6 +1,6 @@ .awx-toolbar { --awx-toolbar--BackgroundColor: var(--pf-global--BackgroundColor--light-100); - --awx-toolbar--BorderColor: #d1d1d1; + --awx-toolbar--BorderColor: #ebebeb; --awx-toolbar--BorderWidth: var(--pf-global--BorderWidth--sm); border-bottom: var(--awx-toolbar--BorderWidth) solid var(--awx-toolbar--BorderColor); diff --git a/src/components/Lookup/Lookup.jsx b/src/components/Lookup/Lookup.jsx index acf0f2ec2e..6a1c8962ad 100644 --- a/src/components/Lookup/Lookup.jsx +++ b/src/components/Lookup/Lookup.jsx @@ -19,8 +19,8 @@ import Pagination from '../Pagination'; const paginationStyling = { paddingLeft: '0', justifyContent: 'flex-end', - borderRight: '1px solid #d1d1d1', - borderBottom: '1px solid #d1d1d1', + borderRight: '1px solid #ebebeb', + borderBottom: '1px solid #ebebeb', borderTop: '0' }; diff --git a/src/components/Pagination/styles.scss b/src/components/Pagination/styles.scss index 8042bcf8fb..78141870ba 100644 --- a/src/components/Pagination/styles.scss +++ b/src/components/Pagination/styles.scss @@ -1,6 +1,6 @@ .awx-pagination { --awx-pagination--BackgroundColor: var(--pf-global--BackgroundColor--light-100); - --awx-pagination--BorderColor: #d1d1d1; + --awx-pagination--BorderColor: #dbdbdb; --awx-pagination--disabled-BackgroundColor: #f2f2f2; --awx-pagination--disabled-Color: #C2C2CA; diff --git a/src/components/SelectedList/styles.scss b/src/components/SelectedList/styles.scss index 95f36094d6..4bf49ecfa7 100644 --- a/src/components/SelectedList/styles.scss +++ b/src/components/SelectedList/styles.scss @@ -1,6 +1,6 @@ .awx-selectedList { --awx-selectedList--BackgroundColor: var(--pf-global--BackgroundColor--light-100); - --awx-selectedList--BorderColor: #d1d1d1; + --awx-selectedList--BorderColor: #ebebeb; --awx-selectedList--BorderWidth: var(--pf-global--BorderWidth--sm); --awx-selectedList--FontSize: var(--pf-c-chip__text--FontSize);