command-logger refactor

This commit is contained in:
Jon Rohan 2013-01-21 19:19:41 -08:00
parent c99201caae
commit 76ff418575
2 changed files with 20 additions and 8 deletions

View File

@ -1,13 +1,6 @@
.command-logger {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #1e1e1e;
color: #eee;
overflow: auto;
z-index: 99;
padding-top: 10px;
padding-bottom: 10px;
}
@ -45,5 +38,4 @@ body.command-logger-node-text {
font-size: 10px;
color: #fff;
text-shadow: #000 1px 1px 4px;
-webkit-user-select: none;
}

View File

@ -0,0 +1,20 @@
.command-logger {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
overflow: auto;
z-index: 99;
}
.command-logger-node-text div {
display: table-cell;
vertical-align: middle;
text-align: center;
cursor: pointer;
}
.command-logger-node-text span {
-webkit-user-select: none;
}