mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Add package to log command details
Logs the count and most recent time a command is triggered and displays them in a sorted list.
This commit is contained in:
25
static/command-logger.css
Normal file
25
static/command-logger.css
Normal file
@@ -0,0 +1,25 @@
|
||||
.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;
|
||||
}
|
||||
Reference in New Issue
Block a user