Merge branch 'release/v7.0.0' of https://github.com/ONLYOFFICE/web-apps into release/v7.0.0
This commit is contained in:
commit
dfc359f0ef
|
@ -262,7 +262,7 @@ class SearchView extends Component {
|
||||||
<div className="searchbar-inner__center">
|
<div className="searchbar-inner__center">
|
||||||
<div className="searchbar-input-wrap">
|
<div className="searchbar-input-wrap">
|
||||||
<input className="searchbar-input" value={searchQuery} placeholder={_t.textSearch} type="search" maxLength="255"
|
<input className="searchbar-input" value={searchQuery} placeholder={_t.textSearch} type="search" maxLength="255"
|
||||||
onChange={e => {this.changeSearchQuery(e.target.value)}} />
|
onChange={e => {this.changeSearchQuery(e.target.value)}} autoFocus/>
|
||||||
{isIos ? <i className="searchbar-icon" /> : null}
|
{isIos ? <i className="searchbar-icon" /> : null}
|
||||||
<span className="input-clear-button" onClick={() => this.changeSearchQuery('')} />
|
<span className="input-clear-button" onClick={() => this.changeSearchQuery('')} />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -60,7 +60,7 @@ const AddCommentPopup = inject("storeComments")(observer(props => {
|
||||||
<div className='name'>{userInfo.name}</div>
|
<div className='name'>{userInfo.name}</div>
|
||||||
</div>
|
</div>
|
||||||
<div className='wrap-textarea'>
|
<div className='wrap-textarea'>
|
||||||
<Input className="input-comment" type='textarea' placeholder={_t.textAddComment} value={stateText} onChange={(event) => {setText(event.target.value);}}></Input>
|
<Input className="input-comment" autofocus type='textarea' placeholder={_t.textAddComment} value={stateText} onChange={(event) => {setText(event.target.value);}}></Input>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Popup>
|
</Popup>
|
||||||
|
|
|
@ -888,6 +888,16 @@ input[type="number"]::-webkit-inner-spin-button {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dropdown-list {
|
||||||
|
&__placeholder {
|
||||||
|
opacity: 0.6;
|
||||||
|
.item-inner {
|
||||||
|
border-bottom: 1px solid var(--f7-list-item-border-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,9 +8,9 @@ const PageDropdownList = props => {
|
||||||
return (
|
return (
|
||||||
<View style={props.style}>
|
<View style={props.style}>
|
||||||
<Page>
|
<Page>
|
||||||
<List>
|
<List className="dropdown-list">
|
||||||
{listItems.length && listItems.map((elem, index) => (
|
{listItems.length && listItems.map((elem, index) => (
|
||||||
<ListItem key={index} className='no-indicator' style={index === 0 ? {opacity: 0.6} : null} title={elem.caption} onClick={() => props.onChangeItemList(elem.value)}></ListItem>
|
<ListItem key={index} className={'no-indicator ' + (index === 0 ? 'dropdown-list__placeholder' : '')} title={elem.caption} onClick={() => props.onChangeItemList(elem.value)}></ListItem>
|
||||||
))}
|
))}
|
||||||
</List>
|
</List>
|
||||||
</Page>
|
</Page>
|
||||||
|
|
Loading…
Reference in a new issue