Skip to content

Commit

Permalink
trusted types
Browse files Browse the repository at this point in the history
related to #106395
  • Loading branch information
joaomoreno committed Sep 10, 2020
1 parent 663810e commit 41794e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/sash/browser/sash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class SashSizeController extends Disposable implements IWorkbenchContribu
const size = clamp(this.configurationService.getValue<number>(this.configurationName) ?? minSize, minSize, maxSize);

// Update styles
this.stylesheet.innerHTML = `
this.stylesheet.textContent = `
.monaco-sash.vertical { cursor: ew-resize; top: 0; width: ${size}px; height: 100%; }
.monaco-sash.horizontal { cursor: ns-resize; left: 0; width: 100%; height: ${size}px; }
.monaco-sash:not(.disabled).orthogonal-start::before, .monaco-sash:not(.disabled).orthogonal-end::after { content: ' '; height: ${size * 2}px; width: ${size * 2}px; z-index: 100; display: block; cursor: all-scroll; position: absolute; }
Expand Down

0 comments on commit 41794e5

Please sign in to comment.