atom-minimap-codeglance icon indicating copy to clipboard operation
atom-minimap-codeglance copied to clipboard

Added Editor Overlay

Open round opened this issue 8 years ago • 4 comments

Hacked some styles to add an 'overlay' like fade over the editor view:

image

minimap-codeglance {
  transition: opacity .1s linear;
  backface-visibility: hidden;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  &:before, &:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,.66), rgba(33,33,33,0));
    top: 100%;
    left: 0;
    display: block;
  }
  &:after {
    background: linear-gradient(rgba(33,33,33,0), rgba(0,0,0,.66));
    bottom: 100%;
    left: 0;
    top: unset;
  }
}

Hopefully this could be useful to someone! Thanks for the amazing package.

round avatar Sep 17 '17 01:09 round

Hi @round, I'm sorry for the extremely late reply. As you have probably noticed I've stopped maintaining my Atom plugins a few years ago. I got very frustrated with how Atom was maintained and started ignoring all of my plugins. I'm sorry for that. I won't install Atom to test and mergeer PRs, but I'd be happy to transfer my repositories to anyone that wants to maintain any of my plugins. Again, I'm sorry.

olmokramer avatar Feb 21 '19 20:02 olmokramer

No apology needed! I still use this plugin regularly and thank you for having made it in the first place, @olmokramer 🙌

round avatar Feb 21 '19 20:02 round

That was a fast reply ;) Thanks for understanding, and I do hope someone steps up!

olmokramer avatar Feb 21 '19 20:02 olmokramer

PS: I'm reopening this, so if someone does pick this up it won't go unnoticed :)

olmokramer avatar Feb 21 '19 21:02 olmokramer