9d4a6dc0b9
* redesign * add more css var * some changes i dont remember * some minor changes * add sidebar * URL bar compact mode support * install.sh: add backdrop filter * install.sh: fix type * README * color changes * README * update scrot
21 lines
464 B
CSS
21 lines
464 B
CSS
@import url('userChrome.css');
|
|
|
|
/* Removes the white loading page */
|
|
@-moz-document url(about:blank), url(about:newtab), url(about:home) {
|
|
html:not(#ublock0-epicker), html:not(#ublock0-epicker) body, #newtab-customize-overlay {
|
|
background: var(--bf-bg) !important;
|
|
}
|
|
}
|
|
|
|
/* Hide scrollbar */
|
|
:root{
|
|
scrollbar-width: none !important;
|
|
}
|
|
|
|
/* Hide incognito scrollbar */
|
|
@-moz-document url(about:privatebrowsing) {
|
|
:root{
|
|
scrollbar-width: none !important;
|
|
}
|
|
}
|