diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index 43d23b84d..d38dbd2f1 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -262,7 +262,7 @@ class SearchView extends Component {
{this.changeSearchQuery(e.target.value)}} /> + onChange={e => {this.changeSearchQuery(e.target.value)}} autoFocus/> {isIos ? : null} this.changeSearchQuery('')} />
diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index 416dd1055..7675b860f 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -60,7 +60,7 @@ const AddCommentPopup = inject("storeComments")(observer(props => {
{userInfo.name}
- {setText(event.target.value);}}> + {setText(event.target.value);}}>
diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 864c8798e..90cffd6ec 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -888,6 +888,16 @@ input[type="number"]::-webkit-inner-spin-button { height: 100%; } +.dropdown-list { + &__placeholder { + opacity: 0.6; + .item-inner { + border-bottom: 1px solid var(--f7-list-item-border-color); + } + } +} + + diff --git a/apps/documenteditor/mobile/src/view/DropdownList.jsx b/apps/documenteditor/mobile/src/view/DropdownList.jsx index 8752b8f9f..faeb7866e 100644 --- a/apps/documenteditor/mobile/src/view/DropdownList.jsx +++ b/apps/documenteditor/mobile/src/view/DropdownList.jsx @@ -8,9 +8,9 @@ const PageDropdownList = props => { return ( - + {listItems.length && listItems.map((elem, index) => ( - props.onChangeItemList(elem.value)}> + props.onChangeItemList(elem.value)}> ))}