summaryrefslogtreecommitdiffstats
path: root/browser/components/firefoxview/fxview-category-button.css
blob: 1bce29f3435f22420064ce575773b5b989e13c39 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* 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 {
  border-radius: 4px;
}

button {
  background-color: initial;
  border: 1px solid var(--in-content-primary-button-border-color);
  -moz-context-properties: fill, fill-opacity;
  fill: currentColor;
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 12px;
  align-items: center;
  font-size: inherit;
  width: 100%;
  font-weight: normal;
  border-radius: 4px;
  color: inherit;
  text-align: start;
  transition: background-color 150ms;
  padding: var(--fxviewcategorynav-button-padding);
}

button:hover {
  cursor: pointer;
}

@media not (prefers-contrast) {
  button {
    border-inline-start: 2px solid transparent;
    border-inline-end: none;
    border-block: none;
  }

  button:hover,
  button[selected]:hover {
    background-color: var(--in-content-button-background-hover);
    border-color: var(--in-content-button-border-color-hover);
  }

  button[selected]:hover {
    border-inline-start-color: inherit;
  }

  button[selected],
  button[selected]:hover {
    border-inline-start: 2px solid;
  }

  button[selected]:not(:focus-visible) {
    border-start-start-radius: 0;
    border-end-start-radius: 0;
  }

  button[selected]:not(:hover) {
    color: var(--in-content-accent-color);
    background-color: color-mix(in srgb, var(--fxview-primary-action-background) 5%, transparent);
    border-inline-start-color: var(--in-content-accent-color);
  }
}

@media (prefers-color-scheme: dark) {
  button[selected] {
    background-color: color-mix(in srgb, var(--fxview-primary-action-background) 12%, transparent);
  }
}

button:focus-visible,
button[selected]:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

.category-icon {
  background-color: initial;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  height: 20px;
  width: 20px;
  -moz-context-properties: fill;
  fill: currentColor;
}

@media (prefers-contrast) {
  button {
    transition: none;
    border-color: ButtonText;
    background-color: var(--in-content-button-background);
  }

  button:hover {
    color: SelectedItem;
  }

  button[selected] {
    color: SelectedItemText;
    background-color: SelectedItem;
    border-color: SelectedItem;
  }
}

slot {
  font-size: 1.13em;
  line-height: 1.4;
  margin: 0;
  padding-inline-start: 0;
  user-select: none;
}

@media (max-width: 52rem) {
  button {
    grid-template-columns: min-content;
    justify-content: center;
    margin-inline: 0;
  }

  slot {
    display: none;
  }
}