torii
(torii)
1
I’m using a dark mode theme. At some point, that text started showing up in that color all the time. It used to be white and easy to distinguish.
I thought the theme I was using might be the issue, so I tried switching to the default theme, but it didn’t help
I tried switching to day mode as well, but the text still shows up in that same color. What could be the issue?
When I use the search function that opens by pressing the ‘e’ key, it shows up correctly.
Set a default theme & clear a browser’s cache (just in case) & reload a browser’s page.
torii
(torii)
3
I found the cause while modifying some card codes.
It seems that the following code from the last card affected the entire CSS
*{
color: black !important;
}
I modified the code into a more specific function to resolve the issue.
.bubble-name {
color: black !important;
}
.bubble-sub-button {
color: black !important;
}
I just followed the example from GitHub exactly, so I didn’t think there would be any issues.
Other cards contain the problematic code, but it doesn’t have any impact. It seems that the issue arises when it’s used in the last card