-
Notifications
You must be signed in to change notification settings - Fork 655
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
Fix tinted background color option #1091
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this meant to adjust the background so the tabs match the rest of the page when not using a background image? If so I've been running this in a separate style for this very reason. I'm not sure if this is up to date still, been awhile since I last checked. /* Tabs - set color to BG color so they blend fully */
.pagehead-tabs-item.selected,
.reponav-item.selected,
.tabnav-tab.selected {
background-color: #222 !important;
border-bottom-color: #222 !important;
}
/* pending review comment tabs */
.is-pending .tabnav-tab.selected {
background-color: #181818 !important;
}
/* https://github.com/settings/replies */
.saved-reply-form .tabnav-tab.selected {
background-color: #181818 !important;
border-bottom-color: #181818 !important
} |
I don’t think all of that is needed, in my case I just had to change the main background color once |
Yea, it looks like some of this has since been updated. The pending review comment is still needed but the saved reply rule isn't needed at all now |
@the-j0k3r like this? |
This change is inside of |
that also needed to be changed. See #1091 (comment) |
Perhaps only the |
That sounds like an unrelated issue, it appears even with the regular background. Please open another issue |
@silverwind is there anything else that needs to be fixed? |
Yep unrelated area. |
This PR is untested, but the screenshot is taken with a real reproduction via the custom background
Before
After