Merge pull request #10796 from KDSBrowne/2.3-issue-10779

Fix actions bar buttons not being clickable on iPad
This commit is contained in:
Fred Dixon 2020-11-06 15:52:36 -05:00 committed by GitHub
commit a5b0d0318d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class ActionsDropdown extends PureComponent {
}
return (
<Dropdown ref={(ref) => { this._dropdown = ref; }}>
<Dropdown className={styles.dropdown} ref={(ref) => { this._dropdown = ref; }}>
<DropdownTrigger tabIndex={0} accessKey={OPEN_ACTIONS_AK}>
<Button
hideLabel

View File

@ -118,6 +118,11 @@
}
}
.dropdown,
.btn {
z-index: 3;
}
.presentationItem {
span {
text-overflow: ellipsis;