Skip to content
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

Implement Blurred Tab Titles in Sidebery #67

Open
TanvirOnGH opened this issue Sep 30, 2024 · 0 comments
Open

Implement Blurred Tab Titles in Sidebery #67

TanvirOnGH opened this issue Sep 30, 2024 · 0 comments
Labels

Comments

@TanvirOnGH
Copy link
Owner

Description

Implement a feature that blurs the tab titles in Sidebery to add a sleek aesthetic and to subtly obscure less active tabs. This will allow users to focus on the active tab while still being able to recognize other tabs in the background.

Example Implementation

Here's a conceptual example of how tab title blurring can be implemented using CSS:

/* Blurred Tab text title */
.Tab .title {
  filter: blur(2px);
  transition: filter 0.3s ease;
}

.Tab.active .title {
  filter: none;
}

Examples by others: r/FirefoxCSS custom search, Replicate the 'auto blur tab' feature from Waterfox in Firefox

Benefits

  • Enhances the visual appearance of the tab bar.
  • Helps users focus on the active tab while maintaining visibility of others.
  • Provides a clean, modern tab management experience.
@TanvirOnGH TanvirOnGH added enhancement New feature or request sidebar sidebery labels Sep 30, 2024
@TanvirOnGH TanvirOnGH changed the title Implement Blurred Tabs Title in Sidebery Implement Blurred Tab Titles in Sidebery Sep 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant