summaryrefslogtreecommitdiffstats
path: root/devtools/client/themes/jit-optimizations.css
blob: 3638105048595cfe8f5a1e12c0609d10e2aed956 (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
/* vim:set ts=2 sw=2 sts=2 et: */
/* 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/. */

/**
 * JIT View
 */

#jit-optimizations-view {
  width: 350px;
  min-width: 200px;
  white-space: nowrap;
  --jit-tree-row-height: 14;
  --jit-tree-header-height: 16;
}

/* Override layout styles applied by minimal-xul.css */
#jit-optimizations-view div {
  display: block;
}
#jit-optimizations-view span {
  display: inline-block;
}

#jit-optimizations-view > div {
  /* For elements that need to flex to fill the available space and/or
   * scroll on overflow, we need to use the old flexbox model, since the
   * parent nodes are in the XUL namespace. The new flexbox model can't
   * properly compute dimensions and will ignore `flex: ${number}` properties,
   * since no other parent node has a flex display. */
  display: -moz-box;
  -moz-box-flex: 1;
  -moz-box-orient: vertical;
}

#jit-optimizations-view .optimization-header,
#jit-optimizations-view .tree * {
  /* We can, however, display child nodes as flex to take advantage of
   * horizontal/vertical inlining. */
  display: flex;
}

#jit-optimizations-view .optimization-header {
  height: var(--jit-tree-header-height);
  padding: 2px 5px;
  background-color: var(--theme-tab-toolbar-background);
}

#jit-optimizations-view .header-title {
  font-weight: bold;
  padding-inline-end: 7px;
}

#jit-optimizations-view .tree {
  display: -moz-box;
  -moz-box-flex: 1;
  -moz-box-orient: vertical;
  overflow: auto;
  background-color: var(--theme-body-background);
}

#jit-optimizations-view .tree-node {
  height: var(--jit-tree-row-height);
}

#jit-optimizations-view .tree-node button {
  display: none;
}

#jit-optimizations-view .optimization-outcome.success {
  color: var(--theme-highlight-green);
}
#jit-optimizations-view .optimization-outcome.failure {
  color: var(--theme-highlight-red);
}

.theme-dark .opt-icon::before {
  background-image: url(chrome://devtools/skin/images/webconsole.svg);
}
.theme-light .opt-icon::before {
  background-image: url(chrome://devtools/skin/images/webconsole.svg#light-icons);
}

.opt-icon::before {
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-size: 72px 60px;
  /* show grey "i" bubble by default */
  background-position: -36px -36px;
  width: 10px;
  height: 10px;
  max-height: 12px;
}

.opt-icon::before {
  margin: 1px 6px 0 0;
}

.opt-icon.warning::before {
  background-position: -24px -24px;
}

/* Frame Component */
.frame-link {
  margin-inline-start: 7px;
}