From 76ff41857560754baa44e6a469074c82918f84c7 Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Mon, 21 Jan 2013 19:19:41 -0800 Subject: [PATCH] command-logger refactor --- .atom/themes/Atom - Dark/command-logger.css | 8 -------- .../stylesheets/command-logger.css | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+), 8 deletions(-) create mode 100644 src/packages/command-logger/stylesheets/command-logger.css diff --git a/.atom/themes/Atom - Dark/command-logger.css b/.atom/themes/Atom - Dark/command-logger.css index 5e9f34ffa..56822c247 100644 --- a/.atom/themes/Atom - Dark/command-logger.css +++ b/.atom/themes/Atom - Dark/command-logger.css @@ -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; } diff --git a/src/packages/command-logger/stylesheets/command-logger.css b/src/packages/command-logger/stylesheets/command-logger.css new file mode 100644 index 000000000..87a21e502 --- /dev/null +++ b/src/packages/command-logger/stylesheets/command-logger.css @@ -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; +}