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)
247 lines
5.1 KiB
CSS
247 lines
5.1 KiB
CSS
/* 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/. */
|
|
|
|
.errors,
|
|
.breakpoints {
|
|
width: 16px;
|
|
}
|
|
|
|
.hit-counts {
|
|
width: 6px;
|
|
}
|
|
|
|
.error, .breakpoint, .debugLocation, .breakpoint-debugLocation {
|
|
display: inline-block;
|
|
margin-left: 5px;
|
|
width: 12px;
|
|
height: 12px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: contain;
|
|
}
|
|
|
|
.hit-count {
|
|
display: inline-block;
|
|
height: 12px;
|
|
border: solid rgba(0,0,0,0.2);
|
|
border-width: 1px 1px 1px 0;
|
|
border-radius: 0 3px 3px 0;
|
|
padding: 0 3px;
|
|
font-size: 10px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.error {
|
|
background-image: url("chrome://global/skin/devtools/editor-error.png");
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.breakpoint {
|
|
background-image: url("chrome://global/skin/devtools/editor-breakpoint.png");
|
|
position: relative;
|
|
}
|
|
|
|
@media (min-resolution: 1.25dppx) {
|
|
.breakpoint {
|
|
background-image: url("chrome://global/skin/devtools/editor-breakpoint@2x.png");
|
|
}
|
|
}
|
|
|
|
.breakpoint[adding] {
|
|
transition: transform .25s;
|
|
}
|
|
|
|
.debugLocation {
|
|
background-image: url("chrome://global/skin/devtools/editor-debug-location.png");
|
|
}
|
|
|
|
@media (min-resolution: 1.25dppx) {
|
|
.debugLocation {
|
|
background-image: url("chrome://global/skin/devtools/editor-debug-location@2x.png");
|
|
}
|
|
}
|
|
|
|
.breakpoint.debugLocation {
|
|
background-image:
|
|
url("chrome://global/skin/devtools/editor-debug-location.png"),
|
|
url("chrome://global/skin/devtools/editor-breakpoint.png");
|
|
}
|
|
|
|
@media (min-resolution: 1.25dppx) {
|
|
.breakpoint.debugLocation {
|
|
background-image:
|
|
url("chrome://global/skin/devtools/editor-debug-location@2x.png"),
|
|
url("chrome://global/skin/devtools/editor-breakpoint@2x.png");
|
|
}
|
|
}
|
|
|
|
.CodeMirror {
|
|
cursor: text;
|
|
}
|
|
|
|
.CodeMirror-gutters {
|
|
cursor: default;
|
|
}
|
|
|
|
/* This is to avoid the fake horizontal scrollbar div of codemirror to go 0
|
|
height when floating scrollbars are active. Make sure that this value is equal
|
|
to the maximum of `min-height` specific to the `scrollbar[orient="horizontal"]`
|
|
selector in floating-scrollbar-light.css across all platforms. */
|
|
.CodeMirror-hscrollbar {
|
|
min-height: 10px;
|
|
}
|
|
|
|
/* This is to avoid the fake vertical scrollbar div of codemirror to go 0
|
|
width when floating scrollbars are active. Make sure that this value is equal
|
|
to the maximum of `min-width` specific to the `scrollbar[orient="vertical"]`
|
|
selector in floating-scrollbar-light.css across all platforms. */
|
|
.CodeMirror-vscrollbar {
|
|
min-width: 10px;
|
|
}
|
|
|
|
.cm-trailingspace {
|
|
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAYAAAB/qH1jAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QUXCToH00Y1UgAAACFJREFUCNdjPMDBUc/AwNDAAAFMTAwMDA0OP34wQgX/AQBYgwYEx4f9lQAAAABJRU5ErkJggg==");
|
|
opacity: 0.75;
|
|
background-position: left bottom;
|
|
background-repeat: repeat-x;
|
|
}
|
|
|
|
/* CodeMirror dialogs styling */
|
|
|
|
.CodeMirror-dialog {
|
|
padding: 4px 3px;
|
|
}
|
|
|
|
.CodeMirror-dialog,
|
|
.CodeMirror-dialog input {
|
|
font: message-box;
|
|
}
|
|
|
|
/* Fold addon */
|
|
|
|
.CodeMirror-foldmarker {
|
|
color: blue;
|
|
text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
|
|
font-family: sans-serif;
|
|
line-height: .3;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.CodeMirror-foldgutter {
|
|
width: 16px; /* Same as breakpoints gutter above */
|
|
}
|
|
|
|
.CodeMirror-foldgutter-open,
|
|
.CodeMirror-foldgutter-folded {
|
|
color: #555;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.CodeMirror-foldgutter-open:after {
|
|
font-size: 120%;
|
|
content: "\25BE";
|
|
}
|
|
|
|
.CodeMirror-foldgutter-folded:after {
|
|
font-size: 120%;
|
|
content: "\25B8";
|
|
}
|
|
|
|
.CodeMirror-hints {
|
|
position: absolute;
|
|
z-index: 10;
|
|
overflow: hidden;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 2px;
|
|
border-radius: 3px;
|
|
font-size: 90%;
|
|
max-height: 20em;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.CodeMirror-hint {
|
|
margin: 0;
|
|
padding: 0 4px;
|
|
border-radius: 2px;
|
|
max-width: 19em;
|
|
overflow: hidden;
|
|
white-space: pre;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.CodeMirror-Tern-completion {
|
|
-moz-padding-start: 22px;
|
|
position: relative;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.CodeMirror-Tern-completion:before {
|
|
position: absolute;
|
|
left: 2px;
|
|
bottom: 2px;
|
|
border-radius: 50%;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
height: 15px;
|
|
width: 15px;
|
|
line-height: 16px;
|
|
text-align: center;
|
|
color: #ffffff;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-unknown:before {
|
|
content: "?";
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-object:before {
|
|
content: "O";
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-fn:before {
|
|
content: "F";
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-array:before {
|
|
content: "A";
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-number:before {
|
|
content: "N";
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-string:before {
|
|
content: "S";
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-bool:before {
|
|
content: "B";
|
|
}
|
|
|
|
.CodeMirror-Tern-completion-guess {
|
|
color: #999;
|
|
}
|
|
|
|
.CodeMirror-Tern-tooltip {
|
|
border-radius: 3px;
|
|
padding: 2px 5px;
|
|
white-space: pre-wrap;
|
|
max-width: 40em;
|
|
position: absolute;
|
|
z-index: 10;
|
|
}
|
|
|
|
.CodeMirror-Tern-hint-doc {
|
|
max-width: 25em;
|
|
}
|
|
|
|
.CodeMirror-Tern-farg-current {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.CodeMirror-Tern-fhint-guess {
|
|
opacity: .7;
|
|
}
|