mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
Fix minor logger quirks as per feedback
This commit is contained in:
parent
84818fcd84
commit
86e5d0384c
@ -474,7 +474,7 @@ body[dir="rtl"] #modalOverlay > div > div:nth-of-type(2) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#netFilteringDialog {
|
#netFilteringDialog {
|
||||||
font-size: 90%;
|
font-size: 95%;
|
||||||
}
|
}
|
||||||
#netFilteringDialog a {
|
#netFilteringDialog a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@ -871,7 +871,7 @@ body[dir="rtl"] #loggerSettingsDialog ul {
|
|||||||
background-color: lightblue;
|
background-color: lightblue;
|
||||||
}
|
}
|
||||||
#loggerExportDialog .output {
|
#loggerExportDialog .output {
|
||||||
font: x-small mono;
|
font: smaller mono;
|
||||||
height: 60vh;
|
height: 60vh;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
|
@ -193,6 +193,17 @@ const LogEntry = function(details) {
|
|||||||
this[prop] = details[prop];
|
this[prop] = details[prop];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// TODO: Shouldn't this be done in µBlock.filteringContext?
|
||||||
|
// Need to evaluate.
|
||||||
|
if ( this.tabDomain === '' ) {
|
||||||
|
this.tabDomain = this.tabHostname;
|
||||||
|
}
|
||||||
|
if ( this.docDomain === '' ) {
|
||||||
|
this.docDomain = this.docHostname;
|
||||||
|
}
|
||||||
|
if ( this.domain === '' ) {
|
||||||
|
this.domain = this.hostname;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
LogEntry.prototype = {
|
LogEntry.prototype = {
|
||||||
dead: false,
|
dead: false,
|
||||||
|
Loading…
Reference in New Issue
Block a user