Move edit tray buttons to top

This commit is contained in:
Nick O'Leary 2016-05-03 15:45:29 +01:00
parent 8080ebceb4
commit ce25fc658b
7 changed files with 317 additions and 206 deletions

View File

@ -15,6 +15,8 @@
**/ **/
RED.editor = (function() { RED.editor = (function() {
var editStack = [];
var editing_node = null; var editing_node = null;
var editing_config_node = null; var editing_config_node = null;
var subflowEditor; var subflowEditor;
@ -417,19 +419,86 @@ RED.editor = (function() {
} }
} }
function getEditStackTitle() {
var title = '<ul class="editor-tray-breadcrumbs">';
for (var i=0;i<editStack.length;i++) {
var node = editStack[i];
var label = node.type;
if (node.type === 'subflow') {
label = RED._("subflow.editSubflow",{name:node.name})
} else if (node.type.indexOf("subflow:")===0) {
var subflow = RED.nodes.subflow(node.type.substring(8));
label = RED._("subflow.editSubflow",{name:subflow.name})
} else {
if (typeof node._def.paletteLabel !== "undefined") {
try {
label = (typeof node._def.paletteLabel === "function" ? node._def.paletteLabel.call(node._def) : node._def.paletteLabel)||"";
} catch(err) {
console.log("Definition error: "+node.type+".paletteLabel",err);
}
}
if (i === editStack.length-1) {
if (RED.nodes.node(node.id)) {
label = RED._("editor.editNode",{type:label});
} else {
label = RED._("editor.addNewConfig",{type:label});
}
}
}
title += '<li>'+label+'</li>';
}
title += '</ul>';
return title;
}
function showEditDialog(node) { function showEditDialog(node) {
var editing_node = node; var editing_node = node;
editStack.push(node);
RED.view.state(RED.state.EDITING); RED.view.state(RED.state.EDITING);
var type = node.type; var type = node.type;
if (node.type.substring(0,8) == "subflow:") { if (node.type.substring(0,8) == "subflow:") {
type = "subflow"; type = "subflow";
} }
var trayOptions = { var trayOptions = {
title: "Edit "+type+" node", title: getEditStackTitle(),
buttons: [ buttons: [
{
id: "node-dialog-cancel",
text: RED._("common.label.cancel"),
click: function() {
if (editing_node._def) {
if (editing_node._def.oneditcancel) {
editing_node._def.oneditcancel.call(editing_node);
}
for (var d in editing_node._def.defaults) {
if (editing_node._def.defaults.hasOwnProperty(d)) {
var def = editing_node._def.defaults[d];
if (def.type) {
var configTypeDef = RED.nodes.getType(def.type);
if (configTypeDef && configTypeDef.exclusive) {
var input = $("#node-input-"+d).val()||"";
if (input !== "" && !editing_node[d]) {
// This node has an exclusive config node that
// has just been added. As the user is cancelling
// the edit, need to delete the just-added config
// node so that it doesn't get orphaned.
RED.nodes.remove(input);
}
}
}
}
}
}
RED.tray.close();
}
},
{ {
id: "node-dialog-ok", id: "node-dialog-ok",
text: RED._("common.label.ok"), text: RED._("common.label.done"),
class: "primary",
click: function() { click: function() {
var changes = {}; var changes = {};
var changed = false; var changed = false;
@ -556,38 +625,6 @@ RED.editor = (function() {
RED.view.redraw(true); RED.view.redraw(true);
RED.tray.close(); RED.tray.close();
} }
},
{
id: "node-dialog-cancel",
text: RED._("common.label.cancel"),
click: function() {
if (editing_node._def) {
if (editing_node._def.oneditcancel) {
editing_node._def.oneditcancel.call(editing_node);
}
for (var d in editing_node._def.defaults) {
if (editing_node._def.defaults.hasOwnProperty(d)) {
var def = editing_node._def.defaults[d];
if (def.type) {
var configTypeDef = RED.nodes.getType(def.type);
if (configTypeDef && configTypeDef.exclusive) {
var input = $("#node-input-"+d).val()||"";
if (input !== "" && !editing_node[d]) {
// This node has an exclusive config node that
// has just been added. As the user is cancelling
// the edit, need to delete the just-added config
// node so that it doesn't get orphaned.
RED.nodes.remove(input);
}
}
}
}
}
}
RED.tray.close();
}
} }
], ],
resize: function(dimensions) { resize: function(dimensions) {
@ -631,26 +668,6 @@ RED.editor = (function() {
$('<input type="text" style="display: none;" />').prependTo(dialogForm); $('<input type="text" style="display: none;" />').prependTo(dialogForm);
prepareEditDialog(node,node._def,"node-input"); prepareEditDialog(node,node._def,"node-input");
dialogForm.i18n(); dialogForm.i18n();
// var minWidth = $(this).dialog('option','minWidth');
// if ($(this).outerWidth() < minWidth) {
// $(this).dialog('option','width',minWidth);
// } else {
// $(this).dialog('option','width',$(this).outerWidth());
// }
// if (editing_node) {
// var size = $(this).dialog('option','sizeCache-'+editing_node.type);
// if (size) {
// $(this).dialog('option','width',size.width);
// $(this).dialog('option','height',size.height);
// }
// if (editing_node._def.oneditresize) {
// setTimeout(function() {
// var form = $("#dialog-form");
// editing_node._def.oneditresize.call(editing_node,{width:form.width(),height:form.height()});
// },0);
// }
// }
}, },
close: function() { close: function() {
RED.keyboard.enable(); RED.keyboard.enable();
@ -661,6 +678,7 @@ RED.editor = (function() {
RED.sidebar.info.refresh(editing_node); RED.sidebar.info.refresh(editing_node);
} }
RED.workspaces.refresh(); RED.workspaces.refresh();
editStack.pop();
}, },
show: function() { show: function() {
if (editing_node) { if (editing_node) {
@ -668,14 +686,6 @@ RED.editor = (function() {
} }
} }
} }
/*).parent().on('keydown', function(evt) {
if (evt.keyCode === $.ui.keyCode.ESCAPE && (evt.metaKey || evt.ctrlKey)) {
$("#node-dialog-cancel").click();
} else if (evt.keyCode === $.ui.keyCode.ENTER && (evt.metaKey || evt.ctrlKey)) {
$("#node-dialog-ok").click();
}
});
*/
if (editTrayWidthCache[type]) { if (editTrayWidthCache[type]) {
trayOptions.width = editTrayWidthCache[type]; trayOptions.width = editTrayWidthCache[type];
} }
@ -683,7 +693,7 @@ RED.editor = (function() {
if (type === 'subflow') { if (type === 'subflow') {
var id = editing_node.type.substring(8); var id = editing_node.type.substring(8);
trayOptions.buttons.unshift({ trayOptions.buttons.unshift({
class: 'leftButton', class: 'leftButton primary',
text: RED._("subflow.edit"), text: RED._("subflow.edit"),
click: function() { click: function() {
RED.workspaces.show(id); RED.workspaces.show(id);
@ -730,9 +740,11 @@ RED.editor = (function() {
} }
editing_config_node["_"] = node_def._; editing_config_node["_"] = node_def._;
} }
editStack.push(editing_config_node);
RED.view.state(RED.state.EDITING); RED.view.state(RED.state.EDITING);
var trayOptions = { var trayOptions = {
title: (adding?RED._("editor.addNewConfig", {type:type}):RED._("editor.editConfig", {type:type})), title: getEditStackTitle(), //(adding?RED._("editor.addNewConfig", {type:type}):RED._("editor.editConfig", {type:type})),
resize: function() { resize: function() {
if (editing_config_node && editing_config_node._def.oneditresize) { if (editing_config_node && editing_config_node._def.oneditresize) {
var form = $("#node-config-dialog-edit-form"); var form = $("#node-config-dialog-edit-form");
@ -745,7 +757,7 @@ RED.editor = (function() {
var trayFooter = tray.find(".editor-tray-footer"); var trayFooter = tray.find(".editor-tray-footer");
trayFooter.prepend('<div id="node-config-dialog-user-count"><i class="fa fa-info-circle"></i> <span></span></div>'); trayFooter.prepend('<div id="node-config-dialog-user-count"><i class="fa fa-info-circle"></i> <span></span></div>');
trayHeader.append('<span id="node-config-dialog-scope-container"><span id="node-config-dialog-scope-warning" data-i18n="[title]editor.errors.scopeChange"><i class="fa fa-warning"></i></span><select id="node-config-dialog-scope"></select></span>'); trayFooter.append('<span id="node-config-dialog-scope-container"><span id="node-config-dialog-scope-warning" data-i18n="[title]editor.errors.scopeChange"><i class="fa fa-warning"></i></span><select id="node-config-dialog-scope"></select></span>');
RED.keyboard.disable(); RED.keyboard.disable();
@ -822,6 +834,7 @@ RED.editor = (function() {
RED.keyboard.enable(); RED.keyboard.enable();
} }
RED.workspaces.refresh(); RED.workspaces.refresh();
editStack.pop();
}, },
show: function() { show: function() {
if (editing_config_node) { if (editing_config_node) {
@ -830,9 +843,33 @@ RED.editor = (function() {
} }
} }
trayOptions.buttons = [ trayOptions.buttons = [
{
id: "node-config-dialog-cancel",
text: RED._("common.label.cancel"),
click: function() {
var configType = type;
var configId = editing_config_node.id;
var configAdding = adding;
var configTypeDef = RED.nodes.getType(configType);
if (configTypeDef.oneditcancel) {
// TODO: what to pass as this to call
if (configTypeDef.oneditcancel) {
var cn = RED.nodes.node(configId);
if (cn) {
configTypeDef.oneditcancel.call(cn,false);
} else {
configTypeDef.oneditcancel.call({id:configId},true);
}
}
}
RED.tray.close();
}
},
{ {
id: "node-config-dialog-ok", id: "node-config-dialog-ok",
text: adding?RED._("editor.configAdd"):RED._("editor.configUpdate"), text: adding?RED._("editor.configAdd"):RED._("editor.configUpdate"),
class: "primary",
click: function() { click: function() {
var configProperty = name; var configProperty = name;
var configId = editing_config_node.id; var configId = editing_config_node.id;
@ -931,36 +968,13 @@ RED.editor = (function() {
updateConfigNodeSelect(configProperty,configType,editing_config_node.id,prefix); updateConfigNodeSelect(configProperty,configType,editing_config_node.id,prefix);
}); });
} }
},
{
id: "node-config-dialog-cancel",
text: RED._("common.label.cancel"),
click: function() {
var configType = type;
var configId = editing_config_node.id;
var configAdding = adding;
var configTypeDef = RED.nodes.getType(configType);
if (configTypeDef.oneditcancel) {
// TODO: what to pass as this to call
if (configTypeDef.oneditcancel) {
var cn = RED.nodes.node(configId);
if (cn) {
configTypeDef.oneditcancel.call(cn,false);
} else {
configTypeDef.oneditcancel.call({id:configId},true);
}
}
}
RED.tray.close();
}
} }
]; ];
if (!adding) { if (!adding) {
trayOptions.buttons.unshift({ trayOptions.buttons.unshift({
class: 'leftButton', class: 'leftButton',
text: RED._("editor.configDelete"), text: RED._("editor.configDelete"), //'<i class="fa fa-trash"></i>',
click: function() { click: function() {
var configProperty = name; var configProperty = name;
var configId = editing_config_node.id; var configId = editing_config_node.id;
@ -1067,15 +1081,24 @@ RED.editor = (function() {
function showEditSubflowDialog(subflow) { function showEditSubflowDialog(subflow) {
var editing_node = subflow; var editing_node = subflow;
editStack.push(subflow);
RED.view.state(RED.state.EDITING); RED.view.state(RED.state.EDITING);
var subflowEditor; var subflowEditor;
var trayOptions = { var trayOptions = {
title: RED._("subflow.editSubflow",{name:subflow.name}), title: getEditStackTitle(),
buttons: [ buttons: [
{
id: "node-dialog-cancel",
text: RED._("common.label.cancel"),
click: function() {
RED.tray.close();
}
},
{ {
id: "node-dialog-ok", id: "node-dialog-ok",
text: RED._("common.label.ok"), class: "primary",
text: RED._("common.label.done"),
click: function() { click: function() {
var i; var i;
var changes = {}; var changes = {};
@ -1133,13 +1156,6 @@ RED.editor = (function() {
editing_node.dirty = true; editing_node.dirty = true;
RED.tray.close(); RED.tray.close();
} }
},
{
id: "node-dialog-cancel",
text: RED._("common.label.cancel"),
click: function() {
RED.tray.close();
}
} }
], ],
resize: function() { resize: function() {
@ -1189,7 +1205,7 @@ RED.editor = (function() {
}); });
$("#subflow-input-name").val(subflow.name); $("#subflow-input-name").val(subflow.name);
subflowEditor.getSession().setValue(subflow.info,-1); subflowEditor.getSession().setValue(subflow.info||"",-1);
var userCount = 0; var userCount = 0;
var subflowType = "subflow:"+editing_node.id; var subflowType = "subflow:"+editing_node.id;
@ -1209,6 +1225,7 @@ RED.editor = (function() {
} }
RED.sidebar.info.refresh(editing_node); RED.sidebar.info.refresh(editing_node);
RED.workspaces.refresh(); RED.workspaces.refresh();
editStack.pop();
editing_node = null; editing_node = null;
}, },
show: function() { show: function() {
@ -1222,6 +1239,15 @@ RED.editor = (function() {
return { return {
init: function() { init: function() {
RED.tray.init(); RED.tray.init();
$(window).on('keydown', function(evt) {
if (evt.keyCode === $.ui.keyCode.ESCAPE && (evt.metaKey || evt.ctrlKey)) {
$("#node-dialog-cancel").click();
$("#node-config-dialog-cancel").click();
} else if (evt.keyCode === $.ui.keyCode.ENTER && (evt.metaKey || evt.ctrlKey)) {
$("#node-dialog-ok").click();
$("#node-config-dialog-ok").click();
}
});
}, },
edit: showEditDialog, edit: showEditDialog,
editConfig: showEditConfigNodeDialog, editConfig: showEditConfigNodeDialog,

View File

@ -17,7 +17,7 @@ RED.sidebar.config = (function() {
var content = document.createElement("div"); var content = document.createElement("div");
content.className = "sidebar-node-config" content.className = "sidebar-node-config";
$('<div class="button-group sidebar-header">'+ $('<div class="button-group sidebar-header">'+
'<a class="sidebar-header-button-toggle selected" id="workspace-config-node-filter-all" href="#"><span data-i18n="sidebar.config.filterAll"></span></a>'+ '<a class="sidebar-header-button-toggle selected" id="workspace-config-node-filter-all" href="#"><span data-i18n="sidebar.config.filterAll"></span></a>'+
@ -35,6 +35,9 @@ RED.sidebar.config = (function() {
var flowCategories = $("<div>").appendTo(content); var flowCategories = $("<div>").appendTo(content);
var subflowCategories = $("<div>").appendTo(content); var subflowCategories = $("<div>").appendTo(content);
var shade = $('<div class="sidebar-node-config-shade hide"></div>').appendTo(content);
var showUnusedOnly = false; var showUnusedOnly = false;
var categories = {}; var categories = {};
@ -288,6 +291,12 @@ RED.sidebar.config = (function() {
return { return {
init:init, init:init,
show:show, show:show,
refresh:refreshConfigNodeList refresh:refreshConfigNodeList,
disable: function() {
shade.show();
},
enable: function() {
shade.hide();
}
} }
})(); })();

View File

@ -22,23 +22,26 @@ RED.tray = (function() {
} }
function showTray(options) { function showTray(options) {
var el = $('<div class="editor-tray"></div>'); var el = $('<div class="editor-tray"></div>');
var header = $('<div class="editor-tray-header">'+(options.title||"")+'</div>').appendTo(el); var header = $('<div class="editor-tray-header"></div>').appendTo(el);
var body = $('<div class="editor-tray-body"></div>').appendTo(el); var body = $('<div class="editor-tray-body"></div>').appendTo(el);
var footer = $('<div class="editor-tray-footer"></div>').appendTo(el); var footer = $('<div class="editor-tray-footer"></div>').appendTo(el);
var resizer = $('<div class="editor-tray-resize-handle"></div>').appendTo(el); var resizer = $('<div class="editor-tray-resize-handle"></div>').appendTo(el);
var growButton = $('<a class="editor-tray-resize-button" style="cursor: w-resize;"><i class="fa fa-angle-left"></i></a>').appendTo(resizer); // var growButton = $('<a class="editor-tray-resize-button" style="cursor: w-resize;"><i class="fa fa-angle-left"></i></a>').appendTo(resizer);
var shrinkButton = $('<a class="editor-tray-resize-button" style="cursor: e-resize;"><i style="margin-left: 1px;" class="fa fa-angle-right"></i></a>').appendTo(resizer); // var shrinkButton = $('<a class="editor-tray-resize-button" style="cursor: e-resize;"><i style="margin-left: 1px;" class="fa fa-angle-right"></i></a>').appendTo(resizer);
if (options.title) {
$('<div class="editor-tray-titlebar">'+options.title+'</div>').appendTo(header);
}
var buttonBar = $('<div class="editor-tray-toolbar"></div>').appendTo(header);
if (options.buttons) { if (options.buttons) {
for (var i=0;i<options.buttons.length;i++) { for (var i=0;i<options.buttons.length;i++) {
var button = options.buttons[i]; var button = options.buttons[i];
var b = $('<button>').appendTo(footer); var b = $('<button>').appendTo(buttonBar);
if (button.id) { if (button.id) {
b.attr('id',button.id); b.attr('id',button.id);
} }
if (button.text) { if (button.text) {
b.text(button.text); b.html(button.text);
} }
if (button.click) { if (button.click) {
b.click(button.click); b.click(button.click);
@ -56,6 +59,8 @@ RED.tray = (function() {
footer: footer, footer: footer,
options: options options: options
}; };
stack.push(tray);
el.draggable({ el.draggable({
handle: resizer, handle: resizer,
axis: "x", axis: "x",
@ -88,6 +93,7 @@ RED.tray = (function() {
$("#header-shade").show(); $("#header-shade").show();
$("#editor-shade").show(); $("#editor-shade").show();
RED.sidebar.config.disable();
tray.preferredWidth = el.width(); tray.preferredWidth = el.width();
if (options.width) { if (options.width) {
@ -103,8 +109,6 @@ RED.tray = (function() {
}); });
$("#workspace").scrollLeft(0); $("#workspace").scrollLeft(0);
stack.push(tray);
var trayHeight = el.height()-header.outerHeight()-footer.outerHeight(); var trayHeight = el.height()-header.outerHeight()-footer.outerHeight();
body.height(trayHeight-40); body.height(trayHeight-40);
@ -123,27 +127,27 @@ RED.tray = (function() {
el.css({right:0}); el.css({right:0});
},0); },0);
growButton.click(function(e) { // growButton.click(function(e) {
e.preventDefault(); // e.preventDefault();
tray.lastWidth = tray.width; // tray.lastWidth = tray.width;
tray.width = $("#editor-stack").position().left-8; // tray.width = $("#editor-stack").position().left-8;
el.width(tray.width); // el.width(tray.width);
if (options.resize) { // if (options.resize) {
options.resize({width:tray.width}); // options.resize({width:tray.width});
} // }
}); // });
shrinkButton.click(function(e) { // shrinkButton.click(function(e) {
e.preventDefault(); // e.preventDefault();
if (tray.lastWidth && tray.width > tray.lastWidth) { // if (tray.lastWidth && tray.width > tray.lastWidth) {
tray.width = tray.lastWidth; // tray.width = tray.lastWidth;
} else if (tray.width > tray.preferredWidth) { // } else if (tray.width > tray.preferredWidth) {
tray.width = tray.preferredWidth; // tray.width = tray.preferredWidth;
} // }
el.width(tray.width); // el.width(tray.width);
if (options.resize) { // if (options.resize) {
options.resize({width:tray.width}); // options.resize({width:tray.width});
} // }
}); // });
} }
@ -212,6 +216,8 @@ RED.tray = (function() {
if (stack.length === 0) { if (stack.length === 0) {
$("#header-shade").hide(); $("#header-shade").hide();
$("#editor-shade").hide(); $("#editor-shade").hide();
RED.sidebar.config.enable();
} }
} }
} }

View File

@ -52,3 +52,8 @@ $workspace-button-color-focus-outline: rgba(85,150,230,0.2);
$typedInput-button-background: #efefef; $typedInput-button-background: #efefef;
$typedInput-button-background-hover: #ddd; $typedInput-button-background-hover: #ddd;
$typedInput-button-background-active: #e3e3e3; $typedInput-button-background-active: #e3e3e3;
$editor-button-color-primary: #666;
$editor-button-color-secondary: #999;
$shade-color: rgba(220,220,220,0.5);

View File

@ -1,5 +1,5 @@
/** /**
* Copyright 2015 IBM Corp. * Copyright 2015, 2016 IBM Corp.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -15,88 +15,139 @@
**/ **/
#editor-stack { #editor-stack {
position: absolute; position: absolute;
margin: 0; margin: 0;
top: 0; top: 0;
bottom: 0px; bottom: 0px;
right: 323px; right: 323px;
width: 0; width: 0;
} }
.editor-tray { .editor-tray {
position:absolute; position:absolute;
margin: 0; margin: 0;
top: 0; top: 0;
min-width: 500px; min-width: 500px;
width: auto; width: auto;
right: -1000px; right: -1000px;
bottom: 0; bottom: 0;
background: #fff; background: #fff;
border-left: 1px solid $secondary-border-color; border-left: 1px solid $secondary-border-color;
border-bottom: 1px solid $primary-border-color; border-bottom: 1px solid $primary-border-color;
box-sizing: content-box; box-sizing: content-box;
} }
.editor-tray.open { .editor-tray.open {
right: 0; right: 0;
} }
.editor-tray-body { .editor-tray-body {
width: auto; width: auto;
padding: 20px; padding: 20px;
min-width: 500px; min-width: 500px;
box-sizing: border-box; box-sizing: border-box;
overflow-y: scroll; overflow-y: scroll;
} }
.editor-tray-header { .editor-tray-header {
padding: 10px; @include disable-selection;
box-sizing: border-box; position: relative;
font-weight: bold; box-sizing: border-box;
height: 40px; font-weight: bold;
border-bottom: 1px solid $primary-border-color; border-bottom: 1px solid $secondary-border-color;
background: $palette-header-background; background: $palette-header-background;
} &:after {
.editor-tray-footer { content: "";
@include component-footer; display: table;
height: auto; clear: both;
padding: 8px; }
button { }
@include workspace-button;
padding: 0.4em 1em;
margin-right: 8px;
&.leftButton { .editor-tray-footer {
margin-right: 40px; @include component-footer;
} height: 35px;
} }
}
.editor-tray-resize-handle { .editor-tray-toolbar {
position: absolute; text-align: right;
top: 0px; padding: 8px;
bottom: 0px;
width: 7px; button {
left: -9px; @include workspace-button;
background: $background-color url(images/grip.png) no-repeat 50% 50%; padding: 0.4em 1em;
cursor: col-resize; margin-right: 8px;
border-left: 1px solid $primary-border-color; color: $editor-button-color-primary;
box-shadow: -1px 0 6px rgba(0,0,0,0.1); &.leftButton {
} float: left;
margin-top: 1px;
}
&:not(.leftButton):not(:last-child) {
margin-right: 16px;
}
&:not(.primary) {
background: none;
&:hover {
color: $editor-button-color-primary;
}
}
}
}
.editor-tray-titlebar {
border-bottom: 1px solid $secondary-border-color;
padding: 8px;
}
.editor-tray-breadcrumbs {
list-style-type: none;
margin: 0;
padding:0;
li {
display: inline-block;
padding:0;
margin:0;
&:not(:last-child) {
color: $editor-button-color-secondary;
font-weight: normal;
&:after {
display: inline-block;
content: '>';
margin: 0 5px;
}
}
}
}
.editor-tray-resize-handle {
position: absolute;
top: 0px;
bottom: 0px;
width: 7px;
left: -9px;
background: $background-color url(images/grip.png) no-repeat 50% 50%;
cursor: col-resize;
border-left: 1px solid $primary-border-color;
box-shadow: -1px 0 6px rgba(0,0,0,0.1);
}
.editor-tray-resize-button { .editor-tray-resize-button {
@include workspace-button; @include workspace-button;
display: block; display: block;
height: 20px; height: 37px;
line-height: 35px;
border: none; border: none;
border-bottom: 1px solid $secondary-border-color; border-bottom: 1px solid $secondary-border-color;
margin: 0; margin: 0;
background: $background-color; background: $background-color;
color: $workspace-button-color-disabled; color: $workspace-button-color;
}
#editor-shade, #header-shade {
position: absolute;
top:0;
bottom:0;
left:0;
right:0;
background: $shade-color;
} }
#editor-shade, #header-shade {
position: absolute;
top:0;
bottom:0;
left:0;
right:0;
background: rgba(220,220,220,0.5);
}
.dialog-form,#dialog-form, #dialog-config-form { .dialog-form,#dialog-form, #dialog-config-form {
@ -164,6 +215,7 @@
cursor: auto; cursor: auto;
float: right; float: right;
font-size: 12px !important; font-size: 12px !important;
line-height: 35px;
} }
#node-config-dialog-scope-warning { #node-config-dialog-scope-warning {
display: inline-block; display: inline-block;
@ -175,13 +227,14 @@
margin: 1px 0 0 0; margin: 1px 0 0 0;
padding: 0; padding: 0;
height: 22px; height: 22px;
width: 110px; width: 150px;
} }
#node-config-dialog-user-count { #node-config-dialog-user-count {
vertical-align: middle; vertical-align: middle;
display:inline-block; display:inline-block;
margin-top: 10px;
margin-right: 20px; margin-right: 20px;
float:left; float:left;
font-size: 12px; font-size: 12px;
line-height: 35px;
} }

View File

@ -15,11 +15,21 @@
**/ **/
.sidebar-node-config { .sidebar-node-config {
position: relative;
background: #f3f3f3; background: #f3f3f3;
height: 100%; height: 100%;
overflow-y:auto; overflow-y:auto;
@include disable-selection; @include disable-selection;
} }
.sidebar-node-config-shade {
position: absolute;
top:0;
bottom:0;
left:0;
right:0;
background: $shade-color;
}
.config-node-list { .config-node-list {
margin: 0; margin: 0;

View File

@ -3,6 +3,7 @@
"label": { "label": {
"name": "Name", "name": "Name",
"ok": "Ok", "ok": "Ok",
"done":"Done",
"cancel": "Cancel", "cancel": "Cancel",
"delete": "Delete", "delete": "Delete",
"close": "Close" "close": "Close"
@ -128,6 +129,7 @@
"nodesUse": "__count__ node uses this config", "nodesUse": "__count__ node uses this config",
"nodesUse_plural": "__count__ nodes use this config", "nodesUse_plural": "__count__ nodes use this config",
"addNewConfig": "Add new __type__ config node", "addNewConfig": "Add new __type__ config node",
"editNode": "Edit __type__ node",
"editConfig": "Edit __type__ config node", "editConfig": "Edit __type__ config node",
"addNewType": "Add new __type__...", "addNewType": "Add new __type__...",
"errors": { "errors": {