Use same dim opacity as canvas renderer

This commit is contained in:
Daniel Imms
2019-04-07 09:45:54 -04:00
parent ddd02b4968
commit 92c435a16d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ export class DomRendererRowFactory {
}
if (flags & FLAGS.DIM) {
charElement.classList.add(exports.DIM_CLASS);
charElement.classList.add(DIM_CLASS);
}
charElement.textContent = this._workCell.getChars() || WHITESPACE_CELL_CHAR;
+1 -1
View File
@@ -163,5 +163,5 @@
}
.xterm-dim {
opacity: 0.6;
opacity: 0.5;
}