[Colorful List] Preserve article background on hover#491
Open
JamBalaya56562 wants to merge 1 commit into
Open
Conversation
JamBalaya56562
added a commit
to JamBalaya56562/Extensions
that referenced
this pull request
Jul 11, 2026
JamBalaya56562
added a commit
to JamBalaya56562/Extensions
that referenced
this pull request
Jul 11, 2026
Member
|
Pinging @shinemoon |
a8d449c to
76774b8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
backgrounddeclaration to a CSS custom propertyFixes #203
Root cause
Colorful List set the article header background through an inline shorthand declaration. FreshRSS themes change both the header and title backgrounds on hover, but the inline header background won the cascade while the title received the theme hover color. This produced two different backgrounds within the same row.
Visual comparison
The screenshots use the same FreshRSS feed, Origine light theme, 1280×720 viewport, and first article. Because the available browser runner cannot activate the CSS
:hoverpseudo-class, a test-only stylesheet replaced:hoverwith a class for the first row. The stylesheet used the exact Origine hover declarations and was served only by the local test proxy; it is not part of this PR.Before
The title area uses the theme hover color while the rest of the row retains the generated feed color.
After
The title, header, and date area retain one continuous generated feed color.
Computed colors for the simulated hovered first row:
rgba(139, 178, 195, 0.07); titlergb(250, 238, 232)rgba(139, 178, 195, 0.07)Validation
npm run eslintnpx stylelint "**/*.css"npm run markdownlint