From bfe5bad51099e5b0103830396dbdef19538551a6 Mon Sep 17 00:00:00 2001 From: Marcin Koziej Date: Tue, 11 Dec 2012 11:29:59 +0100 Subject: [PATCH] Visual Editor - questions editing [replace word] --- redakcja/static/css/html.css | 41 ++++++++++++++++--- .../static/js/wiki/view_editor_wysiwyg.js | 8 +++- 2 files changed, 43 insertions(+), 6 deletions(-) diff --git a/redakcja/static/css/html.css b/redakcja/static/css/html.css index d7f2a7a1..9199ede7 100644 --- a/redakcja/static/css/html.css +++ b/redakcja/static/css/html.css @@ -496,7 +496,8 @@ div[x-node] > .uwaga { visibility: hidden; } -.edit-button, .delete-button, .accept-button, .tytul-button, .wyroznienie-button, .slowo-button, .znak-button { +/*.edit-button, .delete-button, .accept-button, .tytul-button, .wyroznienie-button, .slowo-button, .znak-button, .luka-button */ +.edit-button, .delete-button, .accept-button, .akap-edit-button { position: absolute; top: -21px; left: -1px; @@ -537,13 +538,31 @@ div[x-node] > .uwaga { width:100px; } -.edit-button:hover, .edit-button:active, +.luka-button { + left:550px; + width:100px; +} + +.zastap-button { + top: -50px; + left:550px; + width:100px; +} + + +/*.edit-button:hover, .edit-button:active, .delete-button:hover, .delete-button:active, .accept-button:hover, .accept-button:active, .tytul-button:hover, .tytul-button:active, .wyroznienie-button:hover, .wyroznienie-button:active, .slowo-button:hover, .slowo-button:active, -.znak-button:hover, .znak-button:active { +.znak-button:hover, .znak-button:active, +.luka-button:hover, .luka-button:active */ + +.edit-button:hover, .edit-button:active, +.delete-button:hover, .delete-button:active, +.accept-button:hover, .accept-button:active, +.akap-edit-button:hover, .akap-edit-button:active { /* color: #FFF;*/ background-color: #999; color: #FFF; @@ -756,5 +775,17 @@ div[x-node] > .uwaga { .htmlview span.luka { color: #808080; - text-decoration: underline; -} \ No newline at end of file + display: inline-block; + padding: 0px 8px; + border-bottom: 1px solid grey; +} + +.htmlview span.zastap { + color: darkred; +} + +.htmlview span.zastap:after { + content: "→" attr(data-wlf-rozw); + color: darkgoldenrod; +} + diff --git a/redakcja/static/js/wiki/view_editor_wysiwyg.js b/redakcja/static/js/wiki/view_editor_wysiwyg.js index 3ccaea71..23abde02 100644 --- a/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -376,7 +376,7 @@ } // start edition on this node - var $overlay = $('
').css({ + var $overlay = $('
').css({ position: 'absolute', height: h, left: x, @@ -492,6 +492,12 @@ } else if(buttonName == "znak spec."){ addSymbol(); return false; + } else if (buttonName == "luka") { + startTag = ""; + endTag = ""; + } else if (buttonName == "zastąp") { + startTag = ""; + endTag = ""; } var myField = textAreaOpened; -- 2.20.1