mirror of
https://github.com/ansible/awx.git
synced 2026-02-14 01:34:45 -03:30
Fix page header styles, search icon, and vertical separator
This commit is contained in:
@@ -77,11 +77,9 @@ class DataListToolbar extends React.Component {
|
||||
/>
|
||||
</ToolbarItem>
|
||||
</ToolbarGroup>
|
||||
{ (showExpandCollapse || additionalControls.length) ? (
|
||||
<VerticalSeparator />
|
||||
) : null}
|
||||
{showExpandCollapse && (
|
||||
<Fragment>
|
||||
<VerticalSeparator />
|
||||
<ToolbarGroup>
|
||||
<ExpandCollapse
|
||||
isCompact={isCompact}
|
||||
|
||||
@@ -105,10 +105,4 @@
|
||||
color: #d2d2d2;
|
||||
}
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.pf-l-toolbar > div {
|
||||
&:last-child{
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -10,6 +10,9 @@ import {
|
||||
DropdownItem,
|
||||
TextInput
|
||||
} from '@patternfly/react-core';
|
||||
import {
|
||||
SearchIcon
|
||||
} from '@patternfly/react-icons';
|
||||
|
||||
class Search extends React.Component {
|
||||
constructor (props) {
|
||||
@@ -103,7 +106,7 @@ class Search extends React.Component {
|
||||
aria-label={i18n._(t`Search`)}
|
||||
onClick={this.handleSearch}
|
||||
>
|
||||
<i className="fas fa-search" aria-hidden="true" />
|
||||
<SearchIcon />
|
||||
</Button>
|
||||
</div>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user