-
+
|
{remote.remotealias}
diff --git a/src/sh2.less b/src/sh2.less
index 57f6c3efd..d474b37cc 100644
--- a/src/sh2.less
+++ b/src/sh2.less
@@ -1113,10 +1113,6 @@ body .xterm .xterm-viewport {
&.status-connecting {
color: #c4a000;
- font-size: 12px;
- position: relative;
- top: 0px;
- margin-left: -3px;
}
&.status-connected {
@@ -1127,3 +1123,10 @@ body .xterm .xterm-viewport {
color: #cc0000;
}
}
+
+.menu-list .remote-status .status-connecting {
+ position: relative;
+ top: 0px;
+ font-size: 12px;
+ margin-left: -3px;
+}
diff --git a/src/types.ts b/src/types.ts
index 36b032040..4d430c438 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -229,6 +229,7 @@ type CmdDataType = {
cmdstr : string,
remotestate : RemoteStateType,
termopts : TermOptsType,
+ origtermopts : TermOptsType,
status : string,
startpk : CmdStartPacketType,
donepk : CmdDonePacketType,
|