-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 highlighting on history panel #1698
Fix highlighting on history panel #1698
Conversation
for more information, see https://pre-commit.ci
Thanks for the PR! I'm not a fan of using And as a side note, the commit message here should contain the description you used in the PR. That description provides a fair amount of context of why the change was made and would be beneficial in our git history. |
It looks like our options are
|
Hmm. Yeah, I'm not sure. It's not terrible with a linebreak: #djDebug .djdt-highlighted,
#djDebug .djdt-panelContent .djdt-highlighted:nth-child(odd){
background-color: lightgrey;
} Another option is to use the |
Good thought on |
Thank you for the PR! This is a nice fix to have. |
#djDebug .djdt-panelContent tbody > tr:nth-child(odd)
is overriding#djDebug .djdt-highlighted
on the history panel so every odd row will not take on a highlighted appearance.