atom-nuclide
Version:
A unified developer experience for web and mobile development, built as a suite of features on top of Atom to provide hackability and the support of an active community.
44 lines (35 loc) • 935 B
text/less
@import "ui-variables";
.nuclide-tree-root {
margin: 0 -10px;
.nuclide-tree-component-item {
line-height: @component-line-height;
padding-right: 5px;
.nuclide-tree-component-item-arrow {
font-family: 'Octicons Regular';
-webkit-font-smoothing: antialiased;
width: 16px;
display: inline-block;
position: relative;
top: -1px;
}
.icon::before {
position: relative;
top: 1px;
}
}
.nuclide-tree-component-selected {
color: @text-color-selected;
background-color: @background-color-selected;
text-shadow: none;
}
.nuclide-tree-component-item-arrow-spinner {
-webkit-animation-name: spin;
-webkit-animation-duration: 700ms;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
@-webkit-keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}
}