+
+.htmlview .parse-warning {
+ display: block;
+ font-size: 10pt;
+ background: #C0C0C0;
+ margin: 1em;
+}
+
+/* Przypisy */
+.htmlview .annotation {
+ vertical-align: super;
+ text-decoration: none;
+ font-size: 0.66em;
+}
+
+.htmlview a:hover {
+ text-decoration: none;
+}
+
+/* .htmlview .annotation:before {
+ content: "[\2217]";
+} */
+
+.htmlview span.annotation:before {
+ content: "[" counter(main) "]";
+ counter-increment: main;
+}
+
+.htmlview *[x-editable] {
+ border: 2px solid white;
+ padding: 5px;
+}
+
+/* focused editable element */
+.htmlview *[x-editable]:hover,
+.htmlview *[x-editable][x-open]
+{
+ background-color: #dfdfdf;
+ border: 2px solid black;
+}
+
+.htmlview *[x-editable] *.context-menu {
+ position: absolute;
+ top: -24px;
+ left: -2px;
+ height: 24px;
+
+ text-align: center;
+
+ font-size: 14px;
+ line-height: 24px;
+ font-weight: normal;
+ font-style: normal;
+
+ background-color: #dfdfdf;
+ margin: 0px;
+ padding: 0px;
+
+ border-top: 2px solid black;
+ border-left: 2px solid black;
+ border-right: 2px solid black;
+
+ display: none;
+ overflow: hidden;
+
+ -moz-border-radius-topright: 5px;
+ -moz-border-radius-topleft: 5px;
+
+ -webkit-border-top-right-radius: 5px;
+ -webkit-border-top-left-radius: 5px;
+}
+
+.htmlview *[x-editable] *.context-menu * {
+ padding: 5px;
+}
+
+.htmlview *[x-editable] *.context-menu *:hover {
+ background-color: yellow;
+}
+
+.htmlview *[x-editable]:hover *.context-menu {
+ display: block;
+}
+
+.htmlview *[x-editable][x-open] *.context-menu {
+ display: none;
+}
+
+.htmlview .annotation:hover {
+ background-color: #dfdfdf;
+}
+
+.parse-warning .message {
+ color: purple;
+ font-weight: bold;
+}