mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
52 lines
765 B
CSS
52 lines
765 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 .modified-status-icon:before {
|
|
content: "\f26d";
|
|
}
|
|
|
|
.status-bar .new-status-icon {
|
|
color: #269F81;
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.status-bar .new-status-icon:before {
|
|
content: "\f26b";
|
|
}
|
|
|
|
.status-bar .octicons {
|
|
font-family: 'Octicons Regular';
|
|
font-size: 14px;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
|
|
.status-bar .branch-icon:before {
|
|
content: "\f020";
|
|
}
|
|
|
|
.status-bar .branch-label {
|
|
padding-left: 5px;
|
|
padding-right: 10px;
|
|
}
|