X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/e337a8add7214163493d95f24dffe27a62cdb95e..7a12b550f4a8366c8ace2f9c55706aba7c4b17f7:/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 9f0d1ba9..d49c7231 --- 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; } @@ -244,10 +246,65 @@ counter-increment: main; } -.htmlview *[wl2o\:editable] *[wl2o\:editable] { - background-color: red; +.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; @@ -256,4 +313,4 @@ .parse-warning .message { color: purple; font-weight: bold; -} \ No newline at end of file +}