Add more columns in logger for bringing up entry details

This commit is contained in:
Raymond Hill 2023-01-05 09:08:26 -05:00
parent 7b8c096270
commit 5e45c7249a
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 3 additions and 4 deletions

View File

@ -324,9 +324,7 @@ body[dir="rtl"] #vwRenderer .logEntry > div > span:first-child {
padding-right: 0.3em; padding-right: 0.3em;
text-align: center; text-align: center;
} }
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(2), #vwRenderer .logEntry > div.canDetails:hover > span:not(:nth-of-type(4)):not(:nth-of-type(8)) {
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(3),
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(5) {
background: rgba(0, 0, 255, 0.1); background: rgba(0, 0, 255, 0.1);
cursor: zoom-in; cursor: zoom-in;
} }

View File

@ -102,6 +102,7 @@ const onStartMovingWidget = (( ) => {
mx1 = ev.pageX; mx1 = ev.pageX;
my1 = ev.pageY; my1 = ev.pageY;
timer = self.requestAnimationFrame(move); timer = self.requestAnimationFrame(move);
eatEvent(ev);
}; };
const stop = ev => { const stop = ev => {
@ -1988,7 +1989,7 @@ dom.on(document, 'keydown', ev => {
dom.on( dom.on(
'#netInspector', '#netInspector',
'click', 'click',
'.canDetails > span:nth-of-type(2),.canDetails > span:nth-of-type(3)', '.canDetails > span:not(:nth-of-type(4)):not(:nth-of-type(8))',
ev => { toggleOn(ev); } ev => { toggleOn(ev); }
); );
})(); })();