Remove pf base css import and tweak styles

This commit is contained in:
Marliana Lara
2019-02-19 15:59:11 -05:00
parent 9229c8e724
commit 740a9c1e61
4 changed files with 9 additions and 8 deletions

View File

@@ -4,6 +4,7 @@ import {
BackgroundImage,
BackgroundImageSrc,
} from '@patternfly/react-core';
import bgFilter from '@patternfly/patternfly/assets/images/background-filter.svg';
const backgroundImageConfig = {
[BackgroundImageSrc.xs]: '/assets/images/pfbg_576.jpg',
@@ -11,7 +12,7 @@ const backgroundImageConfig = {
[BackgroundImageSrc.sm]: '/assets/images/pfbg_768.jpg',
[BackgroundImageSrc.sm2x]: '/assets/images/pfbg_768@2x.jpg',
[BackgroundImageSrc.lg]: '/assets/images/pfbg_2000.jpg',
[BackgroundImageSrc.filter]: '/assets/images/background-filter.svg#image_overlay',
[BackgroundImageSrc.filter]: `${bgFilter}#image_overlay`,
};
export default ({ children }) => (

View File

@@ -136,6 +136,7 @@ class Lookup extends React.Component {
</Button>
<div className="pf-c-form-control">{this.wrapTags(value)}</div>
<Modal
className="awx-c-modal"
title={`Select ${lookupHeader}`}
isOpen={isModalOpen}
onClose={this.handleModalToggle}