Tidy up ace tooltip styling

This commit is contained in:
Nick O'Leary 2018-10-19 10:42:39 +01:00
parent b2516117f5
commit 9751089807
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
2 changed files with 10 additions and 1 deletions

View File

@ -2151,7 +2151,8 @@ RED.editor = (function() {
} else { } else {
editor.setOptions({ editor.setOptions({
enableBasicAutocompletion:true, enableBasicAutocompletion:true,
enableSnippets:true enableSnippets:true,
tooltipFollowsMouse: false
}); });
} }
if (options.readOnly) { if (options.readOnly) {

View File

@ -19,3 +19,11 @@
background: #999 !important; background: #999 !important;
} }
} }
.ace_tooltip {
background-image: none;
background: #fcffdc;
border-radius: 4px;
@include component-shadow;
border-color: $primary-border-color;
}