diff --git a/resources/report/css/style.css b/resources/report/css/style.css
index 08303ba6..9f3b1334 100644
--- a/resources/report/css/style.css
+++ b/resources/report/css/style.css
@@ -45,7 +45,8 @@ div[drawer] {
z-index: 1;
}
#main {
- overflow: auto;
+ overflow-y: auto;
+ overflow-x: hidden;
position: relative;
z-index: 0;
}
diff --git a/resources/report/html/loot-plugin-card.html b/resources/report/html/loot-plugin-card.html
index 500415e0..19a074a4 100644
--- a/resources/report/html/loot-plugin-card.html
+++ b/resources/report/html/loot-plugin-card.html
@@ -1,9 +1,5 @@
-
| Add new row... | |
-
-
-
-
- | Filename | Display Name | Condition | |
-
-
-
- | Add new row... | |
-
-
-
-
- | Filename | Display Name | Condition | |
-
-
-
- | Add new row... | |
-
-
-
-
- | Type | Content | Condition | Language | |
-
-
-
- | Add new row... | |
-
-
-
-
-
- | CRC | ITM Count | Deleted References | Deleted Navmeshes | Cleaning Utility | |
-
-
-
- | Add new row... | |
-
-
-
-
- | URL | Version | |
-
-
-
- | Add new row... | |
-
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/resources/report/js/script.js b/resources/report/js/script.js
index 530a7a62..5401f15c 100644
--- a/resources/report/js/script.js
+++ b/resources/report/js/script.js
@@ -1037,6 +1037,9 @@ function handleEditorOpen(evt) {
elements[i].addEventListener('dragstart', elements[i].handleDragStart, false);
}
+ /* Now show editor. */
+ evt.target.classList.toggle('flip');
+
/* Enable priority hover in plugins list and enable header
buttons if this is the only editor instance. */
var numEditors = 0;
@@ -1083,6 +1086,9 @@ function handleEditorClose(evt) {
}).catch(processCefError);
}
+ /* Now hide editor. */
+ evt.target.classList.toggle('flip');
+
/* Remove drag 'n' drop event handlers. */
var elements = document.getElementById('cardsNav').getElementsByTagName('loot-plugin-item');
for (var i = 0; i < elements.length; ++i) {