-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from ste2425/xterm
Xterm integration
- Loading branch information
Showing
14 changed files
with
903 additions
and
75 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,28 @@ | ||
<link rel="stylesheet" href="../../../node_modules/bootstrap-css-only/css/bootstrap.css"> | ||
<link rel="stylesheet" href="../../../node_modules/xterm/dist/xterm.css" /> | ||
<link rel="stylesheet" href="../../../node_modules/xterm/lib/addons/fullscreen/fullscreen.css" /> | ||
<!-- | ||
This ensures the style is applied when xterm attempts to check size of terminal container. | ||
--> | ||
<style> | ||
.terminals:not(.full-screen) { | ||
max-height: 200px; | ||
} | ||
</style> | ||
<div class="d-flex align-items-center justify-content-between flex-row"> | ||
<h1 class="name"></h1> | ||
|
||
<div class="btn-group"> | ||
<button class="action btn btn-sm btn-primary">Start</button> | ||
<button class="full btn btn-sm btn-dark">Full Screen</button> | ||
<drop-down class="group-left"> | ||
<button class="clean btn-sm">Clean</button> | ||
<button class="clear-log btn-sm">Clear Log</button> | ||
</drop-down> | ||
</div> | ||
</div> | ||
<div class="d-flex justify-content-between align-items-center pb-2"> | ||
<span class="state badge"></span> | ||
</div> | ||
<div class="terminal"></div> | ||
<div class="terminals"> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.