Created
February 27, 2014 20:40
-
-
Save Tehnix/9259093 to your computer and use it in GitHub Desktop.
Cleaner Atom UI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed. | |
* | |
* If you are unfamiliar with LESS, you can read more about it here: | |
* http://www.lesscss.org | |
*/ | |
.tree-view { | |
} | |
.editor { | |
line-height: 1.6em; | |
.gutter { | |
background-color: #222; | |
.line-numbers { | |
.line-number { | |
padding-left: 12px; | |
padding-right: 5px; | |
font-size: 0.77em; | |
} | |
.cursor-line { | |
background: rgba(255, 255, 255, 0.07); | |
} | |
} | |
} | |
.scroll-view { | |
padding-left: 8px; | |
.lines { | |
.line { | |
.comment { | |
font-style: normal; | |
} | |
} | |
} | |
} | |
} | |
.editor .cursor { | |
} | |
.tab-bar { | |
padding-left: 0px; | |
.tab { | |
box-shadow: none; | |
border-radius: 0px; | |
margin-left: 4px; | |
&:first-child { | |
margin-left: 3px; | |
} | |
&:before, &:after { | |
display: none; | |
border-radius: 0px; | |
box-shadow: none; | |
} | |
&.active { | |
border-left: 1px solid rgb(72, 72, 72); | |
} | |
.title { | |
padding-left: 15px; | |
} | |
&, .title, .close-icon { | |
-webkit-transform: none; | |
} | |
} | |
} | |
.tree-view { | |
.entries { | |
.entry { | |
&, .header { | |
line-height: 22px; | |
} | |
} | |
.status-ignored { | |
// display: none; | |
} | |
.list-item { | |
font-size: 11px; | |
.icon-file-text, .icon-file-directory, .icon-book { | |
&:before { | |
font-size: 13px; | |
width: 13px; | |
height: 13px; | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment