summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/components/SecondaryPanes/SecondaryPanes.css
blob: 6432e9fe75ca0574092f4f5766c5f4ec51e49163 (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
/* 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/>. */

.secondary-panes {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  white-space: nowrap;
  background-color: var(--theme-sidebar-background);
  --breakpoint-expression-right-clear-space: 36px;
  --paused-background-color: hsl(54, 100%, 92%);
  --paused-color: var(--theme-body-color);

  .theme-dark & {
    --paused-background-color: hsl(42, 37%, 19%);
    --paused-color: hsl(43, 94%, 81%);
  }
}

.secondary-panes .controlled > div {
  max-width: 100%;
}

/*
  We apply overflow to the container with the commandbar.
  This allows the commandbar to remain fixed when scrolling
  until the content completely ends. Not just the height of
  the wrapper.
  Ref: https://github.com/firefox-devtools/debugger/issues/3426
*/

.secondary-panes-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.secondary-panes .accordion {
  flex: 1 0 auto;
  margin-bottom: 0;
}

.secondary-panes-wrapper .accordion li:last-child ._content {
  border-bottom: 0;
}

.pane {
  color: var(--theme-body-color);
}

.pane .pane-info {
  text-align: start;
  padding: 0.5em;
  gap: 8px;
  display: flex;
  white-space: normal;
}

.pane .pane-info.no-original-scopes-info {
  background-color: var(--theme-warning-background);
  color: var(--theme-warning-color);
}

.secondary-panes .breakpoints-buttons {
  display: flex;
}

.dropdown {
  width: 20em;
  overflow: auto;
}

.secondary-panes input[type="checkbox"] {
  margin: 0;
  margin-inline-end: 4px;
  vertical-align: text-top;
}

.secondary-panes-wrapper .command-bar.bottom {
  background-color: var(--theme-body-background);
}

/**
 * Skip Pausing style
 * Add a gray background and lower content opacity
 */
.skip-pausing .xhr-breakpoints-pane ._content,
.skip-pausing .breakpoints-pane ._content,
.skip-pausing .event-listeners-pane ._content,
.skip-pausing .dom-mutations-pane ._content {
  background-color: var(--skip-pausing-background-color);
  opacity: var(--skip-pausing-opacity);
  color: var(--skip-pausing-color);
}