blob: 0f2198e2393e030102e73b5368b8ede8195b0be6 (
plain)
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
:host {
--fxviewcategorynav-button-padding: 8px;
margin-inline-start: 42px;
border-inline-end: 1px solid transparent;
position: sticky;
}
nav {
height: 100%;
display: grid;
grid-template-rows: min-content 1fr auto;
gap: 25px;
}
.category-nav-header {
/* Align the header text/icon with the category button icons */
margin-inline-start: var(--fxviewcategorynav-button-padding);
}
::slotted(h2) {
font-size: 1.6em;
margin: 0;
}
.category-nav-buttons,
::slotted(.category-nav-footer) {
display: grid;
grid-template-columns: 1fr;
grid-auto-rows: min-content;
gap: 4px;
}
@media (prefers-contrast) {
.category-nav-buttons {
gap: 8px;
}
}
@media (prefers-reduced-motion) {
/* Setting border-inline-end to add clear differentiation between side navigation and main content area */
:host {
border-inline-end-color: var(--in-content-border-color);
}
}
@media (max-width: 52rem) {
:host {
grid-template-rows: 1fr auto;
}
.category-nav-header {
display: none;
}
.category-nav-buttons,
::slotted(.category-nav-footer) {
justify-content: center;
grid-template-columns: min-content;
}
}
|