mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-21 09:49:14 +00:00
Bug 822110 - filter.png, noise.png and showall.png in browser/devtools/profiler/cleopatra/images are empty. r=robcee r=bgirard
This commit is contained in:
parent
1af8bc9062
commit
4f9fbed4b2
@ -40,9 +40,7 @@ browser.jar:
|
||||
content/browser/devtools/profiler/cleopatra/js/ProgressReporter.js (profiler/cleopatra/js/ProgressReporter.js)
|
||||
content/browser/devtools/profiler/cleopatra/js/devtools.js (profiler/cleopatra/js/devtools.js)
|
||||
content/browser/devtools/profiler/cleopatra/images/circlearrow.svg (profiler/cleopatra/images/circlearrow.svg)
|
||||
content/browser/devtools/profiler/cleopatra/images/filter.png (profiler/cleopatra/images/filter.png)
|
||||
content/browser/devtools/profiler/cleopatra/images/noise.png (profiler/cleopatra/images/noise.png)
|
||||
content/browser/devtools/profiler/cleopatra/images/showall.png (profiler/cleopatra/images/showall.png)
|
||||
content/browser/devtools/profiler/cleopatra/images/throbber.svg (profiler/cleopatra/images/throbber.svg)
|
||||
content/browser/devtools/profiler/cleopatra/images/treetwisty.svg (profiler/cleopatra/images/treetwisty.svg)
|
||||
content/browser/devtools/commandline.css (commandline/commandline.css)
|
||||
|
@ -17,8 +17,6 @@
|
||||
<script src="profiler/cleopatra/js/ui.js"></script>
|
||||
<script src="profiler/cleopatra/js/ProgressReporter.js"></script>
|
||||
<script src="profiler/cleopatra/js/devtools.js"></script>
|
||||
|
||||
<link rel="shortcut icon" href="favicon.png" />
|
||||
</head>
|
||||
|
||||
<body onload="notifyParent('loaded');">
|
||||
|
@ -4,7 +4,6 @@
|
||||
|
||||
.treeViewContainer {
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
cursor: default;
|
||||
line-height: 16px;
|
||||
@ -26,8 +25,6 @@
|
||||
.treeColumnHeader {
|
||||
position: absolute;
|
||||
display: block;
|
||||
background: -moz-linear-gradient(#FFF 45%, #EEE 60%);
|
||||
background: -webkit-linear-gradient(#FFF 45%, #EEE 60%);
|
||||
background: linear-gradient(#FFF 45%, #EEE 60%);
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
@ -93,17 +90,11 @@
|
||||
|
||||
.treeViewVerticalScrollbox,
|
||||
.treeViewHorizontalScrollbox {
|
||||
background: -moz-linear-gradient(white, white 50%, #F0F5FF 50%, #F0F5FF);
|
||||
background: -webkit-linear-gradient(white, white 50%, #F0F5FF 50%, #F0F5FF);
|
||||
background: linear-gradient(white, white 50%, #F0F5FF 50%, #F0F5FF);
|
||||
background-size: 100px 32px;
|
||||
}
|
||||
|
||||
.leftColumnBackground {
|
||||
background: -moz-linear-gradient(left, transparent, transparent 98px, #CCC 98px, #CCC 99px, transparent 99px),
|
||||
-moz-linear-gradient(white, white 50%, #F0F5FF 50%, #F0F5FF);
|
||||
background: -webkit-linear-gradient(left, transparent, transparent 98px, #CCC 98px, #CCC 99px, transparent 99px),
|
||||
-webkit-linear-gradient(white, white 50%, #F0F5FF 50%, #F0F5FF);
|
||||
background: linear-gradient(left, transparent, transparent 98px, #CCC 98px, #CCC 99px, transparent 99px),
|
||||
linear-gradient(white, white 50%, #F0F5FF 50%, #F0F5FF);
|
||||
background-size: auto, 100px 32px;
|
||||
|
@ -31,10 +31,6 @@ body {
|
||||
.profileProgressPane {
|
||||
padding: 20px;
|
||||
background-color: rgb(229,229,229);
|
||||
background-image: url(../images/noise.png),
|
||||
-moz-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.2));
|
||||
background-image: url(../images/noise.png),
|
||||
-webkit-linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.2));
|
||||
background-image: url(../images/noise.png),
|
||||
linear-gradient(rgba(255,255,255,.5),rgba(255,255,255,.2));
|
||||
text-shadow: rgba(255, 255, 255, 0.4) 0 1px;
|
||||
@ -62,22 +58,39 @@ body {
|
||||
height: 16px;
|
||||
}
|
||||
.finishedProfilePaneBackgroundCover {
|
||||
-webkit-animation: darken 300ms cubic-bezier(0, 0, 1, 0);
|
||||
-moz-animation: darken 300ms cubic-bezier(0, 0, 1, 0);
|
||||
animation: darken 300ms cubic-bezier(0, 0, 1, 0);
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.finishedProfilePane {
|
||||
-webkit-animation: appear 300ms ease-out;
|
||||
-moz-animation: appear 300ms ease-out;
|
||||
animation: appear 300ms ease-out;
|
||||
}
|
||||
|
||||
@keyframes darken {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@keyframes appear {
|
||||
from {
|
||||
transform: scale(0.3);
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
to {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
pointer-events: auto;
|
||||
}
|
||||
}
|
||||
.breadcrumbTrail {
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 29px;
|
||||
left: 0;
|
||||
background: -moz-linear-gradient(#FFF 50%, #F3F3F3 55%);
|
||||
background: -webkit-linear-gradient(#FFF 50%, #F3F3F3 55%);
|
||||
background: linear-gradient(#FFF 50%, #F3F3F3 55%);
|
||||
border-bottom: 1px solid #CCC;
|
||||
margin: 0;
|
||||
@ -85,8 +98,6 @@ body {
|
||||
overflow: hidden;
|
||||
}
|
||||
.breadcrumbTrailItem {
|
||||
background: -moz-linear-gradient(#FFF 50%, #F3F3F3 55%);
|
||||
background: -webkit-linear-gradient(#FFF 50%, #F3F3F3 55%);
|
||||
background: linear-gradient(#FFF 50%, #F3F3F3 55%);
|
||||
display: block;
|
||||
margin: 0;
|
||||
@ -96,7 +107,6 @@ body {
|
||||
padding: 0 10px;
|
||||
font-size: 12px;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
user-select: none;
|
||||
cursor: default;
|
||||
border-right: 1px solid #CCC;
|
||||
@ -106,7 +116,7 @@ body {
|
||||
white-space: nowrap;
|
||||
position: relative;
|
||||
}
|
||||
@-webkit-keyframes slide-out {
|
||||
@keyframes slide-out {
|
||||
from {
|
||||
margin-left: -270px;
|
||||
opacity: 0;
|
||||
@ -116,7 +126,7 @@ body {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@-moz-keyframes slide-out {
|
||||
@keyframes slide-out {
|
||||
from {
|
||||
margin-left: -270px;
|
||||
opacity: 0;
|
||||
@ -127,12 +137,9 @@ body {
|
||||
}
|
||||
}
|
||||
.breadcrumbTrailItem:not(:first-child) {
|
||||
-moz-animation: slide-out;
|
||||
-moz-animation-duration: 400ms;
|
||||
-moz-animation-timing-function: ease-out;
|
||||
-webkit-animation: slide-out;
|
||||
-webkit-animation-duration: 400ms;
|
||||
-webkit-animation-timing-function: ease-out;
|
||||
animation: slide-out;
|
||||
animation-duration: 400ms;
|
||||
animation-timing-function: ease-out;
|
||||
}
|
||||
.breadcrumbTrailItem.selected {
|
||||
background: linear-gradient(#E5E5E5 50%, #DADADA 55%);
|
||||
@ -141,10 +148,8 @@ body {
|
||||
background: linear-gradient(#F2F2F2 50%, #E6E6E6 55%);
|
||||
}
|
||||
.breadcrumbTrailItem.deleted {
|
||||
-moz-transition: 400ms ease-out;
|
||||
-moz-transition-property: opacity, margin-left;
|
||||
-webkit-transition: 400ms ease-out;
|
||||
-webkit-transition-property: opacity, margin-left;
|
||||
transition: 400ms ease-out;
|
||||
transition-property: opacity, margin-left;
|
||||
opacity: 0;
|
||||
margin-left: -270px;
|
||||
}
|
||||
@ -199,7 +204,6 @@ body {
|
||||
}
|
||||
.sideBar {
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@ -246,8 +250,6 @@ body {
|
||||
right: 0;
|
||||
left: 0;
|
||||
border-bottom: 1px solid #CCC;
|
||||
background: -moz-linear-gradient(#EEE, #CCC);
|
||||
background: -webkit-linear-gradient(#EEE, #CCC);
|
||||
background: linear-gradient(#EEE, #CCC);
|
||||
}
|
||||
.histogramHilite {
|
||||
@ -287,8 +289,6 @@ body {
|
||||
text-indent: 8px;
|
||||
}
|
||||
.fileListItem.selected {
|
||||
background: -moz-linear-gradient(#4B91D7 1px, #5FA9E4 1px, #5FA9E4 2px, #58A0DE 3px, #2B70C7 39px, #2763B4 39px);
|
||||
background: -webkit-linear-gradient(#4B91D7 1px, #5FA9E4 1px, #5FA9E4 2px, #58A0DE 3px, #2B70C7 39px, #2763B4 39px);
|
||||
background: linear-gradient(#4B91D7 1px, #5FA9E4 1px, #5FA9E4 2px, #58A0DE 3px, #2B70C7 39px, #2763B4 39px);
|
||||
color: #FFF;
|
||||
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
||||
@ -313,10 +313,8 @@ body {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
background: rgba(120, 120, 120, 0.2);
|
||||
-moz-transition: 200ms ease-in-out;
|
||||
-moz-transition-property: visibility, opacity;
|
||||
-webkit-transition: 200ms ease-in-out;
|
||||
-webkit-transition-property: visibility, opacity;
|
||||
transition: 200ms ease-in-out;
|
||||
transition-property: visibility, opacity;
|
||||
}
|
||||
.busyCover.busy {
|
||||
visibility: visible;
|
||||
@ -330,7 +328,6 @@ body {
|
||||
margin: -12px;
|
||||
}
|
||||
label {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
}
|
||||
.videoPane {
|
||||
|
Loading…
x
Reference in New Issue
Block a user