diff --git a/index.html b/index.html
index 40ad839..6975f63 100755
--- a/index.html
+++ b/index.html
@@ -209,6 +209,9 @@
cursor: hand;
}
+.editor.inline-editor-mode .editor-status {
+ opacity: 0.4;
+}
@@ -396,7 +399,7 @@ $(document).ready(function(){
//'*': {
// everything except overlays...
- '.viewer:not(.inline-editor-mode)': {
+ '.chrome:not(.inline-editor-mode)': {
title: 'Global',
doc: '',
diff --git a/layout.js b/layout.js
index 9317d53..dd1c6bd 100755
--- a/layout.js
+++ b/layout.js
@@ -69,6 +69,9 @@ var togglePageView = createCSSClassToggler(
})
+var toggleInlineEditorMode = createCSSClassToggler('.chrome', 'inline-editor-mode')
+
+
/************************************************** event handlers ***/