+}
+
+
+/*
+ * EDITABLE ELEMENTS
+ */
+
+.htmlview *[x-editable] {
+ padding-left: 3px;
+}
+
+/* focused editable element */
+.htmlview *[x-editable]:hover
+{
+
+}
+
+.htmlview *[x-editable][x-open]
+{
+ visibility: hidden;
+}
+
+.htmlview *[x-editable] .context-menu {
+ position: absolute;
+ top: 0px;
+ left: -50px;
+ width: 50px;
+
+ text-align: center;
+ font-size: 11px;
+ line-height: 15px;
+
+ font-weight: normal;
+ font-style: normal;
+
+ background-color: #dfdfdf;
+
+ margin: 0px;
+ padding: 0px;
+
+ display: none;
+ visibility: visible;
+
+ border-top: 1px solid black;
+ border-left: 1px solid black;
+ border-bottom: 1px solid black;
+
+ overflow: hidden;
+
+ -moz-border-radius-topleft: 2px;
+ -moz-border-radius-bottomleft: 2px;
+
+ -webkit-border-top-left-radius: 2px;
+ -webkit-border-bottom-left-radius: 2px;
+
+ z-index: 3000;
+}
+
+.htmlview *[x-editable] *.context-menu * {
+ margin: 0px;
+ display: block;
+
+ 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 {
+ display: block;
+ opacity: 0.4;
+}
+
+.htmlview *[x-editable] *.default-menu:hover {
+ opacity: 1;
+}
+
+.htmlview *[x-editable][x-open] *.default-menu {
+ display: none;
+}
+
+.htmlview *[x-editable][x-open] *.edit-menu {
+ display: block;
+}
+
+.html-editarea {
+ border: 2px solid black;
+ background-color: gray;
+ padding: 1px;
+
+ z-index: 2000;
+}
+
+.html-editarea textarea
+{
+ border: 0px;
+ margin: 0px;
+ padding: 0px;
+
+ width: 100%;
+ height: 100%;
+
+ z-index: 0;
+ font-size: 10pt;
+ background-color: ivory;
+}
+
+.html-editarea p.html-editarea-toolbar {
+ position: absolute;
+ background: gray;
+
+ bottom: -26px;
+ height: 24px;
+
+ left: 0px;
+ right: 0px;
+
+ border: 2px solid black;
+
+ margin: 0px;
+ padding: 0px;
+
+ z-index: 100;
+}
+
+