File: aboutGlean.css

package info (click to toggle)
firefox 147.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,683,324 kB
  • sloc: cpp: 7,607,156; javascript: 6,532,492; ansic: 3,775,158; python: 1,415,368; xml: 634,556; asm: 438,949; java: 186,241; sh: 62,751; makefile: 18,079; objc: 13,092; perl: 12,808; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10; exp: 6
file content (170 lines) | stat: -rw-r--r-- 3,166 bytes parent folder | download | duplicates (2)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/* 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/. */

@import url("chrome://global/skin/in-content/common.css");

:root {
  --content-width-offset: 340px;
  --table-width: calc(100vw - var(--content-width-offset));
}

body {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.category .category-name {
  pointer-events: none;
}

.category {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.main-content {
  flex: 1;
}

#tag-pings:invalid + label > span {
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
  color: var(--text-color-error);
}

#feedback {
  visibility: hidden;
  position: fixed;
  z-index: 1;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  bottom: var(--space-medium);
}

#log-pings {
  vertical-align: text-top;
  margin-inline-end: 0;
}

#metrics-table-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#metrics-table {
  width: var(--table-width);
}

#metrics-table table {
  width: var(--table-width);
}

#metrics-table table td {
  vertical-align: middle;
}

#metrics-table-instance {
  max-height: calc(100vh - 205px);
  overflow-y: scroll;
}

#metrics-table-header {
  display: flex;
  justify-content: space-between;
}

#metrics-table-settings:not([hidden="true"]) .content {
  display: flex;
  flex-wrap: wrap;
}

#metrics-table-settings .content > * {
  flex: 1 0 auto;
}

@media (max-width: 1096px) {
  #metrics-table-settings .content > * {
    flex-basis: 100%;
  }
}

#metrics-table-settings,
#metrics-table-settings .box {
  margin-bottom: 5px;
  padding: 10px;
  border: 1px solid var(--border-color-card);
  border-radius: var(--border-radius-small);
  background-color: var(--background-color-box);
}

#metrics-table-settings h2,
#metrics-table-settings h3,
#metrics-table-settings h4 {
  margin: 10px 0;
}

#metrics-table-settings hr {
  margin: 20px 0;
}

td[data-d3-cell="actions"] > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

td[data-d3-cell="value"] > pre,
#metrics-table-settings-timeline-example > pre {
  background-color: var(--background-color-box);
  padding: 5px;
  border-radius: var(--border-radius-small);
  overflow-x: scroll;
  width: fit-content;
}

td[data-d3-cell="value"] > svg,
.chart-display > svg {
  color: var(--text-color);
  border: 1px solid var(--border-color-card);
  border-radius: var(--border-radius-small);
  background-color: var(--background-color-box);
}

.vertical-flex {
  display: flex;
  flex-direction: column;
}

.histogram .boxes rect,
.timeline .events circle {
  fill: var(--color-accent-primary);
}

.histogram .boxes .hovered rect,
.timeline .events .hovered circle,
.timeline .events .selected circle {
  fill: var(--color-accent-primary-hover);
}

.histogram .boxes text,
.timeline text {
  fill: var(--text-color);
}

.histogram .tick *,
.histogram .domain {
  fill: var(--text-color);
}

.timeline line {
  stroke: var(--text-color);
}

pre.withChart {
  max-width: 500px;
  overflow: scroll;
}