Merge branch 'master' into lqc-trunk
[redakcja.git] / platforma / static / css / html.css
index a580ec2..acbeac2 100755 (executable)
     text-decoration: none;
 }
 
+.htmlview a:hover {
+    text-decoration: none;
+}
+
 .htmlview h1 {
     font-size: 3em;
     margin: 1.5em 0;
     margin: 1em;
 }
 
+ .parse-warning .message {
+    color: purple;
+    font-weight: bold;
+}
+
 
 /* Motywy */
 /* ======================== */
 /* = Footnotes and themes = */
 /* ======================== */
 
-.htmlview .theme-begin, .htmlview .theme-end {
+.htmlview .begin, .htmlview .end {
     background: green;
 }
 
-.htmlview .theme-ref {
+.htmlview .motyw {
     position: absolute;
     right: -8em;
     
     border-right: none;
     
     z-index: 1;
+    -moz-user-select: -moz-none;
+    -webkit-user-select: none;
+    user-select: none;
 }
 
-/* Przypisy */
+/* 
+ * Przypisy
+ */
+
+/* Znaczniki w tekście */
 .htmlview .annotation {    
     vertical-align: super;
     text-decoration: none;
-    font-size: 0.66em;
+    font-size: 0.66em;    
 }
 
-.htmlview a:hover {
-    text-decoration: none;
+.htmlview .annotation:before {
+    content: "[" counter(main) "]";
+    counter-increment: main;
 }
 
-/* .htmlview .annotation:before {
-    content: "[\2217]";
-} */
+.htmlview .annotation:hover {
+    background-color: #dfdfdf;
+}
 
+*.htmlview *.annotation-inline-box {
+    position: static;
+}
+
+/*
+ * 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: 11;
+ }
+
+/*
+ * Przypisy na końcu utworu (aktualnie nieuzywane)
+ */
 .htmlview .annotations-block {
     counter-reset: secondary;
 }
     counter-increment: secondary;
 }
 
-.htmlview span.annotation:before {
-    content: "[" counter(main) "]";
-    counter-increment: main;
-}
-
-.htmlview .annotation:hover {
-    background-color: #dfdfdf;
-}
-
-.parse-warning .message {
-    color: purple;
-    font-weight: bold;
-}
-
-
 /*
  * EDITABLE ELEMENTS
  */
 }
 
 /* focused editable element */
-.htmlview *[x-editable]:hover
+/* .htmlview *[x-editable]:hover
 {    
     
-}
+} */
 
 .htmlview *[x-editable][x-open]
 {
     visibility: hidden;
 }
 
-.htmlview *[x-editable] .context-menu {
+.context-menu {
     position: absolute;
     top: 0px;
     left: -50px;
 
     margin: 0px;
     padding: 0px;
-
-    display: none;
-    visibility: visible;
+    visibility: inherit;
+    display: block;
 
     border-top: 1px solid black;
     border-left: 1px solid black;
     z-index: 3000;
 }
 
-.htmlview *[x-editable] *.context-menu * {
+.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 {    
+.context-menu *:last-child {
     cursor: pointer;
     border-bottom: none;
 }
 
-.htmlview *[x-editable] *.context-menu *:hover {
+.context-menu *:hover {
     background-color: orange;
 }
 
 /*
  * VISIBILITY RULES
  */
-.htmlview *[x-editable] *.default-menu {
-    display: block;
-    opacity: 0.4;
+.default-menu {
+    visibility: inherit;
+    opacity: 0.2;
 }
 
-.htmlview *[x-editable] *.default-menu:hover {
+.default-menu:hover {
     opacity: 1;
 }
 
-.htmlview *[x-editable][x-open] *.default-menu {
-    display: none;
+.htmlview *[x-annotation-box] > .default-menu {
+    opacity: 1;
 }
 
-.htmlview *[x-editable][x-open] *.edit-menu {
-    display: block;
+.htmlview *[x-editable][x-open] > .default-menu {
+    visibility: hidden;
+}
+.htmlview *[x-editable][x-open] *[x-annotation-box] > .default-menu {
+    visibility: hidden;
+}
+
+.htmlview *[x-editable] > .edit-menu {
+    visibility: hidden;
+}
+.htmlview *[x-editable] *[x-annotation-box] > .edit-menu {
+    visibility: hidden;
+}
+
+.htmlview *[x-editable][x-open] > .edit-menu {
+    visibility: visible;
+}
+.htmlview *[x-editable][x-open] *[x-annotation-box] > .edit-menu {
+    visibility: visible;
 }
 
 .html-editarea {
-    border: 2px solid black;
+    border: 0px;
     background-color: gray;
     padding: 1px;
 
 
 .html-editarea textarea
 {
-    border: 0px;
+    border: 2px solid black;
+    
     margin: 0px;
     padding: 0px;
 
     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;
-}
-
-
+}
\ No newline at end of file