Minimal scrollbar + README.md update (#34)
* Minimal scrollbar * Removes (now) unnecessary note about scrollbar
This commit is contained in:
parent
a3a64ec44e
commit
fd0ea26b0a
@ -111,11 +111,6 @@
|
|||||||
3. Go to `System Settings > KWin Scripts > Enable Force Blur`.
|
3. Go to `System Settings > KWin Scripts > Enable Force Blur`.
|
||||||
4. Change its settings. If there's no settings/settings icon, Logout. Re-login.
|
4. Change its settings. If there's no settings/settings icon, Logout. Re-login.
|
||||||
|
|
||||||
### Where is the scrollbar?
|
|
||||||
|
|
||||||
1. You can adjust the value of `scrollbar-width` in `userContent.css`.
|
|
||||||
2. Restart Firefox.
|
|
||||||
|
|
||||||
### How can I set or change the colors for the Default color mode?
|
### How can I set or change the colors for the Default color mode?
|
||||||
|
|
||||||
1. The default mode are from Firefox and it uses the system colors. Although I only tried and tested it with `GTK3`, it should work with any platforms or environment as long as Firefox can detect your system colors.
|
1. The default mode are from Firefox and it uses the system colors. Although I only tried and tested it with `GTK3`, it should work with any platforms or environment as long as Firefox can detect your system colors.
|
||||||
|
@ -8,14 +8,16 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide scrollbar */
|
/* Sets up minimal scrollbar */
|
||||||
:root{
|
:root {
|
||||||
scrollbar-width: none !important;
|
scrollbar-width: thin !important;
|
||||||
|
scrollbar-color: rgb(161, 161, 161) transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide incognito scrollbar */
|
/* Sets up minimal incognito scrollbar */
|
||||||
@-moz-document url(about:privatebrowsing) {
|
@-moz-document url(about:privatebrowsing) {
|
||||||
:root{
|
:root{
|
||||||
scrollbar-width: none !important;
|
scrollbar-width: thin !important;
|
||||||
|
scrollbar-color: rgb(161, 161, 161) transparent !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user