-
-
Notifications
You must be signed in to change notification settings - Fork 267
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
Improving Feed link UI colours #2698
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.
The dark theme needs to also be updated, since it uses the same colour for links and the active tab.
hi @hughrun sir thanks for reviewing my PR, currently i am unable to find the dark mode option in original site to test it in production , so can you please elaborate more about it? I have a little idea that i have to do same changes in theme-dark file too. |
@rkmdCodes the dark mode sass file should be in the same directory as the light theme, in However, a better way to achieve this would be to edit .bw-tabs a {
...
color: $link;
...
}
.bw-tabs a:hover {
...
color: $link;
}
.bw-tabs a.is-active {
...
color: $text;
} |
hi @hughrun sir , I have updated the |
@rkmdCodes hmm looks like my suggestion doesn't work - did you test this? |
hi @hughrun , I have resolved and reimplemented the theme colors for both light and dark theme and I've tested them too. Thanks for the feedback! |
hi @mouse-reeve can u please take a look at this PR ? Thank You |
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.
Sorry, I led you down the wrong path there! This works, thanks :)
Thank You @hughrun for approving changes and merging my PR |
I have resolved issue #2697.