+/*
+ * Przypisy w tekście
+ */
+ .htmlview .annotation-inline-box > span[x-annotation-box]
+ {
+ display: none;
+ position: absolute;
+
+ max-width: 36em;
+
+ font-size: 8pt;
+ line-height: 12pt;
+ font-weight: normal;
+ font-style: normal;
+
+ background: white;
+ border-color: gray;
+ border-width: 2px;
+ border-style: outset;
+ padding: 3px 5px;
+
+ text-decoration: none;
+ z-index: 1000;
+ }
+
+
+/*
+ * Przypisy na końcu utworu (aktualnie nieuzywane)
+ */
+.htmlview .annotations-block {
+ counter-reset: secondary;
+}
+
+.htmlview .annotations-block .annotation-body {
+ position: relative;
+ padding-left: 2.5em;
+ padding-top: 0.2em;
+}
+
+.htmlview .annotations-block .annotation-backref {
+ position: absolute;
+ top: 0.4em;
+ left: -0.4em;
+ width: 2.5em;
+ text-align: right;
+
+}
+
+.htmlview .annotations-block .annotation-backref:before {
+ content: "[" counter(secondary) "]";
+ counter-increment: secondary;
+}