fv0 / native-ui

macOS theme for the Atom code editor. Over 205k downloads.
https://atom.io/themes/native-ui
140 stars 23 forks source link

Broken styling for linter-status-count (linter v2) #68

Closed UrsaDK closed 7 years ago

UrsaDK commented 7 years ago

It appears that with the release of linter version 2, html for the status counter has been updated and the counter now looks like this:

broken

The following code updates the look of the counter to something a little bit more palatable:

fixed
status-bar {
    .linter-status-count {
        background-color: darken(@btn-base-color, 65%);
        border-radius: @border-radius--base;

        span[class^=highlight] {
            border-radius: 0;
        }
        .highlight {
            background-color: inherit;
            color: @text-color-selected;
        }

        &:hover {
            background-color: darken(@btn-base-color, 65%) !important;
        }
    }
}
fv0 commented 7 years ago

This was implemented in the latest release. @UmkaDK, thanks for your proposal.