Skip to content
Snippets Groups Projects
Unverified Commit 1bf910c2 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #12360 from ramonlsouza/fix-action-buttons

fix: action buttons in audio selector - mobile
parents 608ee314 ffb067a8
No related branches found
No related tags found
No related merge requests found
......@@ -255,6 +255,7 @@ class ActionsDropdown extends PureComponent {
amIModerator,
shortcuts: OPEN_ACTIONS_AK,
isMeteorConnected,
isDropdownOpen,
} = this.props;
const availableActions = this.getAvailableActions();
......@@ -272,6 +273,7 @@ class ActionsDropdown extends PureComponent {
<Dropdown className={styles.dropdown} ref={(ref) => { this._dropdown = ref; }}>
<DropdownTrigger tabIndex={0} accessKey={OPEN_ACTIONS_AK}>
<Button
className={isDropdownOpen ? styles.hideDropdownButton : ''}
hideLabel
aria-label={intl.formatMessage(intlMessages.actionsLabel)}
label={intl.formatMessage(intlMessages.actionsLabel)}
......
......@@ -8,6 +8,7 @@ export default withTracker(() => {
const presentations = Presentations.find({ 'conversion.done': true }).fetch();
return ({
presentations,
isDropdownOpen: Session.get('dropdownOpen'),
setPresentation: PresentationUploaderService.setPresentation,
podIds: PresentationPodService.getPresentationPodIds(),
});
......
......@@ -111,12 +111,16 @@
}
}
.btn {
z-index: 3;
}
.dropdown{
z-index: 4;
}
.hideDropdownButton {
@include mq($small-only) {
display:none;
}
}
.presentationItem {
span {
text-overflow: ellipsis;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment