+.htmlview *[x-editable] > .context-menu * {
+ margin: 0px;
+ display: block;
+
+ -moz-user-select: -moz-none;
+ -webkit-user-select: none;
+
+ padding: 2px;
+ cursor: pointer;
+ border-bottom: 1px solid black;
+}
+
+.htmlview *[x-editable] > .context-menu *:last-child {
+ cursor: pointer;
+ border-bottom: none;
+}
+
+.htmlview *[x-editable] > .context-menu *:hover {
+ background-color: orange;
+}
+
+/*
+ * VISIBILITY RULES
+ */
+.htmlview *[x-editable] > .default-menu {
+ visibility: inherit;
+ opacity: 0.4;
+}
+
+.htmlview *[x-editable] > .default-menu:hover {
+ opacity: 1;
+}
+
+.htmlview *[x-annotation-box][x-editable] > .default-menu {
+ opacity: 1;
+}
+
+.htmlview *[x-editable][x-open] > .default-menu {
+ visibility: hidden;
+}
+
+.htmlview *[x-editable] > .edit-menu {
+ visibility: hidden;
+}
+
+.htmlview *[x-editable][x-open] > .edit-menu {
+ visibility: visible;
+}
+
+.html-editarea {
+ border: 2px solid black;
+ background-color: gray;
+ padding: 1px;
+
+ z-index: 2000;