diff --git a/src/components/MediaLibrary/FocusTrap.js b/src/components/MediaLibrary/FocusTrap.js
new file mode 100644
index 000000000000..86c284932619
--- /dev/null
+++ b/src/components/MediaLibrary/FocusTrap.js
@@ -0,0 +1,16 @@
+import React from 'react';
+import FocusTrapReact from 'focus-trap-react';
+
+/**
+ * A wrapper for focus-trap-react, which we use to completely remove focus traps
+ * from the DOM rather than using the library's own internal activation/pausing
+ * mechanisms, which can manifest bugs when nested.
+ */
+const FocusTrap = props => {
+ const { active, children, focusTrapOptions, className } = props;
+ return active
+ ? {children}
+ :
{children}
+}
+
+export default FocusTrap;
diff --git a/src/components/MediaLibrary/MediaLibrary.css b/src/components/MediaLibrary/MediaLibrary.css
index 4c0e8b1c4e40..ebc605566601 100644
--- a/src/components/MediaLibrary/MediaLibrary.css
+++ b/src/components/MediaLibrary/MediaLibrary.css
@@ -50,7 +50,7 @@
.thumbnail {
max-height: 44px;
- max-width: 120px;
+ max-width: 88px;
margin: -10px auto;
display: block;
border-radius: 4px;
diff --git a/src/components/MediaLibrary/MediaLibrary.js b/src/components/MediaLibrary/MediaLibrary.js
index 2ffc0f8ce3ee..6d1d54f3cfb0 100644
--- a/src/components/MediaLibrary/MediaLibrary.js
+++ b/src/components/MediaLibrary/MediaLibrary.js
@@ -6,7 +6,6 @@ import { Table, TableHead, TableRow, TableCell } from 'react-toolbox/lib/table';
import { Button, BrowseButton } from 'react-toolbox/lib/button';
import Overlay from 'react-toolbox/lib/overlay';
import ProgressBar from 'react-toolbox/lib/progress_bar';
-import FocusTrap from 'focus-trap-react';
import bytes from 'bytes';
import fuzzy from 'fuzzy';
import { resolvePath } from '../../lib/pathHelper';
@@ -14,6 +13,7 @@ import { createAssetProxy } from '../../valueObjects/AssetProxy';
import { changeDraftField } from '../../actions/entries';
import { addAsset } from '../../actions/media';
import { loadMedia, persistMedia, deleteMedia, insertMedia, closeMediaLibrary } from '../../actions/mediaLibrary';
+import FocusTrap from './FocusTrap';
import styles from './MediaLibrary.css';
import dialogTheme from './dialogTheme.css';
import headCellTheme from './headCellTheme.css';
@@ -226,27 +226,30 @@ class MediaLibrary extends React.Component {
theme={dialogTheme}
className={styles.dialog}
>
-
-
-