-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathuserContent.css
More file actions
43 lines (31 loc) · 1.33 KB
/
userContent.css
File metadata and controls
43 lines (31 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*==============================================================================================*
FoxOne — userContent.css
Styles for browser content pages (new tab, home).
*==============================================================================================*/
/* ==========================================================================
CONFIG
========================================================================== */
:root {
/* Scrollbar visibility in web content
* none = hidden (scroll via mousewheel/keyboard/touchpad)
* thin = always visible, slim style
* auto = default OS scrollbar */
--uc-content-scrollbar: auto;
}
/* ==========================================================================
SCROLLBAR
========================================================================== */
* {
scrollbar-width: var(--uc-content-scrollbar) !important;
}
/* ==========================================================================
NEW TAB / HOME — Gruvbox Dark (dark mode only)
========================================================================== */
@-moz-document url-prefix("about:newtab"), url-prefix("about:home") {
@media (prefers-color-scheme: dark) {
:root {
--newtab-background-color: #282828 !important;
--newtab-text-primary-color: #FFFFFF !important;
}
}
}