mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Remove selection color test buttons
There's too many theme colors, we'll leave it to the console
This commit is contained in:
@@ -120,8 +120,6 @@ const actionElements = {
|
||||
findResults: document.querySelector('#find-results')
|
||||
};
|
||||
const paddingElement = document.getElementById('padding') as HTMLInputElement;
|
||||
const selectionBackgroundElement = document.getElementById('selectionBackground') as HTMLInputElement;
|
||||
const selectionInactiveBackgroundElement = document.getElementById('selectionInactiveBackground') as HTMLInputElement;
|
||||
|
||||
const xtermjsTheme = {
|
||||
foreground: '#F8F8F8',
|
||||
@@ -149,18 +147,6 @@ function setPadding(): void {
|
||||
addons.fit.instance.fit();
|
||||
}
|
||||
|
||||
function setSelectionInactiveBackground(): void {
|
||||
const theme = { ...term.options.theme };
|
||||
theme.selectionInactiveBackground = selectionInactiveBackgroundElement.value;
|
||||
term.options.theme = theme;
|
||||
}
|
||||
|
||||
function setSelectionBackground(): void {
|
||||
const theme = { ...term.options.theme };
|
||||
theme.selectionBackground = selectionBackgroundElement.value;
|
||||
term.options.theme = theme;
|
||||
}
|
||||
|
||||
function getSearchOptions(): ISearchOptions {
|
||||
return {
|
||||
regex: (document.getElementById('regex') as HTMLInputElement).checked,
|
||||
@@ -349,8 +335,6 @@ function createTerminal(): void {
|
||||
resizeObserver.observe(terminalContainer);
|
||||
|
||||
addDomListener(paddingElement, 'change', setPadding);
|
||||
addDomListener(selectionInactiveBackgroundElement, 'change', setSelectionInactiveBackground);
|
||||
addDomListener(selectionBackgroundElement, 'change', setSelectionBackground);
|
||||
|
||||
addDomListener(actionElements.findNext, 'keydown', (e) => {
|
||||
if (e.key === 'Enter') {
|
||||
|
||||
+1
-9
@@ -75,14 +75,6 @@
|
||||
<label for="padding">Padding</label>
|
||||
<input type="number" id="padding" />
|
||||
</div>
|
||||
<div style="display: inline-block; margin-right: 16px;">
|
||||
<label for="selectionBackground">SelectionBackground</label>
|
||||
<input type="text" id="selectionBackground" />
|
||||
</div>
|
||||
<div style="display: inline-block; margin-right: 16px;">
|
||||
<label for="selectionInactiveBackground">SelectionInactiveBackground</label>
|
||||
<input type="text" id="selectionInactiveBackground" />
|
||||
</div>
|
||||
</div>
|
||||
<div id="test" class="tabContent">
|
||||
<h3>Test</h3>
|
||||
@@ -112,7 +104,7 @@
|
||||
|
||||
<dt>Weblinks Addon</dt>
|
||||
<dd><button id="weblinks-test" title="Various url conditions from demo data, hover&click to test">Test URLs</button></dd>
|
||||
|
||||
|
||||
<dt>Image Test</dt>
|
||||
<dd><button id="image-demo1">snake (sixel)</button></dd>
|
||||
<dd><button id="image-demo2">oranges (sixel)</button></dd>
|
||||
|
||||
Reference in New Issue
Block a user