transcranial/atom-transparency

Doesn't work on Atom 1.25.0-dev

Amar1729 opened this issue · 1 comments

Tried cloning current atom repo (v1.2.5.0-dev). Added following lines to styles.less:

// following added for transparency
html, html * {
  background: rgba(0, 0, 0, 0) !important;
}

atom-pane, atom-panel, atom-notification {
  background: rgba(0, 0, 0, 0.5) !important;
}

atom-overlay > * {
  background: rgba(0, 0, 0, 0.9) !important;
}

atom-text-editor::shadow {
  .cursor-line {
    background-color: rgba(0, 0, 0, 0.2) !important;
  }
  .selection .region {
    background-color: rgba(0, 0, 0, 0.2) !important;
  }
  .gutter {
    background-color: rgba(0, 0, 0, 0) !important;
  }
}

But Atom ends up looking like this:
screen shot 2017-12-29 at 11 24 32 am 2

I tried switching back to the branch 1.11-release-archived, but I think some parts of it may be incompatible with current node modules, since the build step is failing with some deprecation errors.

Any ideas? Or do you happen to know the last release this will work on? Thanks.

I was wrong, my bad. When I built initially, I forgot to include the --install flag, so I was editing the config to the release version of Atom I had installed previously. Works for the most part now (the window has some leftover artifacts if it's ever resized, but I'm sure I can play around with the config more).

screen shot 2017-12-29 at 12 54 42 pm 2