1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5/* BreacrumbsWidget */
6
7.breadcrumbs-widget-item {
8  direction: ltr;
9}
10
11.breadcrumbs-widget-item {
12  -moz-user-focus: normal;
13}
14
15/* VariablesView */
16
17.variables-view-container {
18  overflow-x: hidden;
19  overflow-y: auto;
20  direction: ltr;
21}
22
23.variables-view-element-details:not([open]) {
24  display: none;
25}
26
27.variable-or-property {
28  -moz-user-focus: normal;
29}
30
31.variables-view-scope > .title,
32.variable-or-property > .title {
33  overflow: hidden;
34}
35
36.variables-view-scope[untitled] > .title,
37.variable-or-property[untitled] > .title,
38.variable-or-property[unmatched] > .title {
39  display: none;
40}
41
42.variable-or-property:not([safe-getter]) > tooltip > label.WebIDL,
43.variable-or-property:not([overridden]) > tooltip > label.overridden,
44.variable-or-property:not([non-extensible]) > tooltip > label.extensible,
45.variable-or-property:not([frozen]) > tooltip > label.frozen,
46.variable-or-property:not([sealed]) > tooltip > label.sealed {
47  display: none;
48}
49
50.variable-or-property[pseudo-item] > tooltip,
51.variable-or-property[pseudo-item] > .title > .variables-view-edit,
52.variable-or-property[pseudo-item] > .title > .variables-view-delete,
53.variable-or-property[pseudo-item] > .title > .variables-view-add-property,
54.variable-or-property[pseudo-item] > .title > .variables-view-open-inspector,
55.variable-or-property[pseudo-item] > .title > .variable-or-property-frozen-label,
56.variable-or-property[pseudo-item] > .title > .variable-or-property-sealed-label,
57.variable-or-property[pseudo-item] > .title > .variable-or-property-non-extensible-label,
58.variable-or-property[pseudo-item] > .title > .variable-or-property-non-writable-icon {
59  display: none;
60}
61
62.variable-or-property > .title .toolbarbutton-text {
63  display: none;
64}
65
66*:not(:hover) .variables-view-delete,
67*:not(:hover) .variables-view-add-property,
68*:not(:hover) .variables-view-open-inspector {
69  visibility: hidden;
70}
71
72.variables-view-container[aligned-values] [optional-visibility] {
73  display: none;
74}
75
76/* Table Widget */
77.table-widget-body > .devtools-side-splitter:last-child {
78  display: none;
79}
80