diff options
author | Wu Cheng-Han | 2015-09-24 14:59:45 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2015-09-24 14:59:45 +0800 |
commit | e08916763e38d80db58ef688f4f0397ffe5da45c (patch) | |
tree | de713f0cabaef084ded1d71aa89efb24a31ac417 /public/css | |
parent | 6e40df288786f03b634ceae0d03c3b5b3ad43660 (diff) |
Added statusBar to show cursor position, selections and so on
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/index.css | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css index 26281525..4b2359af 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -238,4 +238,47 @@ div[contenteditable]:empty:not(:focus):before{ .cm-trailing-space-new-line:before { content: '↵'; + +.status-bar { + background: #1c1c1e; + border-top: 1px solid #343434; + color: #ccc; + position: relative; + display: block; + box-sizing: border-box; + font-size: 11px; + line-height: 25px; + height: 26px; + overflow: hidden; +} + +.status-bar .status-info { + color: #ccc; + left: 10px; + position: absolute; + white-space: nowrap; + max-width: 65%; + overflow: hidden; + text-overflow: ellipsis; +} + +.status-bar .status-info div { + display: inline; +} + +.status-bar .status-file { + color: #9a9a9a; +} + +.status-bar .status-indicators { + background: #1c1c1e; + color: #ccc; + position: absolute; + right: 10px; + text-align: right; + white-space: nowrap; + max-width: 30%; + overflow: hidden; + text-overflow: ellipsis; +} }
\ No newline at end of file |