Skip to content

Workarounds for theme rendering issues #8

@spiderman-idog

Description

@spiderman-idog

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions