summaryrefslogtreecommitdiffstats
path: root/devtools/client/dom/content/dom-view.css
blob: d2fd77e525430c36f44e26c343d8e550e6ed993b (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
/* 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/. */

/******************************************************************************/
/* General */

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: var(--theme-body-background);
}

.mainFrame {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.mainFrame > .treeTableBox {
  flex: 1 1 auto;
  overflow: auto;
}

/******************************************************************************/
/* TreeView Customization */

.treeTable {
  width: 100%;
}

/* Space for read only properties icon */
.treeTable td.treeValueCell {
  padding-inline-start: 16px;
}

.treeTable .treeLabel,
.treeTable td.treeValueCell .objectBox {
  direction: ltr; /* Don't change the direction of english labels */
}

/* Read only properties have a padlock icon */
.treeTable tr:not(.writable) td.treeValueCell {
  background: url("chrome://devtools/skin/images/lock.svg") no-repeat;
  background-position: 1px 4px;
  background-size: 12px 12px;
  -moz-context-properties: fill;
  fill: var(--theme-icon-dimmed-color);
}

.treeTable tr:not(.writable) td.treeValueCell:dir(rtl) {
  background-position-x: right 1px;
}

.treeTable tr:not(.writable).selected td.treeValueCell {
  fill: var(--theme-selection-color);
}

/* Non-enumerable properties are grayed out */
.treeTable tr:not(.enumerable) td.treeValueCell {
  opacity: 0.7;
}

.theme-light .treeTable > tbody > tr > td {
  border-bottom: 1px solid var(--grey-20);
}

/* Label Types */
.treeTable .userLabel,
.treeTable .userClassLabel,
.treeTable .userFunctionLabel {
  font-weight: bold;
}

.treeTable .userLabel {
  color: #000000;
}

.treeTable .userClassLabel {
  color: #E90000;
}

.treeTable .userFunctionLabel {
  color: #025E2A;
}

.treeTable .domLabel {
  color: #000000;
}

.treeTable .domClassLabel {
  color: #E90000;
}

.treeTable .domFunctionLabel {
  color: #025E2A;
}

.treeTable .ordinalLabel {
  color: SlateBlue;
  font-weight: bold;
}

/******************************************************************************/
/* Refresh button */
#dom-refresh-button::before {
  background-image: url("chrome://devtools/skin/images/reload.svg");
}