Skip to content

Instantly share code, notes, and snippets.

@gokure
Last active May 25, 2016 11:18
Show Gist options
  • Save gokure/c8fe05dc7908b115da5a to your computer and use it in GitHub Desktop.
Save gokure/c8fe05dc7908b115da5a to your computer and use it in GitHub Desktop.
Atom' styles.less
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
/*
* Examples
* (To see them, uncomment and save)
*/
// style the background color of the tree view
.tree-view {
.status-ignored {
display: none;
}
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
// border-color: red;
}
// Custom tab style
.tab-bar {
height: 34px;
padding: 0;
.tab {
-webkit-transform: none;
top: 2px;
line-height: 25px;
&:before,
&:after {
-webkit-transform: none;
width: 18px;
}
.close-icon {
display: none;
}
.title {
-webkit-transform: none;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment