-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuserContent.css
83 lines (68 loc) · 2.26 KB
/
userContent.css
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@import 'includes/realfire-config.css';
@import 'includes/realfire-colours.css';
@import 'includes/realfire-settings-page.css';
@import "includes/realfire-popups.css";
@import "includes/realfire-checkbox.css";
@import 'includes/realfire-library.css';
@import 'includes/realfire-addons-page.css';
@-moz-document url(about:home), url(about:newtab), url(about:privatebrowsing) {
.search-wrapper:not(.search.disabled) .search-handoff-button {
transition: all 0.3s ease-out;
}
.search-wrapper.fake-focus:not(.search.disabled) .search-handoff-button {
transition: all 0.3s ease-in;
}
div.title span {
background-color: var(--uc-base-colour);
border-radius: var(--uc-border-radius);
padding: 2px 4px;
}
.top-site-outer {
transition: all 0.35s ease-out;
}
.top-site-outer .top-site-icon,
.outer-wrapper .ds-top-sites .top-sites .top-site-outer .top-site-inner > a .tile {
transition: all 0.2s ease-out;
background-color: var(--uc-base-colour) !important;
}
.top-sites-list:not(.dnd-active) .top-site-outer:is(.active, :focus, :hover),
.outer-wrapper .ds-top-sites .top-sites .top-site-outer .top-site-inner > a:is(.active, :focus, :hover) .tile {
transition: all 0.2s ease-in;
outline: 2px solid var(--accent-color);
}
.top-sites-list:not(.dnd-active) .top-site-outer:is(.active, :focus, :hover) {
transition: all 0.2s ease-in;
background: var(--uc-base-colour) !important;
}
.click-target-container *,
.top-sites-list * {
color: var(--uc-inverted-colour) !important;
}
body::before {
content: "";
z-index: -1;
position: fixed;
top: 0;
left: 0;
background: url(img/new_tab_wallpaper.jpg) center no-repeat;
background-size: cover;
width: 100vw;
height: 100vh;
}
.neterror {
background-color: var(--uc-base-colour) !important;
}
#neterrorTryAgainButton {
background-color: var(--accent-color) !important;
color: var(--uc-inverted-colour) !important;
}
#neterrorTryAgainButton:hover {
background-color: var(--accent-hover-color) !important;
}
.home-section .section input:checked + .slider {
background-color: var(--accent-color) !important;
}
.home-section .section .slider {
background-color: var(--uc-inverted-colour) !important;
}
}