Change debug message menu icon

This commit is contained in:
Nick O'Leary 2017-05-22 22:21:52 +01:00
parent 1e9ce550db
commit bd14acb68a
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
2 changed files with 7 additions and 2 deletions

View File

@ -84,7 +84,12 @@
}
}
}
.debug-message-row .debug-message-tools {
.debug-message-meta .debug-message-tools {
.editor-button-small {
font-size: 11px;
}
}
.debug-message-tools {
.button-group:not(:last-child) {
margin-right: 3px;
}

View File

@ -456,7 +456,7 @@ RED.debug = (function() {
$('<span class="debug-message-topic">function : (' + errorLvlType + ')</span>').appendTo(metaRow);
} else {
var tools = $('<span class="debug-message-tools button-group"></span>').appendTo(metaRow);
var filterMessage = $('<button class="editor-button editor-button-small"><i class="fa fa-ellipsis-h"></i></button>').appendTo(tools);
var filterMessage = $('<button class="editor-button editor-button-small"><i class="fa fa-caret-down"></i></button>').appendTo(tools);
filterMessage.click(function(e) {
e.preventDefault();
e.stopPropagation();