Fix ClearAdonment for light theme
This commit is contained in:
@@ -103,7 +103,7 @@ class TitleBar extends React.Component<Props, {}> {
|
||||
value={topicFilter}
|
||||
onChange={this.onFilterChange}
|
||||
placeholder="Search…"
|
||||
endAdornment={<div style={{ width: '24px', paddingRight: '8px' }}><ClearAdornment action={this.clearFilter} value={topicFilter} /></div>}
|
||||
endAdornment={<div style={{ width: '24px', paddingRight: '8px' }}><ClearAdornment variant="primary" action={this.clearFilter} value={topicFilter} /></div>}
|
||||
classes={{ root: classes.inputRoot, input: classes.inputInput }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -1,28 +1,30 @@
|
||||
import * as React from 'react'
|
||||
import Clear from '@material-ui/icons/Clear'
|
||||
import { IconButton } from '@material-ui/core'
|
||||
import { IconButton, Theme } from '@material-ui/core'
|
||||
import { withTheme } from '@material-ui/core/styles'
|
||||
|
||||
interface Props {
|
||||
value?: string
|
||||
action: any
|
||||
style?: React.CSSProperties
|
||||
variant?: 'primary'
|
||||
theme: Theme
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear button for text input fields
|
||||
*/
|
||||
class ClearAdornment extends React.Component<Props, {}> {
|
||||
public render() {
|
||||
if (this.props.value) {
|
||||
return (
|
||||
<IconButton style={{ ...this.props.style, padding: '1px' }} onClick={this.props.action}>
|
||||
<Clear style={{ fontSize: '16px' }} />
|
||||
</IconButton>
|
||||
)
|
||||
}
|
||||
|
||||
function ClearAdornment(props: Props) {
|
||||
if (!props.value) {
|
||||
return null
|
||||
}
|
||||
|
||||
const color = props.variant === 'primary' ? props.theme.palette.primary.contrastText : undefined
|
||||
return (
|
||||
<IconButton style={{ ...props.style, padding: '1px' }} onClick={props.action}>
|
||||
<Clear style={{ color, fontSize: '16px' }} />
|
||||
</IconButton>
|
||||
)
|
||||
}
|
||||
|
||||
export default ClearAdornment
|
||||
export default withTheme(ClearAdornment)
|
||||
|
||||
Reference in New Issue
Block a user