mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
40 lines
581 B
CSS
40 lines
581 B
CSS
.status-bar {
|
|
background: black;
|
|
color: white;
|
|
padding: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
.status-bar .file-info {
|
|
float: left;
|
|
display: inline-block;
|
|
}
|
|
|
|
.status-bar .cursor-position {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: 5px;
|
|
}
|
|
|
|
.status-bar .modified-status-icon {
|
|
color: #6C6912;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.status-bar .new-status-icon {
|
|
color: #269F81;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.status-bar .octicons {
|
|
font-family: 'Octicons Regular';
|
|
font-size: 14px;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
|
|
.status-bar .branch-label {
|
|
padding-left: 5px;
|
|
padding-right: 10px;
|
|
}
|