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

Allow user to export/import individual scrollbars #170

Open
WesleyBranton opened this issue Aug 4, 2022 · 1 comment
Open

Allow user to export/import individual scrollbars #170

WesleyBranton opened this issue Aug 4, 2022 · 1 comment
Labels
enhancement New feature or request P4 This issue is considered low priority
Projects
Milestone

Comments

@WesleyBranton
Copy link
Owner

Users should be able to export and import individual scrollbars. This will allow them to share them with friends or transfer them to another browser instead of doing an entire backup.

This feature would be essential for a scrollbar marketplace (see issue #140), if that is something that is created in the future.

@WesleyBranton WesleyBranton added enhancement New feature or request P4 This issue is considered low priority labels Aug 4, 2022
@WesleyBranton WesleyBranton added this to To do in Version 4.3 Aug 13, 2022
@e-t-l
Copy link

e-t-l commented Sep 23, 2022

@WesleyBranton Similar to this, I'm trying to export the raw code for my own scrollbar from the extension to use in situations where extensions might be disabled. My understanding is that the scrollbar is controlled entirely by CSS. In Firefox's Developer Tools - Style Editor, I can see the style sheet for Custom Scrollbars contains the following code:

* {
	scrollbar-width: thin !important;
	scrollbar-color: #5454546d #38383800 !important;
}

But when I tried to save this in my userContent.css file (yes I have FF's legacy styleshseet pref enabled) as the following, it didn't work:

@-moz-document {
	scrollbar-width: thin !important;
	scrollbar-color: #5454546d #38383800 !important;
}

I also tried injecting the code directly as a UserCSS with Tampermonkey, but again it didn't work. Am I missing something? How would I inject the CSS for my custom scrollbar so that it would work even if the extension is inactive?

@WesleyBranton WesleyBranton added this to the 4.4 milestone Feb 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request P4 This issue is considered low priority
Projects
No open projects
Version 4.3
  
To do
Development

No branches or pull requests

2 participants