bloat - remove unused css

This commit is contained in:
Johannes Rieken 2017-11-14 14:53:27 +01:00
parent 8e7c52c9e0
commit 9a91cd03d3
2 changed files with 0 additions and 7 deletions

View file

@ -12,11 +12,6 @@
padding-left: 2px;
}
.monaco-editor .lightbulb-glyph.hidden {
display: none;
visibility: hidden;
}
.monaco-editor .lightbulb-glyph:hover {
cursor: pointer;
/* transform: scale(1.3, 1.3); */

View file

@ -62,11 +62,9 @@ export class LightBulbWidget implements IDisposable, IContentWidget {
// is being pressed -> hide the lightbulb and block future
// showings until mouse is released
this.hide();
dom.addClass(this._domNode, 'hidden');
const monitor = new GlobalMouseMoveMonitor<IStandardMouseMoveEventData>();
monitor.startMonitoring(standardMouseMoveMerger, () => { }, () => {
monitor.dispose();
dom.removeClass(this._domNode, 'hidden');
});
}));
this._disposables.push(this._editor.onDidChangeConfiguration(e => {