rename css, fix background color getting applied

This commit is contained in:
meganrogge
2022-03-15 10:37:38 -04:00
parent 3e47c96445
commit 39f9c3507b
3 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -179,10 +179,10 @@
position: absolute;
}
.xterm-decoration-scrollbar {
.xterm-decoration-overview-ruler {
z-index: 7;
position: absolute;
top: 0;
right: 0;
width: 50px;
}
}
+3 -1
View File
@@ -548,7 +548,9 @@ function addDecoration() {
const marker = term.addMarker(1);
const decoration = term.registerDecoration({ marker });
decoration.onRender((e) => {
e.style.backgroundColor = 'red';
if (e.classList.value === 'xterm-decoration') {
e.style.backgroundColor = 'red';
}
});
}
@@ -29,7 +29,7 @@ export class OverviewRulerRenderer extends Disposable {
) {
super();
this._canvas = document.createElement('canvas');
this._canvas.classList.add('xterm-decoration-scrollbar');
this._canvas.classList.add('xterm-decoration-overview-ruler');
this._viewportElement.parentElement?.insertBefore(this._canvas, this._viewportElement);
this._ctx = this._canvas.getContext('2d');
this._canvas.style.width = `${this._optionsService.options.overviewRulerWidth || ScrollbarConstants.WIDTH}px`;