File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -178,12 +178,15 @@ export class DomRenderer extends Disposable implements IRenderer {
178178
179179 // Base CSS
180180 let styles =
181- `${ this . _terminalSelector } .${ ROW_CONTAINER_CLASS } , ${ this . _terminalSelector } . ${ ROW_CONTAINER_CLASS } span {` +
181+ `${ this . _terminalSelector } .${ ROW_CONTAINER_CLASS } {` +
182182 // Disabling pointer events circumvents a browser behavior that prevents `click` events from
183183 // being delivered if the target element is replaced during the click. This happened due to
184184 // refresh() being called during the mousedown handler to start a selection.
185185 ` pointer-events: none;` +
186186 ` color: ${ colors . foreground . css } ;` +
187+ `}` ;
188+ styles +=
189+ `${ this . _terminalSelector } .${ ROW_CONTAINER_CLASS } , ${ this . _terminalSelector } .${ ROW_CONTAINER_CLASS } span {` +
187190 ` font-family: ${ this . _optionsService . rawOptions . fontFamily } ;` +
188191 ` font-size: ${ this . _optionsService . rawOptions . fontSize } px;` +
189192 ` font-kerning: none;` +
You can’t perform that action at this time.
0 commit comments