Files
atom/static/command-logger.css
Kevin Sawicki 92661041f8 Add package to log command details
Logs the count and most recent time a command
is triggered and displays them in a sorted list.
2012-12-28 17:10:10 -08:00

26 lines
366 B
CSS

.command-logger {
position: absolute;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
background: #1e1e1e;
color: #d2d2d2;
overflow: auto;
opacity: 0.85;
z-index: 99;
padding: 20px;
}
.command-logger li {
padding: 5px;
}
.command-logger .event-count {
padding-right: 10px;
}
.command-logger .event-description {
padding-right: 10px;
}