fix dimensions of the query editor (#5910)

This commit is contained in:
Anthony Dresser
2019-06-06 12:31:12 -07:00
committed by Karl Burtram
parent 68328f65b5
commit 76a84a2cf4
4 changed files with 13 additions and 29 deletions

View File

@@ -297,7 +297,6 @@ export class TabbedPanel extends Disposable {
if (dimension) {
this._currentDimensions = dimension;
this.parent.style.height = dimension.height + 'px';
this.parent.style.height = dimension.width + 'px';
this.header.style.width = dimension.width + 'px';
this.body.style.width = dimension.width + 'px';
const bodyHeight = dimension.height - (this._headerVisible ? this.headersize : 0);

View File

@@ -19,7 +19,10 @@
.carbon-taskbar {
width: 100%;
position: relative;
margin: 2px 0px 2px 0px;
}
.carbon-taskbar .monaco-action-bar {
padding: 2px 0px 2px 0px;
}
.carbon-taskbar.monaco-toolbar .monaco-action-bar.animated .actions-container {