Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Fix bookmark hanger dialog overflow #8646

Merged
merged 1 commit into from
May 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/renderer/components/common/commonForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ const styles = StyleSheet.create({
cursor: 'default',
width: '100%',
maxWidth: globalStyles.spacing.dialogWidth,
minWidth: '310px',
height: 'auto',
maxHeight: '100vh', // #8634: commonStyles.flyoutDialog,
userSelect: 'none'

// Need a general solution
Expand All @@ -159,6 +162,7 @@ const styles = StyleSheet.create({

commonFormBookmarkHanger: {
maxWidth: globalStyles.spacing.bookmarkHangerMaxWidth,
height: 'initial', // #8634

// Cancel the inherited value from .navbarMenubarFlexContainer, which is 'nowrap'.
whiteSpace: 'normal'
Expand Down