Skip to content

Instantly share code, notes, and snippets.

@davidlukerice
davidlukerice / styles.less
Created February 17, 2016 14:22
Atom Editor Find Highlight Style
atom-text-editor::shadow .highlight {
&.find-result .region,
&.current-result .region,
&.current-result ~ .highlight.selection .region {
z-index: -1;
}
&.find-result .region {
background: rgba(255, 215, 0, 0.2);
}
@davidlukerice
davidlukerice / styles.less
Created December 16, 2014 15:14
atom.io multi-row tabs
// Make tabs multi-row
.tab-bar {
height: auto;
flex-wrap: wrap;
}
.tab-bar .tab,
.tab-bar .tab.active {
flex-basis: auto;
}