mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Draw selection underneath foreground
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// TODO: Ideally colors would be exposed through some theme manager since colors
|
||||
// are moving to JS.
|
||||
|
||||
export const TANGO_COLORS = [
|
||||
const TANGO_COLORS = [
|
||||
// dark:
|
||||
'#2e3436',
|
||||
'#cc0000',
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { ISelectionRenderLayer } from './Interfaces';
|
||||
import { IBuffer, ICharMeasure, ITerminal } from '../Interfaces';
|
||||
import { CHAR_DATA_ATTR_INDEX } from '../Buffer';
|
||||
import { TANGO_COLORS } from './Color';
|
||||
import { GridCache } from './GridCache';
|
||||
import { FLAGS } from './Types';
|
||||
|
||||
|
||||
+2
-2
@@ -165,8 +165,8 @@
|
||||
}
|
||||
|
||||
.terminal .xterm-bg-layer { z-index: 0; }
|
||||
.terminal .xterm-fg-layer { z-index: 1; }
|
||||
.terminal .xterm-selection-layer { z-index: 2; }
|
||||
.terminal .xterm-selection-layer { z-index: 1; }
|
||||
.terminal .xterm-fg-layer { z-index: 2; }
|
||||
|
||||
.terminal .xterm-rows {
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user