X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/49ca4e98b38d73cef1eec116d7c9a4c00006f728..91a84926407f9f10739b2423c449bc98a57ea424:/platforma/static/css/html.css diff --git a/platforma/static/css/html.css b/platforma/static/css/html.css old mode 100644 new mode 100755 index 105f05a7..9db90bed --- a/platforma/static/css/html.css +++ b/platforma/static/css/html.css @@ -1,7 +1,5 @@ /* Style widoku HTML. Nie należy tu ustawiać position ani marginesów */ -@namespace wl2o ""; - .htmlview { counter-reset: main; font-size: 16px; @@ -10,6 +8,10 @@ padding: 3em; } +.htmlview * { + position: relative; +} + .htmlview div { max-width: 36em; } @@ -118,7 +120,7 @@ } .htmlview .dzielo_nadrzedne { - font-size: 0.375em; + font-size: 1.5em; display: block; line-height: 1.5em; margin-bottom: -0.25em; @@ -244,20 +246,134 @@ counter-increment: main; } -.htmlview *[wl2o\:editable] { - background-color: pink; +.htmlview .annotation:hover { + background-color: #dfdfdf; } -.htmlview *[wl2o\:editable] *[wl2o\:editable] { - background-color: red; +.parse-warning .message { + color: purple; + font-weight: bold; } -.htmlview .annotation:hover { +/* + * EDITABLE ELEMENTS + */ + +.htmlview *[x-editable] { + border: 2px solid white; + padding: 5px; +} + +/* focused editable element */ +.htmlview *[x-editable]:hover +{ background-color: #dfdfdf; + border: 2px solid black; + z-index: 100; } -.parse-warning .message { - color: purple; - font-weight: bold; -} \ No newline at end of file +.htmlview *[x-editable][x-open] +{ + visibility: hidden; +} + +.htmlview *[x-editable] .context-menu { + position: absolute; + top: -28px; + 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; + visibility: visible; + overflow: hidden; + + -moz-border-radius-topright: 5px; + -moz-border-radius-topleft: 5px; + + -webkit-border-top-right-radius: 5px; + -webkit-border-top-left-radius: 5px; + + z-index: 3000; +} + +.htmlview *[x-editable] *.context-menu * { + padding: 5px; +} + +.htmlview *[x-editable] *.context-menu *:hover { + background-color: yellow; + z-index: 3100; +} + +/* + * VISIBILITY RULES + */ +.htmlview *[x-editable]:hover *.default-menu { + display: block; +} + +.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; +} + +