This commit is contained in:
Markos Gogoulos 2025-10-25 19:25:16 +03:00
parent 7fa605ff6b
commit 9ccd0fa44e
3 changed files with 20 additions and 22 deletions

View File

@ -1 +1 @@
VERSION = "7.991.0"
VERSION = "7.9913.0"

View File

@ -145,9 +145,8 @@ class ProfileSearchBar extends React.PureComponent {
if (!this.state.visibleForm) {
return (
<div>
<span style={{ position: 'relative' }}>
<CircleIconButton buttonShadow={false} onClick={this.showForm}>
<span style={{ display: 'flex', alignItems: 'center', cursor: 'pointer', position: 'relative' }} onClick={this.showForm}>
<CircleIconButton buttonShadow={false}>
<i className="material-icons">search</i>
</CircleIconButton>
{hasSearchText ? (
@ -163,13 +162,12 @@ class ProfileSearchBar extends React.PureComponent {
}}></span>
) : null}
</span>
</div>
);
}
return (
<form method="get" action={LinksContext._currentValue.profile.media} onSubmit={this.onFormSubmit}>
<span style={{ position: 'relative' }}>
<span style={{ display: 'flex', alignItems: 'center', position: 'relative' }}>
<CircleIconButton buttonShadow={false}>
<i className="material-icons">search</i>
</CircleIconButton>

File diff suppressed because one or more lines are too long