/**
 * 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
 */
.editor {
  .cursor {
    visibility: hidden;
  }
  &.is-focused {
    .cursor {
      visibility: visible;
      &.blink-off {
        visibility: visible;
      }
    }
    &.command-mode .cursor {
      background: rgba(255, 255, 255, 0.3);
      border: none;
    }
  }
}
.tree-view {
}
.editor {
}
.editor .cursor {
}