mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Layout to support less hardcoded CSS
This commit is contained in:
parent
b1e4c911eb
commit
eb5b175213
1 changed files with 12 additions and 8 deletions
|
@ -83,6 +83,7 @@ export default class DirectorySearchBox extends React.Component {
|
|||
}
|
||||
|
||||
return <span className={classnames(searchbox_classes)}>
|
||||
<div className="mx_DirectorySearchBox_container">
|
||||
<input type="text" size="64"
|
||||
className="mx_DirectorySearchBox_input"
|
||||
ref={this.collectInput}
|
||||
|
@ -90,7 +91,10 @@ export default class DirectorySearchBox extends React.Component {
|
|||
placeholder="Find a room by keyword or room ID (#matrix:matrix.org)"
|
||||
/>
|
||||
{join_button}
|
||||
<span className="mx_DirectorySearchBox_clear_wrapper">
|
||||
<span className="mx_DirectorySearchBox_clear" onClick={this.onClearClick} />
|
||||
</span>
|
||||
</div>
|
||||
</span>;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue