forked from adriankarlen/textfox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
81 lines (72 loc) · 1.74 KB
/
navbar.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
/* fix urlbar being too high in ff 128 */
* {
--urlbar-toolbar-height: 32px !important;
--urlbar-container-height: 32px !important;
}
#TabsToolbar {
visibility: collapse !important;
}
/* Keeps the .titlebar-spacer[type="pre-tabs"] and [type="post-tabs"] consistent in all window sizes */
:root:not([sizemode="normal"]) .titlebar-spacer[type="pre-tabs"] {
display: block !important;
}
@media (max-width: 500px) {
.titlebar-spacer[type="post-tabs"] {
display: block !important;
}
}
/* Deactivating close, minimize and maximize buttons */
.tab-close-button,
#TabsToolbar .toolbarbutton-1,
.titlebar-buttonbox-container {
display: none !important;
}
/* hide stuff */
#identity-box,
#back-button,
#forward-button,
#userContext-icons,
#translations-button-icon,
#tracking-protection-icon-container,
#star-button-box,
.urlbar-page-action {
display: none;
}
#nav-bar {
background-color: var(--lwt-accent-color) !important;
margin: 8px;
padding: 4px !important;
border-top: var(--border-width) !important;
border-style: solid !important;
border-width: var(--border-width);
border-color: var(--border) !important;
border-radius: var(--rounding);
transition: border-color var(--border-transition);
&:hover,
&:focus {
border-color: var(--accent) !important;
}
}
#navigator-toolbox {
border-bottom: unset !important;
background-color: var(--lwt-accent-color);
&::before {
content: "navbar";
background-color: var(--lwt-accent-color);
position: absolute;
margin: 0 22px;
padding: 0 2px;
z-index: 9;
font-size: 1.15em;
}
&:hover::before {
color: var(--accent);
}
}
.urlbar-input-container {
border: none !important;
background: var(--lwt-accent-color);
}
#urlbar {
text-align: center;
}