Bug 1449165 - devtools-reps: release v0.22.0; r=Honza.

MozReview-Commit-ID: BfLLy2AVYZi

--HG--
extra : rebase_source : 83cd703eb200761df6116ac2e5029905e07d196c
This commit is contained in:
Nicolas Chevobbe 2018-04-04 17:57:35 +02:00
parent a68b7f8aea
commit 626b56fb10
2 changed files with 1392 additions and 1234 deletions

View File

@ -15,7 +15,6 @@
--node-color: var(--theme-highlight-purple); --node-color: var(--theme-highlight-purple);
--reference-color: var(--theme-highlight-blue); --reference-color: var(--theme-highlight-blue);
--comment-node-color: var(--theme-comment); --comment-node-color: var(--theme-comment);
--stack-function-color: var(--theme-highlight-red);
} }
/******************************************************************************/ /******************************************************************************/
@ -65,11 +64,14 @@
} }
.objectBox-function, .objectBox-function,
.objectBox-stackTrace,
.objectBox-profile { .objectBox-profile {
color: var(--object-color); color: var(--object-color);
} }
.objectBox-stackTrace {
color: var(--error-color);
}
.objectBox-stackTrace-grid { .objectBox-stackTrace-grid {
display: inline-grid; display: inline-grid;
grid-template-columns: auto auto; grid-template-columns: auto auto;
@ -78,14 +80,34 @@
.objectBox-stackTrace-fn::before { .objectBox-stackTrace-fn::before {
content: "\3BB"; /* The "lambda" symbol */ content: "\3BB"; /* The "lambda" symbol */
color: var(--theme-body-color);
display: inline-block; display: inline-block;
margin: 0 0.3em; margin: 0 0.3em;
} }
.objectBox-stackTrace-fn { .objectBox-stackTrace-fn {
color: var(--stack-function-color); color: var(--console-output-color);
padding-inline-start: 17px; padding-inline-start: 17px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-inline-end: 5px;
}
.objectBox-stackTrace-location {
color: var(--frame-link-source, currentColor);
direction: rtl;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
text-align: end;
}
.objectBox-stackTrace-location:hover {
text-decoration: underline;
}
.objectBox-stackTrace-location {
cursor: pointer;
} }
.objectBox-Location, .objectBox-Location,

File diff suppressed because it is too large Load Diff