summaryrefslogtreecommitdiffstats
path: root/browser/components/firefoxview/fxview-category-navigation.css
blob: 571059699b53e9c18da514b539488d921e02ad46 (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
/* 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;
  position: sticky;
  top: 0;
  height: 100vh;
}

nav {
  display: grid;
  grid-template-rows: min-content 1fr auto;
  gap: 25px;
  margin-block-start: var(--fxview-margin-top);
}

.category-nav-header {
  /* Align the header text/icon with the category button icons */
  margin-inline-start: var(--fxviewcategorynav-button-padding);
}

.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) {
  /* (See Bug 1610081) Setting border-inline-end to add clear differentiation between side navigation and main content area */
  :host {
    border-inline-end: 1px solid 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;
  }
}