-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathuserchrome.css
63 lines (55 loc) · 1.36 KB
/
userchrome.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
#appcontent
> #tabbrowser-tabbox
> #tabbrowser-tabpanels
> .deck-selected
> .browserContainer
> .browserStack
> browser {
border-radius: 16px !important;
margin: 14px !important;
}
.browserContainer {
background-color: var(
--lwt-accent-color-inactive,
var(--lwt-accent-color)
) !important;
background-image: var(--lwt-header-image), var(--lwt-additional-images) !important;
background-repeat: no-repeat, var(--lwt-background-tiling) !important;
background-position: right top, var(--lwt-background-alignment) !important;
}
#navigator-toolbox-background {
height: 0 !important;
}
#titlebar {
display: none !important;
}
.titlebar-buttonbox-container {
display: none !important;
}
#navigator-toolbox:not(:hover) {
--is-bar-visible: hidden;
opacity: 0 !important;
height: 20px;
transition: height 200ms ease-in-out, opacity 175ms ease-in-out;
}
#navigator-toolbox {
position: relative;
z-index: 1;
overflow: var(--is-bar-visible);
}
#navigator-toolbox:hover {
height: 40px;
opacity: 1 !important;
transition: opacity 175ms ease-in-out;
}
#navigator-toolbox:focus-within {
height: 40px;
opacity: 1 !important;
transition: opacity 175ms ease-in-out;
--is-bar-visible: visible;
}
toolbarbutton[open="true"] {
--is-bar-visible: visible !important;
opacity: 1 !important;
transition: opacity 175ms ease-in-out;
}