diff --git a/mindplot/pom.xml b/mindplot/pom.xml index 6e2ad6c9..c66e1b16 100644 --- a/mindplot/pom.xml +++ b/mindplot/pom.xml @@ -192,10 +192,6 @@ - - - 0) { - $("undoEdition").setStyle("background-image", "url(../images/file_undo.png)"); - } else { - $("undoEdition").setStyle("background-image", "url(../images/file_undo_dis.png)"); - } - - if (event.redoSteps > 0) { - $("redoEdition").setStyle("background-image", "url(../images/file_redo.png)"); - } else { - $("redoEdition").setStyle("background-image", "url(../images/file_redo_dis.png)"); - } - - }); +// designer.addEvent("modelUpdate", function(event) { +// if (event.undoSteps > 0) { +// $("undoEdition").setStyle("background-image", "url(../nicons/undo.png)"); +// } else { +// $("undoEdition").setStyle("background-image", "url(../nicons/undo.png)"); +// } +// +// if (event.redoSteps > 0) { +// $("redoEdition").setStyle("background-image", "url(../nicons/redo.png)"); +// } else { +// $("redoEdition").setStyle("background-image", "url(../nicons/redo.png)"); +// } +// +// }); }, addButton:function (buttonId, topic, rel, fn) { diff --git a/mindplot/src/main/javascript/widget/ToolbarItem.js b/mindplot/src/main/javascript/widget/ToolbarItem.js index add6e30f..04725ae1 100644 --- a/mindplot/src/main/javascript/widget/ToolbarItem.js +++ b/mindplot/src/main/javascript/widget/ToolbarItem.js @@ -24,8 +24,9 @@ mindplot.widget.ToolbarItem = new Class({ this._buttonId = buttonId; this._fn = fn; this._options = options; + this._enable = false; this.enable(); -// this._tip = this._registerTip(); +// this._registerTip(); }, diff --git a/mindplot/src/main/javascript/widget/ToolbarPaneItem.js b/mindplot/src/main/javascript/widget/ToolbarPaneItem.js index 427a55dd..b7a2ed78 100644 --- a/mindplot/src/main/javascript/widget/ToolbarPaneItem.js +++ b/mindplot/src/main/javascript/widget/ToolbarPaneItem.js @@ -21,6 +21,7 @@ mindplot.widget.ToolbarPaneItem = new Class({ initialize : function(buttonId, model) { $assert(buttonId, "buttonId can not be null"); $assert(model, "model can not be null"); + this._model = model; var fn = function() { // Is the panel being displayed ? if (this.isVisible()) { @@ -31,19 +32,46 @@ mindplot.widget.ToolbarPaneItem = new Class({ }.bind(this); this.parent(buttonId, fn, {topicAction:true,relAction:false}); - this._model = model; - this._panelId = this._init().id; + this._panelElem = this._init(); + this._visible = false; }, _init:function () { // Load the context of the panel ... var panelElem = this.buildPanel(); - panelElem.setStyle('cursor','default'); + panelElem.setStyle('cursor', 'default'); var buttonElem = this.getButtonElem(); - // Add panel content .. - panelElem.setStyle('display', 'none'); - panelElem.inject(buttonElem); + var item = this; + this._tip = new mindplot.widget.FloatingTip(buttonElem, { + html: true, + position: 'bottom', + arrowOffset : 5, + center: true, + arrowSize: 7, + showDelay: 0, + hideDelay: 0, + content: function() { + return item._updateSelectedItem(); + }.bind(this), + className: 'toolbarPaneTip', + motionOnShow:false, + motionOnHide:false, + motion: 0, + distance: 0, + showOn: 'xxxx', + hideOn: 'xxxx', + preventHideOnOver:true, + offset: {x:-4,y:0} + }); + + this._tip.addEvent('hide', function() { + this._visible = false + }.bind(this)); + + this._tip.addEvent('show', function() { + this._visible = true + }.bind(this)); return panelElem; }, @@ -53,34 +81,55 @@ mindplot.widget.ToolbarPaneItem = new Class({ }, getPanelElem : function() { - return $(this._panelId); + return this._panelElem; }.protect(), show : function() { if (!this.isVisible()) { this.parent(); - this.getButtonElem().className = 'buttonActive'; - this.getPanelElem().setStyle('display', 'block'); + this._tip.show(this.getButtonElem()); + this.getButtonElem().className = 'buttonExtActive'; } }, hide : function() { if (this.isVisible()) { - this.getButtonElem().className = 'buttonOn'; - this.getPanelElem().setStyle('display', 'none'); this.parent(); + this._tip.hide(this.getButtonElem()); + this.getButtonElem().className = 'buttonExtOn'; } }, isVisible : function() { - return this.getPanelElem().getStyle('display') == 'block'; + return this._visible; }, - disable: function() { + disable : function() { this.hide(); - this.parent(); + var elem = this.getButtonElem(); + if (this._enable) { + elem.removeEvent('click', this._fn); + elem.removeClass('buttonExtOn'); + + // Todo: Hack... + elem.removeClass('buttonOn'); + + elem.addClass('buttonExtOff'); + this._enable = false; + } }, + enable : function() { + var elem = this.getButtonElem(); + if (!this._enable) { + elem.addEvent('click', this._fn); + elem.removeClass('buttonExtOff'); + elem.addClass('buttonExtOn'); + this._enable = true; + } + }, + + buildPanel : function() { throw "Method must be implemented"; }.protect() diff --git a/wise-doc/src/main/webapp/css/editor2.css b/wise-doc/src/main/webapp/css/editor2.css index ca9101da..e1197e3c 100644 --- a/wise-doc/src/main/webapp/css/editor2.css +++ b/wise-doc/src/main/webapp/css/editor2.css @@ -1,8 +1,8 @@ @import "/mindplot/src/main/javascript/widget/lightbox.css"; @import "/mindplot/src/main/javascript/libraries/moodialog/css/MooDialog.css"; -@header-height : 70px; -@header-toolbar-height : 30px; +@header-height : 75px; +@header-toolbar-height : 35px; @header-info-height : @header-height - @header-toolbar-height; /* Common Default Style */ @@ -247,9 +247,22 @@ h4 { /********************************************************************************/ div#header { - background-color: #000000; width: 100%; height: @header-height; + background: #393939; /* Old browsers */ + background: -moz-linear-gradient(top, #393939 0%, #000000 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #393939), color-stop(100%, #000000)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #393939 0%, #000000 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #393939 0%, #000000 100%); /* Opera11.10+ */ + background: -ms-linear-gradient(top, #393939 0%, #000000 100%); /* IE10+ */ + background: linear-gradient(top, #393939 0%, #000000 100%); /* W3C */ +} + +div#headerLogo { + background: url(../nicons/logo-small.png) no-repeat center top; + height: 40px; + width: 80px; + float: left; } div#headerInfo { @@ -258,66 +271,90 @@ div#headerInfo { color: white; } +div#headerActions { + text-align: right; + margin-top: 13px; + padding-right: 10px; + color: white; + float: right; +} + +div#headerActions span { + border-bottom: 3px solid rgb(247, 201, 49); +} + +div#headerMapTitle { + width: 200px; + height:(@header-info-height ) - 13; + text-align: left; + padding-top: 13px; + padding-left: 50px; + color: white; + float: left; + font-style: italic; +} + +div#headerMapTitle span { + padding: 4px 50px ; + border: 1px solid rgb(90, 90, 90); + background-color: rgb(45, 45, 45); + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2); +} + div#toolbar { width: 100%; height: @header-toolbar-height; - background: whiteSmoke; - border-top: 1px solid #E5E5E5; + background-image: linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%); + background-image: -o-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%); + background-image: -moz-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%); + background-image: -webkit-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%); + background-image: -ms-linear-gradient(bottom, rgb(229, 227, 209) 47%, rgb(252, 250, 237) 87%); + + background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.47, rgb(229, 227, 209)), color-stop(0.87, rgb(252, 250, 237))); + border-bottom: 3px double rgb(190, 190, 190); + border-top: 1px solid rgb(190, 190, 190); } div#toolbar .buttonContainer { height: @header-toolbar-height; float: left; - color: black; - border: 1px solid #BBB4D6; + /*color: black;*/ + /*border: 1px solid #BBB4D6;*/ margin-left: 5px; } +/******************************************************************************************/ +/* Buttons*/ +/******************************************************************************************/ + div#toolbar .buttonOn, div#toolbar .buttonOff, div#toolbar .buttonActive, div#toolbar .buttonOn:hover { - width: 30px; - height: @header-toolbar-height; + width: 28px; + height: 28px; float: left; text-align: center; + z-index: 4; + margin-top: 3px; + padding-top: 2px; + padding-left: 2px; } -div#toolbar .buttonOn:hover, div#toolbar .buttonActive { - margin: 0; - cursor: pointer; - border: 1px solid #d3d3d3; +div#toolbar .buttonOn:hover { cursor: pointer; opacity: 1; + background: url(../nicons/btn-bg-hover.png) no-repeat center top; } div#toolbar .buttonOn { - margin: 1px; opacity: 0.8; + background: url(../nicons/btn-bg-normal.png) no-repeat center top; } div#toolbar .buttonOff { - margin: 1px; opacity: 0.4; -} - -div#toolbar .button img { - height: @header-toolbar-height; - border: 0; -} - -div#saveButton { - background: url(../images/save.png) no-repeat center top; -} - -div#undoEdition { - background: url(../images/file_undo_dis.png) no-repeat center top; -} - -div#redoEdition { - background: url(../images/file_redo_dis.png) no-repeat center top; -} - -div#export { - background: url(../images/file_export.png) no-repeat center top; - position: relative; + background: url(../nicons/btn-bg-normal.png) no-repeat center top; } div#exportAnchor { @@ -328,101 +365,149 @@ div#exportAnchor { left: 0; } -div#zoomIn { - background: url(../images/zoom_in.png) no-repeat center top; -} - -div#zoomOut { - background: url(../images/zoom_out.png) no-repeat center top; -} - -div#addTopic { - background: url(../images/topic_add.png) no-repeat center top; -} - -div#deleteTopic { - background: url(../images/topic_delete.png) no-repeat center top; -} - -div#topicColor { - background: url(../images/topic_bgcolor.png) no-repeat center top; - z-index: 4; -} - -div#topicIcon { - background: url(../images/topic_icon.png) no-repeat center top; - z-index: 4; -} - -div#topicNote { - background: url(../images/note.png) no-repeat center top; - z-index: 4; -} - -div#topicNote { - background: url(../images/topic_icon.png) no-repeat center top; - z-index: 4; -} - -div#topicLink { - background: url(../images/topic_link.png) no-repeat center top; - z-index: 4; -} - -div#topicNote { - background-image: url(../images/note.png); - z-index: 4; -} - -div#topicBorder { - background: url(../images/topic_border.png) no-repeat center top; -} - -div#fontFamily { - background: url(../images/font_type.png) no-repeat center top; -} - -div#topicShape { - background: url(../images/topic_shape.png) no-repeat center top; -} - -div#fontBold { - background: url(../images/font_bold.png) no-repeat center top; -} - -div#fontItalic { - background: url(../images/font_italic.png) no-repeat center top; -} - -div#fontColor { - background: url(../images/font_color.png) no-repeat center top; - z-index: 4; -} - -div#fontSize { +div#toolbar .buttonExtOn, div#toolbar .buttonExtOff, div#toolbar .buttonExtActive, div#toolbar .buttonExtOn:hover { + width: 40px; + height: 28px; float: left; - background: url(../images/font_size.png) no-repeat center top; + text-align: left; + z-index: 4; + margin-top: 3px; + padding-top: 2px; + padding-left: 5px; } -div#font-size { - font-size: 10px; +div#toolbar .buttonExtOn:hover { + opacity: 1; + background: url(../nicons/btne-bg-hover.png) no-repeat center top; + } -div#shareIt { - background: url(../images/collab_share.png) no-repeat center top; +div#toolbar .buttonExtActive { + opacity: 1; + background: url(../nicons/btne-bg-selected.png) no-repeat center top; + } -div#publishIt { - background: url(../images/collab_publish.png) no-repeat center top; +div#toolbar .buttonExtOn { + opacity: 0.8; + background: url(../nicons/btne-bg-normal.png) no-repeat center top; } -div#tagIt { - background: url(../images/collab_tag.png) no-repeat center top; +div#toolbar .buttonExtOff { + opacity: 0.4; + background: url(../nicons/btne-bg-normal.png) no-repeat center top; } +div#exportAnchor { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; +} + +/*div#saveButton {*/ +/*background: url(../nicons/save.png) no-repeat center top;*/ +/*}*/ + +/*div#undoEdition {*/ +/*background: url(../nicons/undo.png) no-repeat center top;*/ +/*}*/ + +/*div#redoEdition {*/ +/*background: url(../nicons/redo.png) no-repeat center top;*/ +/*}*/ + +/*div#export {*/ +/*background: url(../nicons/export.png) no-repeat center top;*/ +/*}*/ + +/*div#zoomIn {*/ +/*background: url(../nicons/zoom-in.png) no-repeat center top;*/ +/*}*/ + +/*div#zoomOut {*/ +/*background: url(../nicons/zoom-out.png) no-repeat center top;*/ +/*}*/ + +/*div#addTopic {*/ +/*background: url(../nicons/topic-add.png) no-repeat center top;*/ +/*}*/ + +/*div#deleteTopic {*/ +/*background: url(../nicons/topic-delete.png) no-repeat center top;*/ +/*}*/ + +/*div#topicColor {*/ +/*background: url(../nicons/topic-color.png) no-repeat center top;*/ +/*}*/ + +/*div#topicIcon {*/ +/*background: url(../nicons/topic-icon.png) no-repeat center top;*/ +/*}*/ + +/*div#topicNote {*/ +/*background: url(../nicons/note.png) no-repeat center top;*/ +/*}*/ + +/*div#topicNote {*/ +/*background: url(../nicons/topic-icon.png) no-repeat center top;*/ +/*z-index: 4;*/ +/*}*/ + +/*div#topicLink {*/ +/*background: url(../nicons/topic-link.png) no-repeat center top;*/ +/*z-index: 4;*/ +/*}*/ + +/*div#topicNote {*/ +/*background-image: url(../nicons/note.png);*/ +/*z-index: 4;*/ +/*}*/ + +/*div#topicBorder {*/ +/*background: url(../nicons/topic-border.png) no-repeat center top;*/ +/*}*/ + +/*div#fontFamily {*/ +/*background: url(../nicons/font-type.png) no-repeat center top;*/ +/*}*/ + +/*div#topicShape {*/ +/*background: url(../nicons/topic-shape.png) no-repeat center top;*/ +/*}*/ + +/*div#fontBold {*/ +/*background: url(../nicons/font-bold.png) no-repeat center top;*/ +/*}*/ + +/*div#fontItalic {*/ +/*background: url(../nicons/font-italic.png) no-repeat center top;*/ +/*}*/ + +/*div#fontColor {*/ +/*background: url(../nicons/font-color.png) no-repeat center top;*/ +/*}*/ + +/*div#fontSize {*/ +/*background: url(../nicons/font-size.png) no-repeat center top;*/ +/*}*/ + +/*div#shareIt {*/ +/*background: url(../nicons/share.png) no-repeat center top;*/ +/*}*/ + +/*div#publishIt {*/ +/*background: url(../nicons/publish.png) no-repeat center top;*/ +/*}*/ + +/*div#tagIt {*/ +/*background: url(../nicons/tag.png) no-repeat center top;*/ +/*}*/ + div#topicRelation { width: 56px; - background: url(../images/topic_relationship.png) no-repeat center top; + background: url(../nicons/topic-relation.png) no-repeat center top; z-index: 4; } @@ -435,20 +520,20 @@ div#colorPalette { top: 89px; } -.toolbarPanel { - z-index: 4; - top: @header-height+3; - -moz-transition: opacity 0.218s ease 0s; - background: none repeat scroll 0 0 #FFFFFF; - border: 1px solid rgba(0, 0, 0, 0.2); - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - cursor: default; - font-size: 13px; - margin: 0; - outline: medium none; - padding: 0 0 6px; - position: absolute; -} +/*.toolbarPanel {*/ +/*z-index: 4;*/ +/*top: @header-height;*/ +/*-moz-transition: opacity 0.218s ease 0s;*/ +/*background: none repeat scroll 0 0 #FFFFFF;*/ +/*border: 1px solid rgba(0, 0, 0, 0.2);*/ +/*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);*/ +/*cursor: default;*/ +/*font-size: 13px;*/ +/*margin: 0;*/ +/*outline: medium none;*/ +/*padding: 0 0 6px;*/ +/*position: absolute;*/ +/*}*/ div.toolbarPanelLink, div.toolbarPanelLinkSelectedLink { cursor: pointer; @@ -473,7 +558,7 @@ div#mindplot { } div#workspaceContainer { - background: url(../images/grid.gif) bottom left repeat !important; + /*background: url(../images/grid.gif) bottom left repeat !important;*/ } div#small_error_icon { @@ -495,17 +580,117 @@ div#small_error_icon { box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2); } -.toolbarTip { - background-color: black; - padding: 5px 5px; - color: #f5f5f5; +.linkTip { + background-color: #dfcf3c; + padding: 5px 15px; + color: #666666; /*font-weight: bold;*/ /*width: 100px;*/ - font-size: 11px; + font-size: 13px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2); } +.toolbarPaneTip { + background-color: rgb(228, 226, 210); + padding: 5px 5px; + color: #f5f5f5; + /*font-weight: bold;*/ + /*width: 100px;*/ + font-size: 11px; + -moz-border-radius: 60px; + -webkit-border-radius: 6px; + border-radius: 6px; + box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2); + border: 3px double rgb(190, 190, 190); +} +.toolbarTip { + background-color: #000000; + padding: 5px 5px; + color: #f5f5f5; + /*font-weight: bold;*/ + /*width: 100px;*/ + font-size: 11px; +} + +/* */ +.btn-primary { + cursor: pointer; + display: inline-block; + padding: 5px 14px 6px; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + color: #333; + font-size: 13px; + line-height: normal; + border: 1px solid #ccc; + border-bottom-color: #bbb; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -webkit-transition: 0.1s linear all; + -moz-transition: 0.1s linear all; + -ms-transition: 0.1s linear all; + -o-transition: 0.1s linear all; + transition: 0.1s linear all; + color: #ffffff; + background-color: #0064cd; + background-repeat: repeat-x; + background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd)); + background-image: -moz-linear-gradient(top, #049cdb, #0064cd); + background-image: -ms-linear-gradient(top, #049cdb, #0064cd); + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd)); + background-image: -webkit-linear-gradient(top, #049cdb, #0064cd); + background-image: -o-linear-gradient(top, #049cdb, #0064cd); + background-image: linear-gradient(top, #049cdb, #0064cd); + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); + border-color: #0064cd #0064cd #003f81; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); +} + +.btn-primary:hover { + background-position: 0 -15px; + text-decoration: none; +} + +.btn-secondary { + cursor: pointer; + display: inline-block; + background-color: #e6e6e6; + background-repeat: no-repeat; + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); + background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); + background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); + background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); + background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); + padding: 5px 14px 6px; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + color: #333; + font-size: 13px; + line-height: normal; + border: 1px solid #ccc; + border-bottom-color: #bbb; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); + -webkit-transition: 0.1s linear all; + -moz-transition: 0.1s linear all; + -ms-transition: 0.1s linear all; + -o-transition: 0.1s linear all; + transition: 0.1s linear all; + text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); +} + +.btn-secondary:hover { + background-position: 0 -15px; + text-decoration: none; +} \ No newline at end of file diff --git a/wise-doc/src/main/webapp/html/editor.html b/wise-doc/src/main/webapp/html/editor.html index 919cf6b0..bcef42ce 100644 --- a/wise-doc/src/main/webapp/html/editor.html +++ b/wise-doc/src/main/webapp/html/editor.html @@ -8,18 +8,16 @@ - + - + - - + + @@ -60,9 +62,6 @@ - - -
@@ -75,7 +74,7 @@
- + Loading ...
@@ -84,7 +83,7 @@
- + Unexpected error loading your map :(
@@ -119,223 +118,110 @@
-
-
-
"> -
- - - -
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
+
+ , ${principal.firstname}| | + "> + | "> + +
-
-
- - - -
"> -

-
-
"> -

-
-
+ +
Title: Hola
+
+
+
+
+ +
+
+ +
-
-
- - - -
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
- -
"> -

-
-
+
+
+ +
+
+ +
-
-
- - - -
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
-
+
+
+ +
+
+ +
-
- - -
- - - - "> -
"> -

-
-
- - - &mapId=${mindmap.id}" - rel="moodalbox 780px 530px wizard" title=""> -
"> -

-
-
- "> -
"> -

-
-
-
-
- "> -
"> -

-
-
-
-
- -
- - - -
"> -

-
-
"> -

-
-
"> -

-
-
"> -

-
-
-
-
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+ +
+
+ +
- -
-
- - - - -
-
-
-
-
-
-
-
-
Shortcuts
-
-
- -
-
-
-
-

Warning

- This is a demo editor. That's why you won't be able to save your changes. - If you want to start creating your maps, - . Registration is free and takes just a moment. -
-
- -
- - - - -<%-- ---%> diff --git a/wise-webapp/src/main/webapp/nicons/btn-bg-hover.png b/wise-webapp/src/main/webapp/nicons/btn-bg-hover.png new file mode 100644 index 00000000..ee07c4c2 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/btn-bg-hover.png differ diff --git a/wise-webapp/src/main/webapp/nicons/btn-bg-normal.png b/wise-webapp/src/main/webapp/nicons/btn-bg-normal.png new file mode 100644 index 00000000..50b333be Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/btn-bg-normal.png differ diff --git a/wise-webapp/src/main/webapp/nicons/btne-bg-hover.png b/wise-webapp/src/main/webapp/nicons/btne-bg-hover.png new file mode 100644 index 00000000..5ea2e15b Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/btne-bg-hover.png differ diff --git a/wise-webapp/src/main/webapp/nicons/btne-bg-normal.png b/wise-webapp/src/main/webapp/nicons/btne-bg-normal.png new file mode 100644 index 00000000..378476a9 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/btne-bg-normal.png differ diff --git a/wise-webapp/src/main/webapp/nicons/btne-bg-selected.png b/wise-webapp/src/main/webapp/nicons/btne-bg-selected.png new file mode 100644 index 00000000..32194e81 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/btne-bg-selected.png differ diff --git a/wise-webapp/src/main/webapp/nicons/discart.png b/wise-webapp/src/main/webapp/nicons/discart.png new file mode 100644 index 00000000..63cec6ed Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/discart.png differ diff --git a/wise-webapp/src/main/webapp/nicons/export.png b/wise-webapp/src/main/webapp/nicons/export.png new file mode 100644 index 00000000..e8463255 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/export.png differ diff --git a/wise-webapp/src/main/webapp/nicons/font-bold.png b/wise-webapp/src/main/webapp/nicons/font-bold.png new file mode 100644 index 00000000..15cfbc16 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/font-bold.png differ diff --git a/wise-webapp/src/main/webapp/nicons/font-color.png b/wise-webapp/src/main/webapp/nicons/font-color.png new file mode 100644 index 00000000..1c2761df Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/font-color.png differ diff --git a/wise-webapp/src/main/webapp/nicons/font-italic.png b/wise-webapp/src/main/webapp/nicons/font-italic.png new file mode 100644 index 00000000..59e79cf0 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/font-italic.png differ diff --git a/wise-webapp/src/main/webapp/nicons/font-size.png b/wise-webapp/src/main/webapp/nicons/font-size.png new file mode 100644 index 00000000..8fa9500f Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/font-size.png differ diff --git a/wise-webapp/src/main/webapp/nicons/font-type.png b/wise-webapp/src/main/webapp/nicons/font-type.png new file mode 100644 index 00000000..7b9ba609 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/font-type.png differ diff --git a/wise-webapp/src/main/webapp/nicons/history.png b/wise-webapp/src/main/webapp/nicons/history.png new file mode 100644 index 00000000..fa33bab4 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/history.png differ diff --git a/wise-webapp/src/main/webapp/nicons/iconitos-separados.psd b/wise-webapp/src/main/webapp/nicons/iconitos-separados.psd new file mode 100644 index 00000000..222e2263 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/iconitos-separados.psd differ diff --git a/wise-webapp/src/main/webapp/nicons/links.png b/wise-webapp/src/main/webapp/nicons/links.png new file mode 100644 index 00000000..dd3b830f Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/links.png differ diff --git a/wise-webapp/src/main/webapp/nicons/logo-small.png b/wise-webapp/src/main/webapp/nicons/logo-small.png new file mode 100644 index 00000000..107b817b Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/logo-small.png differ diff --git a/wise-webapp/src/main/webapp/nicons/notes.png b/wise-webapp/src/main/webapp/nicons/notes.png new file mode 100644 index 00000000..bf438b1d Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/notes.png differ diff --git a/wise-webapp/src/main/webapp/nicons/print.png b/wise-webapp/src/main/webapp/nicons/print.png new file mode 100644 index 00000000..6c3788ba Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/print.png differ diff --git a/wise-webapp/src/main/webapp/nicons/public.png b/wise-webapp/src/main/webapp/nicons/public.png new file mode 100644 index 00000000..eba5b64f Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/public.png differ diff --git a/wise-webapp/src/main/webapp/nicons/redo.png b/wise-webapp/src/main/webapp/nicons/redo.png new file mode 100644 index 00000000..d904c0c4 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/redo.png differ diff --git a/wise-webapp/src/main/webapp/nicons/save.png b/wise-webapp/src/main/webapp/nicons/save.png new file mode 100644 index 00000000..174c6d6e Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/save.png differ diff --git a/wise-webapp/src/main/webapp/nicons/share.png b/wise-webapp/src/main/webapp/nicons/share.png new file mode 100644 index 00000000..c2aa4494 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/share.png differ diff --git a/wise-webapp/src/main/webapp/nicons/tag.png b/wise-webapp/src/main/webapp/nicons/tag.png new file mode 100644 index 00000000..d595a8ba Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/tag.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-add.png b/wise-webapp/src/main/webapp/nicons/topic-add.png new file mode 100644 index 00000000..3d572e72 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-add.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-border.png b/wise-webapp/src/main/webapp/nicons/topic-border.png new file mode 100644 index 00000000..e0617e7c Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-border.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-color.png b/wise-webapp/src/main/webapp/nicons/topic-color.png new file mode 100644 index 00000000..b923d89a Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-color.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-delete.png b/wise-webapp/src/main/webapp/nicons/topic-delete.png new file mode 100644 index 00000000..1499e58e Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-delete.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-icon.png b/wise-webapp/src/main/webapp/nicons/topic-icon.png new file mode 100644 index 00000000..1bb8c98d Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-icon.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-link.png b/wise-webapp/src/main/webapp/nicons/topic-link.png new file mode 100644 index 00000000..e5a05326 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-link.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-note.png b/wise-webapp/src/main/webapp/nicons/topic-note.png new file mode 100644 index 00000000..5c9aeaae Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-note.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-relation.png b/wise-webapp/src/main/webapp/nicons/topic-relation.png new file mode 100644 index 00000000..3f8ebcfa Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-relation.png differ diff --git a/wise-webapp/src/main/webapp/nicons/topic-shape.png b/wise-webapp/src/main/webapp/nicons/topic-shape.png new file mode 100644 index 00000000..8937ca9b Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/topic-shape.png differ diff --git a/wise-webapp/src/main/webapp/nicons/undo.png b/wise-webapp/src/main/webapp/nicons/undo.png new file mode 100644 index 00000000..5133b949 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/undo.png differ diff --git a/wise-webapp/src/main/webapp/nicons/zoom-in.png b/wise-webapp/src/main/webapp/nicons/zoom-in.png new file mode 100644 index 00000000..008cfc49 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/zoom-in.png differ diff --git a/wise-webapp/src/main/webapp/nicons/zoom-out.png b/wise-webapp/src/main/webapp/nicons/zoom-out.png new file mode 100644 index 00000000..158563a2 Binary files /dev/null and b/wise-webapp/src/main/webapp/nicons/zoom-out.png differ