mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
28 lines
409 B
CSS
28 lines
409 B
CSS
.status-bar {
|
|
background: black;
|
|
color: white;
|
|
padding: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
.status-bar .file-info {
|
|
float: left;
|
|
display: inline-block;
|
|
}
|
|
|
|
.status-bar .file-info .current-path {
|
|
float: left;
|
|
display: inline-block;
|
|
}
|
|
|
|
.status-bar .file-info .buffer-modified {
|
|
float: right;
|
|
display: inline-block;
|
|
}
|
|
|
|
.status-bar .cursor-position {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
}
|