Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workarounds for theme rendering issues #8

Open
spiderman-idog opened this issue Nov 19, 2021 · 0 comments
Open

Workarounds for theme rendering issues #8

spiderman-idog opened this issue Nov 19, 2021 · 0 comments

Comments

@spiderman-idog
Copy link

I really like this theme collection, but I ran into some minor issues while using them, I'm not experienced on how Atom themes are made, so I've put some workaround lines on my style.less to make it work, if you're having the same issues I'm having, try putting those lines in your style.less.

  1. Gutter column is not all the way down:

Screenshot from 2021-11-19 18-06-49

What's supposed to look like:

Screenshot from 2021-11-19 18-07-52

The workaround:

atom-text-editor .gutter {
    min-height: 1000000px;
}

Screenshot from 2021-11-19 18-12-49

  1. Weird rendering when selecting brackets: ( bracket-matcher package )

(You can see a big horizontal line at the top of the editor, and some weird rendering on the bracket selection)
Screenshot from 2021-11-19 18-10-51

What's (kinda) supposed to look like:

(There should be a highlight on the matching brackets, but I'm not smart enough to figure that out)
Screenshot from 2021-11-19 18-11-23

The workaround:

atom-text-editor::shadow  .bracket-matcher .region {
    border-bottom: transparent;
    background-color: transparent;
    opacity: 0;
}

.bracket-matcher {
  background-color: #f0624b;
  opacity: 0;
  border: 1px solid #ffffff;
}

Screenshot from 2021-11-19 18-13-03

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant