Skip to content

Commit d58e983

Browse files
committed
Editor: Fixed new toolbar UI.
1 parent dec00aa commit d58e983

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

editor/css/dark.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ select {
5353
top: 32px;
5454
left: 0;
5555
right: 300px;
56-
bottom: 0px;
56+
bottom: 0;
5757
}
5858

5959
#viewport #info {
@@ -66,7 +66,7 @@ select {
6666
top: 32px;
6767
left: 0;
6868
right: 300px;
69-
bottom: 32px;
69+
bottom: 0;
7070
opacity: 0.9;
7171
}
7272

@@ -75,7 +75,7 @@ select {
7575
top: 32px;
7676
left: 0;
7777
right: 300px;
78-
bottom: 32px;
78+
bottom: 0;
7979
}
8080

8181
#menubar {

editor/css/light.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ select {
4949
top: 32px;
5050
left: 0;
5151
right: 300px;
52-
bottom: 0px;
52+
bottom: 0;
5353
}
5454

5555
#viewport #info {
@@ -62,7 +62,7 @@ select {
6262
top: 32px;
6363
left: 0;
6464
right: 300px;
65-
bottom: 32px;
65+
bottom: 0;
6666
opacity: 0.9;
6767
}
6868

@@ -71,7 +71,7 @@ select {
7171
top: 32px;
7272
left: 0;
7373
right: 300px;
74-
bottom: 32px;
74+
bottom: 0;
7575
}
7676

7777
#menubar {

editor/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,15 @@
181181
var viewport = new Viewport( editor );
182182
document.body.appendChild( viewport.dom );
183183

184+
var toolbar = new Toolbar( editor );
185+
document.body.appendChild( toolbar.dom );
186+
184187
var script = new Script( editor );
185188
document.body.appendChild( script.dom );
186189

187190
var player = new Player( editor );
188191
document.body.appendChild( player.dom );
189192

190-
var toolbar = new Toolbar( editor );
191-
document.body.appendChild( toolbar.dom );
192-
193193
var menubar = new Menubar( editor );
194194
document.body.appendChild( menubar.dom );
195195

0 commit comments

Comments
 (0)