Skip to content

Commit 9f3fe46

Browse files
committed
make the debug border not take up space
1 parent ae0ce4a commit 9f3fe46

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

coderibbon-theia/src/browser/cr-patch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class CodeRibbonTheiaPatch extends TabPanel {
9999
this.tabBar.allowDeselect = false;
100100

101101
// HACK to do this after other updates have been applied
102-
setTimeout(() => this.refitBoxLayout());
102+
setTimeout(() => this.refitBoxLayout(), 2);
103103
// this.refitBoxLayout();
104104
}
105105

coderibbon-theia/src/browser/style/debug.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/** @format */
22

33
.cr-RibbonStrip-child {
4-
border: 2px solid rebeccapurple;
4+
outline: 1px solid rebeccapurple;
55
}
66

77
.cr-RibbonStrip {
8-
border: 2px solid darkred;
8+
outline: 2px solid darkred;
99
}
1010

1111
.cr-RibbonStrip:after {

coderibbon-theia/src/browser/style/ribbon.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#theia-bottom-split-panel > #theia-main-content-panel.cr-RibbonPanel {
44
overflow-x: scroll;
5+
overflow-y: visible;
56

67
.cr-RibbonStrip {
78
transition: left 0.2s ease;

0 commit comments

Comments
 (0)