-
Notifications
You must be signed in to change notification settings - Fork 2
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 dropdown menu so that active buttons stand out more. #39
Comments
@tehchives mentioned that @jergy2 may be able to assist, tagging for visibility. |
i took a look through the production webpage to see what styles are being applied, though it is a little bit hard to track without seeing the source files for this, as it looks like there are potentially numerous competing style classes that are applying styles to the element. I noticed for example that there is an If you just want the text to stand out a bit, you could simply apply the If you specifically want to change the color to blue, then further investigation into the structure of the css will be required to determine where the |
Thanks for taking a look @jergy2. The color change would be the ideal long-term adjustment here, but I like the bold text as a short-term change. I had tried using Claude Sonnet and o1 to look for a styling conflict, but had no luck a while back. I think you may be right about the priority being the issue here. Do you think it could be the library used for the buttons, or would it be more likely something within the styles.css file? |
in general, with respect to CSS order of priority: From a stackoverflow comment: There are several CSS rules ( applied in this order ) : 1 inline css ( html style attribute ) overrides css rules in style tag and css file in this case it appears to be parent element with class with final element applying styles as: this is where it is applying the it looks like those properties are set using the |
Thanks for the insightful comment @jergy2. I adjusted the code to remove any instance of "!important" to rule that out. Still running into the same issue, but one step closer to figuring it out. |
Originally posted by @JamesAlfonse in #17
The text was updated successfully, but these errors were encountered: