Minimal scrollbar + README.md update (#34)

* Minimal scrollbar

* Removes (now) unnecessary note about scrollbar
This commit is contained in:
Marco Antônio Ribeiro de Toledo 2020-09-05 09:11:02 -03:00 committed by GitHub
부모 a3a64ec44e
커밋 fd0ea26b0a
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
2개의 변경된 파일8개의 추가작업 그리고 11개의 파일을 삭제

파일 보기

@ -111,11 +111,6 @@
3. Go to `System Settings > KWin Scripts > Enable Force Blur`.
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?
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 */
:root{
scrollbar-width: none !important;
/* Sets up minimal scrollbar */
:root {
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) {
:root{
scrollbar-width: none !important;
scrollbar-width: thin !important;
scrollbar-color: rgb(161, 161, 161) transparent !important;
}
}
}