laCour / slack-night-mode

A Stylus style for easy Slack theming
Creative Commons Zero v1.0 Universal
568 stars 386 forks source link

Tiny white bar next to top left user name area #202

Closed tzm41 closed 5 years ago

tzm41 commented 5 years ago

image

There is a very tiny white vertical bar next to the top left user name area, when the theme is used in the Slack mac client. This has been there for a couple months, but I don't know if using the theme in the client app is supported or not...

Lemmmy commented 5 years ago

Exists in Chrome Slack on Linux too. The element is #client_body:before, specifically the selector #client_body:not(.onboarding):not(.feature_global_nav_layout):before. Adds the following three rules which affect it:

#client_body:not(.onboarding):not(.feature_global_nav_layout):before {
    border-bottom: 1px solid rgba(0,0,0,.1);
    background: #fff;
    box-shadow: inset 1px 0 0 0 #e8e8e8;
}
laCour commented 5 years ago

This should be fixed in the latest release. Let me know if this is still here and I'll reopen. Thanks for the report!

tzm41 commented 5 years ago

Fixed! Thank you!