X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/0e5e4a0d816add3c0c13559fbed4f79eb295baf8..7a12b550f4a8366c8ace2f9c55706aba7c4b17f7:/platforma/static/css/html.css?ds=sidebyside diff --git a/platforma/static/css/html.css b/platforma/static/css/html.css old mode 100644 new mode 100755 index fcc111e9..d49c7231 --- a/platforma/static/css/html.css +++ b/platforma/static/css/html.css @@ -1,11 +1,17 @@ /* Style widoku HTML. Nie należy tu ustawiać position ani marginesów */ + .htmlview { + counter-reset: main; font-size: 16px; font-family: "Georgia", "Times New Roman", serif; line-height: 1.5em; padding: 3em; } +.htmlview * { + position: relative; +} + .htmlview div { max-width: 36em; } @@ -70,19 +76,6 @@ text-align: left; } -.htmlview .annotation { - font-style: normal; - font-weight: normal; - font-size: 12px; -} - -.htmlview #footnotes .annotation { - display: block; - float: left; - width: 2.5em; - clear: both; -} - .htmlview #footnotes div { margin: 1.5em 0 0 0; } @@ -127,7 +120,7 @@ } .htmlview .dzielo_nadrzedne { - font-size: 0.375em; + font-size: 1.5em; display: block; line-height: 1.5em; margin-bottom: -0.25em; @@ -150,7 +143,7 @@ } .htmlview .strofa { - margin: 1.5em 0 0; + margin: 1.5em 0 0 auto; } .htmlview .kwestia .strofa { @@ -233,7 +226,91 @@ 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; -} \ No newline at end of file +}