Add the ability to kill running VS Code instance
This commit is contained in:
@ -26,3 +26,7 @@
|
||||
.error-display > .links > .link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.error-display .success {
|
||||
color: green;
|
||||
}
|
||||
|
@ -32,28 +32,15 @@
|
||||
}
|
||||
|
||||
.block-row > .item > .icon.-missing {
|
||||
background-color: rgb(87, 114, 245);
|
||||
color: #fff;
|
||||
background-color: rgba(87, 114, 245, 0.2);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.block-row > .item > .icon.-missing::after {
|
||||
content: "?";
|
||||
font-size: 0.7rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.kill-form {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.kill-form > .kill {
|
||||
background-color: rgb(87, 114, 245);
|
||||
border: none;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
line-height: 1rem;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border-radius: 3px;
|
||||
padding: 2px 5px;
|
||||
}
|
||||
|
@ -20,27 +20,36 @@
|
||||
</head>
|
||||
<body>
|
||||
<div class="center-container">
|
||||
<!-- TEMP: Only VS Code for now. -->
|
||||
<!-- <div class="info-block"> -->
|
||||
<!-- <h2 class="header">Running Applications</h2> -->
|
||||
<!-- {{APP_LIST:RUNNING}} -->
|
||||
<!-- </div> -->
|
||||
<div class="card-box">
|
||||
<div class="header">
|
||||
<h2 class="main">Running</h2>
|
||||
<div class="sub">Currently running applications.</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
{{APP_LIST:RUNNING}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card-box">
|
||||
<div class="header">
|
||||
<h2 class="main">Launch</h2>
|
||||
<div class="sub">Choose an application to launch below.</div>
|
||||
<h2 class="main">Editors</h2>
|
||||
<div class="sub">Choose an editor to launch below.</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="block-row">
|
||||
<a class="item -link" href="./vscode">
|
||||
<img class="icon" src="./static-{{COMMIT}}/lib/vscode/resources/linux/code.png" />
|
||||
VS Code
|
||||
</a>
|
||||
</div>
|
||||
{{APP_LIST:EDITORS}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="card-box"> -->
|
||||
<!-- <div class="header"> -->
|
||||
<!-- <h2 class="main">Other</h2> -->
|
||||
<!-- <div class="sub">Choose an application to launch below.</div> -->
|
||||
<!-- </div> -->
|
||||
<!-- <div class="content"> -->
|
||||
<!-- {{APP_LIST:OTHER}} -->
|
||||
<!-- </div> -->
|
||||
<!-- </div> -->
|
||||
|
||||
<div class="card-box">
|
||||
<div class="header">
|
||||
<h2 class="main">Version</h2>
|
||||
@ -50,16 +59,6 @@
|
||||
{{UPDATE:NAME}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="info-block"> -->
|
||||
<!-- <h2 class="header">Editors</h2> -->
|
||||
<!-- {{APP_LIST:EDITORS}} -->
|
||||
<!-- </div> -->
|
||||
|
||||
<!-- <div class="info-block"> -->
|
||||
<!-- <h2 class="header">Other</h2> -->
|
||||
<!-- {{APP_LIST:OTHER}} -->
|
||||
<!-- </div> -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user