jesseweed / seti-ui

A subtle dark colored UI theme for Atom.
MIT License
942 stars 285 forks source link

Misaligned text on status bar when Linter is enabled #471

Closed ZoneSix closed 6 years ago

ZoneSix commented 6 years ago

The text on the left side in the statusbar is misaligned when using Linter. Atom version: 1.23.3 Seti-UI version: 1.10.0 atom-seti-ui-bottom-fault

jesseweed commented 6 years ago

Weird I use linter and haven't seen that issue, but I'll look into it.

warsier commented 6 years ago

I have observed this misaligned issue on Windows, while on Linux systems the status bar works correctly.

mccallum-sgd commented 6 years ago

Same here on Windows 10 Home (version: 1709, build: 16299.309). Atom version: 1.25.0 Seti-UI version: 1.10.0

Note that this happens regardless of compact mode, and whether the windows is maximized or not (I also tried resizing it).

Xenospark commented 6 years ago

I have only observed this behavior with 'Compact Mode' enabled in seti-ui Settings. I have only been able to confirm this behavior on Windows 7/10. I Cannot reproduce this behavior on any Linux distro that I have access to.

So far I have only come up with a workaround proposal for windows 7/10 users experiencing this issue.

Dig into C:\Users\{your-user-name}\.atom\packages\seti-ui\styles\components\status-bar.less

Goto line 21 you will find:

.status-bar-left {
      padding: 0;
    }

Change it to:

 .status-bar-left {
      padding: 0;
      display: inline-flex;
    }

be advised - any future updates applied to seti-ui is likely to over-write your changes.

jesseweed commented 6 years ago

I believe this issue should be resolved. Feel free to re-open if you disagree.