Skip to content

Commit

Permalink
sidebery: add audio animation in audio playing tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanvir1337x committed Jul 16, 2024
1 parent 2e0a5a5 commit 5b813d4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions addons/sidebery-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,29 @@
--toolbar-bg: #202020;
}

/* Add animation to icon shown when playing audio in a tab */
.Tab .-loud {
animation: audio-animation 1.2s infinite ease-in-out;
}

@keyframes audio-animation {
0% {
transform: scale(0.9);
}
25% {
transform: scale(1.1);
}
50% {
transform: scale(1.2);
}
75% {
transform: scale(1.1);
}
100% {
transform: scale(0.9);
}
}

/* Based on: https://raw.githubusercontent.com/mgastonportillo/gale-for-ff/main/sidebery.css */
#root {
--tabs-height: 34px;
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ My tailor-fitted, highly customized, and advanced [Firefox](https://www.mozilla.
- Compact about:config list
- Compact items and menus (e.g., context menu)
- Various sidebar (Sidebery, Tree Style Tab) tweaks, including auto-hide
- Animations in tabs that's playing audio
- Consistent and matching colors across various elements and the UI
- Glow and scale effect on hover on toolbar buttons
- Findbar as floating box at the top
Expand Down

0 comments on commit 5b813d4

Please sign in to comment.