From 06b42e69d0189b88966ab3f78d7cc345778ba2f9 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Fri, 3 Dec 2021 16:53:09 +0300 Subject: [PATCH 1/2] [DE PE SSE] Fix Bug 53972 --- apps/common/mobile/lib/view/Search.jsx | 2 +- apps/common/mobile/lib/view/collaboration/Comments.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);}}>
From b43516d8075395ace9fab2c50eafcdef92358f11 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 9 Dec 2021 19:23:20 +0400 Subject: [PATCH 2/2] [DE mobile] Fix Bug 54281 --- apps/common/mobile/resources/less/common.less | 10 ++++++++++ apps/documenteditor/mobile/src/view/DropdownList.jsx | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) 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)}> ))}