mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
b9843e0358
- Bug 1167459 - Skip rendering function name nodes if there's no name available (e.g. for C++ pseudoframes), r=jsantell (4a69ed224)
- missing bits Bug 1102219 - Part 4: Replace String.prototype.contains with `String.prototype.includes` in chrome code. r=till (73cd2d2b1)
- Bug 1165045 - Don't create nodes with empty text in the call tree, r=jsantell (b013aa82d)
- Bug 1166122 - Fix regression in the call tree caused by bug 1165045, r=jsantell (ee3f16901)
- Bug 1167975 - CallView._displaySelf sets this.document just because other functions use it; it should pass it as an argument instead, r=jsantell (5ef560c4f)
- Bug 1122662 - Resize graphs when window resizes;r=vporof (25c108e4e)
- Bug 1164784 - Eliminate CSS duplication with perf tool record button r=jsantell (43c9bb999)
- Bug 1150761 - Rename the performance tool's details view names to better describe the data visualizations. r=vp (04ceb6a37)
- Bug 1144424 - Rename '{self,total} allocations' to '{self,total} sampled allocations' in the performance tool. r=jsantell (ae79ad54f)
- Bug 1069910 - Add tooltips explaining what each column in the profiler's tree view represents; r=jsantell (8756f88b6)
- Bug 1107849 - Define a min/max width for the performance panel sidebar. r=vporof (e1769e831)
- Bug 11663354 - A locked recording button should appear disabled in the performance tool. r=vp (4a359d39e)
- Bug 1023546 - DevTools - Support HDPI resolutions for Windows. r=bgrins (ef1a3ecb8)
- Bug 1168125 - Cleanup performance xul and css, r=jsantell (8ec794e46)
- Bug 1168125 - Replace the waterfall view with a tree, r=jsantell (ea76514fe)
- Bug 1168125 - Add marker folding logic, r=jsantell (1d3748d2a)
- Bug 862341 Part 1: Move the network request storage from the console frontend to the console client so the netmonitor can reuse it. r=vporof (d29fb2b73)
- remove gre from resource path (126b00df1)
- Bug 943306 - Allow persisting console input history between sessions;r=past (146ebb486)
- Bug 1134845 - Add clearHistory jsterm helper to remove persisted console input history. r=past (22237e95b)
- Bug 1143497 - Offer a way to extend WebConsole commands. r=bgrins (84e2d2957)
- Bug 1125205 - Display console API messages from shared or service workers to the web console, r=past (b4b701a2c)
- Bug 1169342 - Remove nsIDOMDeviceStorage. Cleanup nsDOMDeviceStorage event wrappers. r=dhylands (41338e16f)
- Bug 1151610 - Manage the case where two extensions fight over the same command. r=bgrins (63f9d2064)
- Bug 862341 Part 2: Display cached network requests in the web console. r=vporof (83c0e7263)
- Bug 1144211 - Improve code coverage of camera mochitests. r=mikeh (ba9f3de89)
- Bug 1152500 - Fix how stop recording may be handled out-of-order. r=dhylands (d8bdd379c)
- Bug 862341 Part 3: Display cached network requests in the network panel. r=vporof (a1a6f151d)
- Bug 862341 Part 4: Start recording network requests when the toolbox opens. r=vporof (7a2bdf847)
- Bug 1151499 - Correct the FM playable state. r=baku (8af26fff2)
- Bug 1180347 - Split media.useAudioChannelService to support turning the service on without turning the Firefox OS specific APIs on; r=baku (3fa29291a)
- Bug 862341 Part 5: Tests. r=vporof (82fb944c6)
252 lines
6.3 KiB
CSS
252 lines
6.3 KiB
CSS
%if 0
|
|
/* 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/. */
|
|
%endif
|
|
|
|
/* Developer toolbar */
|
|
|
|
/* NOTE: THESE NEED TO STAY IN SYNC WITH LIGHT-THEME.CSS AND DARK-THEME.CSS.
|
|
We are copy/pasting variables from light-theme and dark-theme,
|
|
since they aren't loaded in this context (within browser.css). */
|
|
:root[devtoolstheme="light"] #developer-toolbar {
|
|
--gcli-background-color: #ebeced; /* --theme-tab-toolbar-background */
|
|
--gcli-input-background: #f0f1f2; /* --theme-toolbar-background */
|
|
--gcli-input-focused-background: #f7f7f7; /* --theme-sidebar-background */
|
|
--gcli-input-color: #18191a; /* --theme-body-color */
|
|
--gcli-border-color: #aaaaaa; /* --theme-splitter-color */
|
|
--selection-background: #4c9ed9; /* --theme-selection-background */
|
|
--selection-color: #f5f7fa; /* --theme-selection-color */
|
|
}
|
|
|
|
:root[devtoolstheme="dark"] #developer-toolbar {
|
|
--gcli-background-color: #343c45; /* --theme-toolbar-background */
|
|
--gcli-input-background: rgba(37, 44, 51, .6); /* --theme-tab-toolbar-background */
|
|
--gcli-input-focused-background: #252c33; /* --theme-tab-toolbar-background */
|
|
--gcli-input-color: #b6babf; /* --theme-body-color-alt */
|
|
--gcli-border-color: black; /* --theme-splitter-color */
|
|
--selection-background: #1d4f73; /* --theme-selection-background */
|
|
--selection-color: #f5f7fa; /* --theme-selection-color */
|
|
}
|
|
|
|
#developer-toolbar {
|
|
-moz-appearance: none;
|
|
padding: 0;
|
|
min-height: 32px;
|
|
background-color: var(--gcli-background-color);
|
|
border-top: 1px solid var(--gcli-border-color);
|
|
}
|
|
|
|
#developer-toolbar > toolbarbutton {
|
|
-moz-appearance: none;
|
|
border: none;
|
|
background: transparent;
|
|
margin: 0;
|
|
padding: 0 10px;
|
|
width: 32px;
|
|
}
|
|
|
|
.developer-toolbar-button > image {
|
|
margin: auto 10px;
|
|
}
|
|
|
|
:root[devtoolstheme="light"] #developer-toolbar > toolbarbutton:not([checked=true]) > image,
|
|
:root[devtoolstheme="light"] .gclitoolbar-input-node:not([focused=true])::before {
|
|
filter: url("chrome://browser/skin/devtools/filters.svg#invert");
|
|
}
|
|
|
|
.developer-toolbar-button > .toolbarbutton-icon,
|
|
#developer-toolbar-closebutton > .toolbarbutton-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button {
|
|
list-style-image: url("chrome://global/skin/devtools/toggle-tools.png");
|
|
-moz-image-region: rect(0px, 16px, 16px, 0px);
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button > label {
|
|
display: none;
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button:hover {
|
|
-moz-image-region: rect(0px, 32px, 16px, 16px);
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button:hover:active {
|
|
-moz-image-region: rect(0px, 48px, 16px, 32px);
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button[checked=true] {
|
|
-moz-image-region: rect(0px, 64px, 16px, 48px);
|
|
}
|
|
|
|
@media (min-resolution: 1.25dppx) {
|
|
#developer-toolbar-toolbox-button {
|
|
list-style-image: url("chrome://global/skin/devtools/toggle-tools@2x.png");
|
|
-moz-image-region: rect(0px, 32px, 32px, 0px);
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button:hover {
|
|
-moz-image-region: rect(0px, 64px, 32px, 32px);
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button:hover:active {
|
|
-moz-image-region: rect(0px, 96px, 32px, 64px);
|
|
}
|
|
|
|
#developer-toolbar-toolbox-button[checked=true] {
|
|
-moz-image-region: rect(0px, 128px, 32px, 96px);
|
|
}
|
|
}
|
|
|
|
#developer-toolbar-closebutton {
|
|
list-style-image: url("chrome://global/skin/devtools/close.png");
|
|
-moz-appearance: none;
|
|
border: none;
|
|
margin: 0 4px;
|
|
min-width: 16px;
|
|
width: 16px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
@media (min-resolution: 1.25dppx) {
|
|
#developer-toolbar-closebutton {
|
|
list-style-image: url("chrome://global/skin/devtools/close@2x.png");
|
|
}
|
|
}
|
|
|
|
#developer-toolbar-closebutton > .toolbarbutton-icon {
|
|
/* XXX Buttons have padding in widget/ that we don't want here but can't override with good CSS, so we must
|
|
use evil CSS to give the impression of smaller content */
|
|
margin: -4px;
|
|
}
|
|
|
|
#developer-toolbar-closebutton > .toolbarbutton-text {
|
|
display: none;
|
|
}
|
|
|
|
#developer-toolbar-closebutton:hover {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
#developer-toolbar-closebutton:hover:active {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* GCLI */
|
|
|
|
html|*#gcli-tooltip-frame,
|
|
html|*#gcli-output-frame {
|
|
padding: 0;
|
|
border-width: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#gcli-output,
|
|
#gcli-tooltip {
|
|
border-width: 0;
|
|
background-color: transparent;
|
|
-moz-appearance: none;
|
|
}
|
|
|
|
.gclitoolbar-input-node,
|
|
.gclitoolbar-complete-node {
|
|
margin: 0;
|
|
-moz-box-align: center;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
padding-right: 8px;
|
|
text-shadow: none;
|
|
box-shadow: none;
|
|
border-width: 0;
|
|
background-color: transparent;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.gclitoolbar-input-node {
|
|
-moz-appearance: none;
|
|
color: var(--gcli-input-color);
|
|
background-color: var(--gcli-input-background);
|
|
background-repeat: no-repeat;
|
|
background-position: 4px center;
|
|
box-shadow: 1px 0 0 var(--gcli-border-color) inset,
|
|
-1px 0 0 var(--gcli-border-color) inset;
|
|
|
|
line-height: 32px;
|
|
outline-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.gclitoolbar-input-node[focused="true"] {
|
|
background-color: var(--gcli-input-focused-background);
|
|
}
|
|
|
|
.gclitoolbar-input-node::before {
|
|
content: "";
|
|
display: inline-block;
|
|
-moz-box-ordinal-group: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0 2px;
|
|
background-image: url("chrome://global/skin/devtools/commandline-icon.png");
|
|
background-position: 0 center;
|
|
background-size: 32px 16px;
|
|
}
|
|
|
|
.gclitoolbar-input-node[focused="true"]::before {
|
|
background-position: -16px center;
|
|
}
|
|
|
|
@media (min-resolution: 1.25dppx) {
|
|
.gclitoolbar-input-node::before {
|
|
background-image: url("chrome://global/skin/devtools/commandline-icon@2x.png");
|
|
}
|
|
}
|
|
|
|
.gclitoolbar-input-node > .textbox-input-box > html|*.textbox-input::-moz-selection {
|
|
background-color: var(--selection-background);
|
|
color: var(--selection-color);
|
|
text-shadow: none;
|
|
}
|
|
|
|
.gclitoolbar-complete-node {
|
|
padding-left: 21px;
|
|
background-color: transparent;
|
|
color: transparent;
|
|
z-index: 100;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.gcli-in-incomplete,
|
|
.gcli-in-error,
|
|
.gcli-in-ontab,
|
|
.gcli-in-todo,
|
|
.gcli-in-closebrace,
|
|
.gcli-in-param,
|
|
.gcli-in-valid {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.gcli-in-incomplete {
|
|
border-bottom: 2px dotted #999;
|
|
}
|
|
|
|
.gcli-in-error {
|
|
border-bottom: 2px dotted #F00;
|
|
}
|
|
|
|
.gcli-in-ontab {
|
|
color: hsl(210,0%,35%);
|
|
}
|
|
|
|
.gcli-in-todo {
|
|
color: hsl(210,50%,35%);
|
|
}
|
|
|
|
.gcli-in-closebrace {
|
|
color: hsl(0,0%,80%);
|
|
}
|