Skip to content

Conversation

@renner0e
Copy link
Collaborator

@renner0e renner0e commented Jan 1, 2026

Screencast_20260101_035740.webm

readability of the installed pill should be better now due to the lack
of transparency
doesn't slightly cut off their heads anymore
Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request fixes the color of the 'installed' pill in the bazaar. The changes involve adding new CSS rules to style the pill differently for various sections and adjusting banner heights for better visual consistency. My review focuses on improving the maintainability of the new CSS by removing redundant property declarations. Overall, the changes look good and address the intended fix.

.dev-section app-tile-installed-pill {
background-color: #cbabff;
color: var(--fg-color);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The color: var(--fg-color); property is redundant here. It's already defined in the .global-section app-tile-installed-pill rule at line 50. Since elements with .dev-section also have the .global-section class, the color property will be applied from that more general rule. Removing this duplication improves maintainability by following the DRY (Don't Repeat Yourself) principle.

.dev-section-dark app-tile-installed-pill {
background-color: #084152;
color: var(--fg-color);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Similar to the .dev-section rule, this color: var(--fg-color); property is redundant. The color is already set by the .global-section app-tile-installed-pill rule (line 50). Removing this line will make the CSS cleaner and easier to maintain.

@inffy inffy added this pull request to the merge queue Jan 1, 2026
Merged via the queue into main with commit fd65726 Jan 1, 2026
1 check passed
@inffy inffy deleted the bazaar-installed-pill branch January 1, 2026 04:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants