Skip to content

Commit 3508796

Browse files
committed
deleted: img
1 parent 76e8d6d commit 3508796

File tree

6 files changed

+60
-1
lines changed

6 files changed

+60
-1
lines changed

html/panel.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<div id="shell-panel" class="bottom-panel">
2+
<div class="toolbar simple-toolbar-layout">
3+
<a href="#" id="close-shell" class="close">&times;</a>
4+
<span>Shell</span>
5+
</div>
6+
7+
<div id="shell-content">
8+
<input id="shell-input" placeholder="Type commands here..." />
9+
<div id="shell-output"></div>
10+
</div>
11+
</div>

html/toolbar.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<a id="console-toolbar" title="Console" href="#"></a>

img

Lines changed: 0 additions & 1 deletion
This file was deleted.

img/console.svg

Lines changed: 6 additions & 0 deletions
Loading

package-lock.json

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

styles/main.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#console-toolbar {
2+
display: inline-block;
3+
background-image: url("../img/console.svg");
4+
background-size: 100%;
5+
opacity: 0.65;
6+
}
7+
8+
#shell-content {
9+
padding: 0;
10+
margin: 0;
11+
box-sizing: border-box;
12+
height: 100%;
13+
}
14+
15+
#shell-input {
16+
width: 100%;
17+
height: 10%;
18+
border: none;
19+
box-sizing: border-box;
20+
outline: none;
21+
}
22+
23+
#shell-output {
24+
overflow: scroll;
25+
height: 90%;
26+
}

0 commit comments

Comments
 (0)