-
-
Notifications
You must be signed in to change notification settings - Fork 792
feat(lyrics-plus): change ♪ to idle dots #3455
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -728,3 +728,65 @@ div.lyrics-tabBar-headerItemLink { | |||||||||||||||||||||||||||||||||||||||
margin-left: 100px; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
.lyrics-inline-idling-indicator { | ||||||||||||||||||||||||||||||||||||||||
display: inline-flex; | ||||||||||||||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||||||||||||||
gap: 0.25em; | ||||||||||||||||||||||||||||||||||||||||
margin-left: 0.2em; | ||||||||||||||||||||||||||||||||||||||||
opacity: 0.5; | ||||||||||||||||||||||||||||||||||||||||
transition: opacity 0.2s; | ||||||||||||||||||||||||||||||||||||||||
vertical-align: middle; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
.lyrics-inline-idling-indicator.active { | ||||||||||||||||||||||||||||||||||||||||
opacity: 1; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
.lyrics-inline-idling-dot { | ||||||||||||||||||||||||||||||||||||||||
width: 0.5em; | ||||||||||||||||||||||||||||||||||||||||
height: 0.5em; | ||||||||||||||||||||||||||||||||||||||||
border-radius: 50%; | ||||||||||||||||||||||||||||||||||||||||
background: var(--lyrics-idling-dot-color, #888); | ||||||||||||||||||||||||||||||||||||||||
opacity: 0.3; | ||||||||||||||||||||||||||||||||||||||||
transform: scale(0.7); | ||||||||||||||||||||||||||||||||||||||||
transition: | ||||||||||||||||||||||||||||||||||||||||
background 0.2s, | ||||||||||||||||||||||||||||||||||||||||
opacity 0.2s, | ||||||||||||||||||||||||||||||||||||||||
transform 0.2s; | ||||||||||||||||||||||||||||||||||||||||
display: inline-block; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
.lyrics-inline-idling-dot.active { | ||||||||||||||||||||||||||||||||||||||||
background: var(--lyrics-idling-dot-active-color, #fff); | ||||||||||||||||||||||||||||||||||||||||
opacity: 1; | ||||||||||||||||||||||||||||||||||||||||
transform: scale(1.1); | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
.lyrics-idling-indicator { | ||||||||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||||||||||||||
gap: 0.4em; | ||||||||||||||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||||||||||||||
margin: 0.5em 0; | ||||||||||||||||||||||||||||||||||||||||
opacity: 0.7; | ||||||||||||||||||||||||||||||||||||||||
transition: opacity 0.2s; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
.lyrics-idling-indicator.active { | ||||||||||||||||||||||||||||||||||||||||
opacity: 1; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
.lyrics-idling-dot { | ||||||||||||||||||||||||||||||||||||||||
width: 0.7em; | ||||||||||||||||||||||||||||||||||||||||
height: 0.7em; | ||||||||||||||||||||||||||||||||||||||||
border-radius: 50%; | ||||||||||||||||||||||||||||||||||||||||
background: var(--lyrics-idling-dot-color, #888); | ||||||||||||||||||||||||||||||||||||||||
opacity: 0.3; | ||||||||||||||||||||||||||||||||||||||||
transform: scale(0.7); | ||||||||||||||||||||||||||||||||||||||||
transition: | ||||||||||||||||||||||||||||||||||||||||
background 0.2s, | ||||||||||||||||||||||||||||||||||||||||
opacity 0.2s, | ||||||||||||||||||||||||||||||||||||||||
transform 0.2s; | ||||||||||||||||||||||||||||||||||||||||
display: inline-block; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
.lyrics-idling-dot.active { | ||||||||||||||||||||||||||||||||||||||||
background: var(--lyrics-idling-dot-active-color, #fff); | ||||||||||||||||||||||||||||||||||||||||
opacity: 1; | ||||||||||||||||||||||||||||||||||||||||
transform: scale(1.1); | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+775
to
+792
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify usage of new Pages.js keeps using Run this to confirm usage and remove dead CSS if unused: 🏁 Script executed: #!/bin/bash
# Find references to the new dot classes
rg -n -C2 'lyrics-idling-dot|lyrics-inline-idling-dot' Length of output: 2162 🏁 Script executed: #!/bin/bash
# Check for usage of the old block indicator class
rg -n -C2 'lyrics-idling-indicator__circle' Length of output: 979 Remove or Integrate Unused Our search confirms that:
Action items:
📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
Uh oh!
There was an error while loading. Please reload this page.