mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Update tooltip style and add to some editor buttons
This commit is contained in:
parent
b2f50da322
commit
cdcf39fe82
@ -78,6 +78,12 @@
|
|||||||
"projects-settings": "Project Settings"
|
"projects-settings": "Project Settings"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"actions": {
|
||||||
|
"toggle-navigator": "Toggle navigator",
|
||||||
|
"zoom-out": "Zoom out",
|
||||||
|
"zoom-reset": "Reset zoom",
|
||||||
|
"zoom-in": "Zoom in"
|
||||||
|
},
|
||||||
"user": {
|
"user": {
|
||||||
"loggedInAs": "Logged in as __name__",
|
"loggedInAs": "Logged in as __name__",
|
||||||
"username": "Username",
|
"username": "Username",
|
||||||
@ -335,6 +341,10 @@
|
|||||||
"analysis": "analysis",
|
"analysis": "analysis",
|
||||||
"advanced": "advanced"
|
"advanced": "advanced"
|
||||||
},
|
},
|
||||||
|
"actions": {
|
||||||
|
"collapse-all": "Collapse all categories",
|
||||||
|
"expand-all": "Expand all categories"
|
||||||
|
},
|
||||||
"event": {
|
"event": {
|
||||||
"nodeAdded": "Node added to palette:",
|
"nodeAdded": "Node added to palette:",
|
||||||
"nodeAdded_plural": "Nodes added to palette",
|
"nodeAdded_plural": "Nodes added to palette",
|
||||||
@ -488,7 +498,9 @@
|
|||||||
"editDescription": "Edit project description",
|
"editDescription": "Edit project description",
|
||||||
"editDependencies": "Edit project dependencies",
|
"editDependencies": "Edit project dependencies",
|
||||||
"editReadme": "Edit README.md",
|
"editReadme": "Edit README.md",
|
||||||
|
"showProjectSettings": "Show project settings",
|
||||||
"projectSettings": {
|
"projectSettings": {
|
||||||
|
"title": "Project Settings",
|
||||||
"edit": "edit",
|
"edit": "edit",
|
||||||
"none": "None",
|
"none": "None",
|
||||||
"install": "install",
|
"install": "install",
|
||||||
|
@ -18,15 +18,19 @@ RED.popover = (function() {
|
|||||||
var deltaSizes = {
|
var deltaSizes = {
|
||||||
"default": {
|
"default": {
|
||||||
top: 10,
|
top: 10,
|
||||||
|
topTop: 30,
|
||||||
leftRight: 17,
|
leftRight: 17,
|
||||||
leftLeft: 25,
|
leftLeft: 25,
|
||||||
leftBottom: 8,
|
leftBottom: 8,
|
||||||
|
leftTop: 11
|
||||||
},
|
},
|
||||||
"small": {
|
"small": {
|
||||||
top: 5,
|
top: 6,
|
||||||
leftRight: 17,
|
topTop: 20,
|
||||||
leftLeft: 16,
|
leftRight: 8,
|
||||||
leftBottom: 3,
|
leftLeft: 26,
|
||||||
|
leftBottom: 8,
|
||||||
|
leftTop: 9
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function createPopover(options) {
|
function createPopover(options) {
|
||||||
@ -48,7 +52,7 @@ RED.popover = (function() {
|
|||||||
|
|
||||||
var openPopup = function(instant) {
|
var openPopup = function(instant) {
|
||||||
if (active) {
|
if (active) {
|
||||||
div = $('<div class="red-ui-popover red-ui-popover-'+direction+'"></div>');
|
div = $('<div class="red-ui-popover"></div>');
|
||||||
if (size !== "default") {
|
if (size !== "default") {
|
||||||
div.addClass("red-ui-popover-size-"+size);
|
div.addClass("red-ui-popover-size-"+size);
|
||||||
}
|
}
|
||||||
@ -75,13 +79,36 @@ RED.popover = (function() {
|
|||||||
var targetHeight = target.outerHeight();
|
var targetHeight = target.outerHeight();
|
||||||
var divHeight = div.height();
|
var divHeight = div.height();
|
||||||
var divWidth = div.width();
|
var divWidth = div.width();
|
||||||
|
|
||||||
|
var viewportTop = $(window).scrollTop();
|
||||||
|
var viewportBottom = viewportTop + $(window).height();
|
||||||
|
var top = 0;
|
||||||
|
var left = 0;
|
||||||
if (direction === 'right') {
|
if (direction === 'right') {
|
||||||
div.css({top: targetPos.top+targetHeight/2-divHeight/2-deltaSizes[size].top,left:targetPos.left+targetWidth+deltaSizes[size].leftRight});
|
top = targetPos.top+targetHeight/2-divHeight/2-deltaSizes[size].top;
|
||||||
|
left = targetPos.left+targetWidth+deltaSizes[size].leftRight;
|
||||||
} else if (direction === 'left') {
|
} else if (direction === 'left') {
|
||||||
div.css({top: targetPos.top+targetHeight/2-divHeight/2-deltaSizes[size].top,left:targetPos.left-deltaSizes[size].leftLeft-divWidth});
|
top = targetPos.top+targetHeight/2-divHeight/2-deltaSizes[size].top;
|
||||||
|
left = targetPos.left-deltaSizes[size].leftLeft-divWidth;
|
||||||
} else if (direction === 'bottom') {
|
} else if (direction === 'bottom') {
|
||||||
div.css({top: targetPos.top+targetHeight+deltaSizes[size].top,left:targetPos.left+targetWidth/2-divWidth/2 - deltaSizes[size].leftBottom});
|
top = targetPos.top+targetHeight+deltaSizes[size].top;
|
||||||
|
left = targetPos.left+targetWidth/2-divWidth/2 - deltaSizes[size].leftBottom;
|
||||||
|
if (top+divHeight > viewportBottom) {
|
||||||
|
direction = 'top'
|
||||||
|
top = targetPos.top-deltaSizes[size].topTop-divHeight;
|
||||||
|
left = targetPos.left+targetWidth/2-divWidth/2 - deltaSizes[size].leftTop;
|
||||||
|
}
|
||||||
|
} else if (direction === 'top') {
|
||||||
|
top = targetPos.top-deltaSizes[size].topTop-divHeight;
|
||||||
|
left = targetPos.left+targetWidth/2-divWidth/2 - deltaSizes[size].leftTop;
|
||||||
|
if (top < 0) {
|
||||||
|
direction = 'bottom';
|
||||||
|
top = targetPos.top+targetHeight+deltaSizes[size].top;
|
||||||
|
left = targetPos.left+targetWidth/2-divWidth/2 - deltaSizes[size].leftBottom;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
div.addClass('red-ui-popover-'+direction).css({top: top, left: left});
|
||||||
|
|
||||||
if (instant) {
|
if (instant) {
|
||||||
div.show();
|
div.show();
|
||||||
} else {
|
} else {
|
||||||
@ -156,14 +183,25 @@ RED.popover = (function() {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
create: createPopover,
|
create: createPopover,
|
||||||
tooltip: function(target,content) {
|
tooltip: function(target,content, action) {
|
||||||
|
var label = content;
|
||||||
|
if (action) {
|
||||||
|
label = function() {
|
||||||
|
var label = content;
|
||||||
|
var shortcut = RED.keyboard.getShortcut(action);
|
||||||
|
if (shortcut && shortcut.key) {
|
||||||
|
label = $('<span>'+content+' <span class="red-ui-popover-key">'+RED.keyboard.formatKey(shortcut.key, true)+'</span></span>');
|
||||||
|
}
|
||||||
|
return label;
|
||||||
|
}
|
||||||
|
}
|
||||||
RED.popover.create({
|
RED.popover.create({
|
||||||
target:target,
|
target:target,
|
||||||
trigger: "hover",
|
trigger: "hover",
|
||||||
size: "small",
|
size: "small",
|
||||||
direction: "bottom",
|
direction: "bottom",
|
||||||
content: content,
|
content: label,
|
||||||
delay: { show: 550, hide: 10 }
|
delay: { show: 350, hide: 10 }
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -353,7 +353,7 @@ RED.tabs = (function() {
|
|||||||
pinnedLink.addClass("red-ui-tab-link-button-pinned");
|
pinnedLink.addClass("red-ui-tab-link-button-pinned");
|
||||||
pinnedTabsCount++;
|
pinnedTabsCount++;
|
||||||
}
|
}
|
||||||
RED.popover.tooltip($(pinnedLink), tab.name);
|
RED.popover.tooltip($(pinnedLink), tab.name, tab.action);
|
||||||
|
|
||||||
}
|
}
|
||||||
link.on("click",onTabClick);
|
link.on("click",onTabClick);
|
||||||
|
@ -319,7 +319,7 @@ RED.keyboard = (function() {
|
|||||||
|
|
||||||
var cmdCtrlKey = '<span class="help-key">'+(isMac?'⌘':'Ctrl')+'</span>';
|
var cmdCtrlKey = '<span class="help-key">'+(isMac?'⌘':'Ctrl')+'</span>';
|
||||||
|
|
||||||
function formatKey(key) {
|
function formatKey(key,plain) {
|
||||||
var formattedKey = isMac?key.replace(/ctrl-?/,"⌘"):key;
|
var formattedKey = isMac?key.replace(/ctrl-?/,"⌘"):key;
|
||||||
formattedKey = isMac?formattedKey.replace(/alt-?/,"⌥"):key;
|
formattedKey = isMac?formattedKey.replace(/alt-?/,"⌥"):key;
|
||||||
formattedKey = formattedKey.replace(/shift-?/,"⇧")
|
formattedKey = formattedKey.replace(/shift-?/,"⇧")
|
||||||
@ -327,6 +327,9 @@ RED.keyboard = (function() {
|
|||||||
formattedKey = formattedKey.replace(/up/,"↑")
|
formattedKey = formattedKey.replace(/up/,"↑")
|
||||||
formattedKey = formattedKey.replace(/right/,"→")
|
formattedKey = formattedKey.replace(/right/,"→")
|
||||||
formattedKey = formattedKey.replace(/down/,"↓")
|
formattedKey = formattedKey.replace(/down/,"↓")
|
||||||
|
if (plain) {
|
||||||
|
return formattedKey;
|
||||||
|
}
|
||||||
return '<span class="help-key-block"><span class="help-key">'+formattedKey.split(" ").join('</span> <span class="help-key">')+'</span></span>';
|
return '<span class="help-key-block"><span class="help-key">'+formattedKey.split(" ").join('</span> <span class="help-key">')+'</span></span>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -509,6 +509,8 @@ RED.palette = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
RED.popover.tooltip($("#palette-collapse-all"),RED._('palette.actions.collapse-all'));
|
||||||
|
|
||||||
$("#palette-expand-all").on("click", function(e) {
|
$("#palette-expand-all").on("click", function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
for (var cat in categoryContainers) {
|
for (var cat in categoryContainers) {
|
||||||
@ -517,6 +519,7 @@ RED.palette = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
RED.popover.tooltip($("#palette-expand-all"),RED._('palette.actions.expand-all'));
|
||||||
}
|
}
|
||||||
function getCategories() {
|
function getCategories() {
|
||||||
var categories = [];
|
var categories = [];
|
||||||
|
@ -49,7 +49,7 @@ RED.projects.settings = (function() {
|
|||||||
var tabContainer;
|
var tabContainer;
|
||||||
|
|
||||||
var trayOptions = {
|
var trayOptions = {
|
||||||
title: RED._("menu.label.userSettings"),
|
title: RED._("sidebar.project.projectSettings.title"),
|
||||||
buttons: [
|
buttons: [
|
||||||
{
|
{
|
||||||
id: "node-dialog-ok",
|
id: "node-dialog-ok",
|
||||||
|
@ -1009,6 +1009,7 @@ RED.sidebar.versionControl = (function() {
|
|||||||
enableOnEdit: false,
|
enableOnEdit: false,
|
||||||
pinned: true,
|
pinned: true,
|
||||||
iconClass: "fa fa-code-fork",
|
iconClass: "fa fa-code-fork",
|
||||||
|
action: "core:show-version-control-tab",
|
||||||
onchange: function() {
|
onchange: function() {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
sections.resize();
|
sections.resize();
|
||||||
|
@ -222,6 +222,7 @@ RED.sidebar.config = (function() {
|
|||||||
content: content,
|
content: content,
|
||||||
toolbar: toolbar,
|
toolbar: toolbar,
|
||||||
iconClass: "fa fa-cog",
|
iconClass: "fa fa-cog",
|
||||||
|
action: "core:show-config-tab",
|
||||||
onchange: function() { refreshConfigNodeList(); }
|
onchange: function() { refreshConfigNodeList(); }
|
||||||
});
|
});
|
||||||
RED.actions.add("core:show-config-tab",function() {RED.sidebar.show('config')});
|
RED.actions.add("core:show-config-tab",function() {RED.sidebar.show('config')});
|
||||||
|
@ -132,7 +132,8 @@ RED.sidebar.context = (function() {
|
|||||||
content: content,
|
content: content,
|
||||||
toolbar: footerToolbar,
|
toolbar: footerToolbar,
|
||||||
// pinned: true,
|
// pinned: true,
|
||||||
enableOnEdit: false
|
enableOnEdit: false,
|
||||||
|
action: "core:show-context-tab"
|
||||||
});
|
});
|
||||||
|
|
||||||
// var toggleLiveButton = $("#sidebar-context-toggle-live");
|
// var toggleLiveButton = $("#sidebar-context-toggle-live");
|
||||||
|
@ -92,6 +92,7 @@ RED.sidebar.info = (function() {
|
|||||||
label: RED._("sidebar.info.label"),
|
label: RED._("sidebar.info.label"),
|
||||||
name: RED._("sidebar.info.name"),
|
name: RED._("sidebar.info.name"),
|
||||||
iconClass: "fa fa-info",
|
iconClass: "fa fa-info",
|
||||||
|
action:"core:show-info-tab",
|
||||||
content: content,
|
content: content,
|
||||||
pinned: true,
|
pinned: true,
|
||||||
enableOnEdit: true
|
enableOnEdit: true
|
||||||
@ -140,12 +141,13 @@ RED.sidebar.info = (function() {
|
|||||||
propRow = $('<tr class="node-info-node-row"><td>Project</td><td></td></tr>').appendTo(tableBody);
|
propRow = $('<tr class="node-info-node-row"><td>Project</td><td></td></tr>').appendTo(tableBody);
|
||||||
$(propRow.children()[1]).text(activeProject.name||"");
|
$(propRow.children()[1]).text(activeProject.name||"");
|
||||||
$('<tr class="node-info-property-expand blank"><td colspan="2"></td></tr>').appendTo(tableBody);
|
$('<tr class="node-info-property-expand blank"><td colspan="2"></td></tr>').appendTo(tableBody);
|
||||||
$('<button class="editor-button editor-button-small" style="position:absolute;right:2px;"><i class="fa fa-ellipsis-h"></i></button>')
|
var editProjectButton = $('<button class="editor-button editor-button-small" style="position:absolute;right:2px;"><i class="fa fa-ellipsis-h"></i></button>')
|
||||||
.appendTo(propRow.children()[1])
|
.appendTo(propRow.children()[1])
|
||||||
.click(function(evt) {
|
.click(function(evt) {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
RED.projects.editProject();
|
RED.projects.editProject();
|
||||||
});
|
});
|
||||||
|
RED.popover.tooltip(editProjectButton,RED._('sidebar.project.showProjectSettings'));
|
||||||
}
|
}
|
||||||
propertiesSection.container.show();
|
propertiesSection.container.show();
|
||||||
infoSection.container.show();
|
infoSection.container.show();
|
||||||
|
@ -158,6 +158,7 @@
|
|||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
toggle();
|
toggle();
|
||||||
})
|
})
|
||||||
|
RED.popover.tooltip($("#btn-navigate"),RED._('actions.toggle-navigator'),'core:toggle-navigator');
|
||||||
},
|
},
|
||||||
refresh: refreshNodes,
|
refresh: refreshNodes,
|
||||||
resize: resizeNavBorder,
|
resize: resizeNavBorder,
|
||||||
|
@ -337,8 +337,11 @@ RED.view = (function() {
|
|||||||
RED.view.navigator.init();
|
RED.view.navigator.init();
|
||||||
|
|
||||||
$("#btn-zoom-out").click(function() {zoomOut();});
|
$("#btn-zoom-out").click(function() {zoomOut();});
|
||||||
|
RED.popover.tooltip($("#btn-zoom-out"),RED._('actions.zoom-out'),'core:zoom-out');
|
||||||
$("#btn-zoom-zero").click(function() {zoomZero();});
|
$("#btn-zoom-zero").click(function() {zoomZero();});
|
||||||
|
RED.popover.tooltip($("#btn-zoom-zero"),RED._('actions.zoom-reset'),'core:zoom-reset');
|
||||||
$("#btn-zoom-in").click(function() {zoomIn();});
|
$("#btn-zoom-in").click(function() {zoomIn();});
|
||||||
|
RED.popover.tooltip($("#btn-zoom-in"),RED._('actions.zoom-in'),'core:zoom-in');
|
||||||
$("#chart").on("DOMMouseScroll mousewheel", function (evt) {
|
$("#chart").on("DOMMouseScroll mousewheel", function (evt) {
|
||||||
if ( evt.altKey ) {
|
if ( evt.altKey ) {
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
|
@ -67,3 +67,6 @@ $editor-button-color: #999;
|
|||||||
$editor-button-background: #fff;
|
$editor-button-background: #fff;
|
||||||
|
|
||||||
$shade-color: rgba(160,160,160,0.5);
|
$shade-color: rgba(160,160,160,0.5);
|
||||||
|
|
||||||
|
$popover-background: #333;
|
||||||
|
$popover-color: #eee;
|
||||||
|
@ -21,12 +21,14 @@
|
|||||||
width: auto;
|
width: auto;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
height: auto;
|
height: auto;
|
||||||
background: #fff;
|
background: $popover-background;
|
||||||
|
color: $popover-color;
|
||||||
|
border-radius: 4px;
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1.4em;
|
line-height: 1.4em;
|
||||||
@include component-shadow;
|
@include component-shadow;
|
||||||
|
border-color: $popover-background;
|
||||||
}
|
}
|
||||||
|
|
||||||
.red-ui-popover:after, .red-ui-popover:before {
|
.red-ui-popover:after, .red-ui-popover:before {
|
||||||
@ -51,28 +53,33 @@
|
|||||||
left: 50%;
|
left: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.red-ui-popover.red-ui-popover-top:after, .red-ui-popover.red-ui-popover-top:before {
|
||||||
|
top: 100%;
|
||||||
|
left: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
.red-ui-popover.red-ui-popover-right:after {
|
.red-ui-popover.red-ui-popover-right:after {
|
||||||
border-color: rgba(136, 183, 213, 0);
|
border-color: rgba(136, 183, 213, 0);
|
||||||
border-right-color: #fff;
|
border-right-color: $popover-background;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
margin-top: -10px;
|
margin-top: -10px;
|
||||||
}
|
}
|
||||||
.red-ui-popover.red-ui-popover-right:before {
|
.red-ui-popover.red-ui-popover-right:before {
|
||||||
border-color: rgba(194, 225, 245, 0);
|
border-color: rgba(194, 225, 245, 0);
|
||||||
border-right-color: $primary-border-color;
|
border-right-color: $popover-background;
|
||||||
border-width: 11px;
|
border-width: 11px;
|
||||||
margin-top: -11px;
|
margin-top: -11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.red-ui-popover.red-ui-popover-left:after {
|
.red-ui-popover.red-ui-popover-left:after {
|
||||||
border-color: rgba(136, 183, 213, 0);
|
border-color: rgba(136, 183, 213, 0);
|
||||||
border-left-color: #fff;
|
border-left-color: $popover-background;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
margin-top: -10px;
|
margin-top: -10px;
|
||||||
}
|
}
|
||||||
.red-ui-popover.red-ui-popover-left:before {
|
.red-ui-popover.red-ui-popover-left:before {
|
||||||
border-color: rgba(194, 225, 245, 0);
|
border-color: rgba(194, 225, 245, 0);
|
||||||
border-left-color: $primary-border-color;
|
border-left-color: $popover-background;
|
||||||
border-width: 11px;
|
border-width: 11px;
|
||||||
margin-top: -11px;
|
margin-top: -11px;
|
||||||
}
|
}
|
||||||
@ -80,45 +87,61 @@
|
|||||||
|
|
||||||
.red-ui-popover.red-ui-popover-bottom:after {
|
.red-ui-popover.red-ui-popover-bottom:after {
|
||||||
border-color: rgba(136, 183, 213, 0);
|
border-color: rgba(136, 183, 213, 0);
|
||||||
border-bottom-color: #fff;
|
border-bottom-color: $popover-background;
|
||||||
border-width: 10px;
|
border-width: 10px;
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
}
|
}
|
||||||
.red-ui-popover.red-ui-popover-bottom:before {
|
.red-ui-popover.red-ui-popover-bottom:before {
|
||||||
border-color: rgba(194, 225, 245, 0);
|
border-color: rgba(194, 225, 245, 0);
|
||||||
border-bottom-color: $primary-border-color;
|
border-bottom-color: $popover-background;
|
||||||
|
border-width: 11px;
|
||||||
|
margin-left: -11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.red-ui-popover.red-ui-popover-top:after {
|
||||||
|
border-color: rgba(136, 183, 213, 0);
|
||||||
|
border-top-color: $popover-background;
|
||||||
|
border-width: 10px;
|
||||||
|
margin-left: -10px;
|
||||||
|
}
|
||||||
|
.red-ui-popover.red-ui-popover-top:before {
|
||||||
|
border-color: rgba(194, 225, 245, 0);
|
||||||
|
border-top-color: $popover-background;
|
||||||
border-width: 11px;
|
border-width: 11px;
|
||||||
margin-left: -11px;
|
margin-left: -11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.red-ui-popover-size-small {
|
.red-ui-popover-size-small {
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
padding: 5px;
|
padding: 5px 7px;
|
||||||
|
line-height: 1.8em;
|
||||||
|
|
||||||
&.red-ui-popover-right:after {
|
&.red-ui-popover-right:after, &.red-ui-popover-left:after {
|
||||||
border-width: 5px;
|
border-width: 7px;
|
||||||
margin-top: -5px;
|
margin-top: -7px;
|
||||||
}
|
}
|
||||||
&.red-ui-popover-right:before {
|
&.red-ui-popover-right:before, &.red-ui-popover-left:before {
|
||||||
border-width: 6px;
|
border-width: 8px;
|
||||||
margin-top: -6px;
|
margin-top: -8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.red-ui-popover-left:after {
|
&.red-ui-popover-bottom:after, &.red-ui-popover-top:after {
|
||||||
border-width: 5px;
|
border-width: 7px;
|
||||||
margin-top: -5px;
|
margin-left: -7px;
|
||||||
}
|
}
|
||||||
&.red-ui-popover-left:before {
|
&.red-ui-popover-bottom:before, &.red-ui-popover-top:before {
|
||||||
border-width: 6px;
|
border-width: 8px;
|
||||||
margin-top: -6px;
|
margin-left: -8px;
|
||||||
}
|
|
||||||
&.red-ui-popover-bottom:after {
|
|
||||||
border-width: 5px;
|
|
||||||
margin-left: -5px;
|
|
||||||
}
|
|
||||||
&.red-ui-popover-bottom:before {
|
|
||||||
border-width: 6px;
|
|
||||||
margin-left: -6px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.red-ui-popover-key {
|
||||||
|
font-family: monospace;
|
||||||
|
margin-left: 5px;
|
||||||
|
border: 1px solid #999;
|
||||||
|
border-radius:3px;
|
||||||
|
padding: 2px 3px;
|
||||||
}
|
}
|
||||||
|
@ -157,7 +157,8 @@
|
|||||||
toolbar: uiComponents.footer,
|
toolbar: uiComponents.footer,
|
||||||
enableOnEdit: true,
|
enableOnEdit: true,
|
||||||
pinned: true,
|
pinned: true,
|
||||||
iconClass: "fa fa-bug"
|
iconClass: "fa fa-bug",
|
||||||
|
action: "core:show-debug-tab"
|
||||||
});
|
});
|
||||||
RED.actions.add("core:show-debug-tab",function() { RED.sidebar.show('debug'); });
|
RED.actions.add("core:show-debug-tab",function() { RED.sidebar.show('debug'); });
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user