Small bug fix
When the screen is too small, the fixed toolbar was shown over the floating sidebar which can be opened in the left
diff --git a/console_inject.js b/console_inject.js
index f4e7392..0f77085 100644
--- a/console_inject.js
+++ b/console_inject.js
@@ -61,7 +61,7 @@
if (options.fixedtoolbar) {
var link = document.createElement('link');
link.setAttribute("rel", "stylesheet");
- link.setAttribute("href", "data:text/css;charset=UTF-8,ec-bulk-actions{position: sticky; top: 0; background: white; z-index: 99;}");
+ link.setAttribute("href", "data:text/css;charset=UTF-8,ec-bulk-actions{position: sticky; top: 0; background: white; z-index: 96;}");
document.head.appendChild(link);
}
});