1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-05 21:03:17 +12:00

Make 1st and 3rd columns in logger clickable

These columns are unlikely to be used for text
selection, so there is no harm to make them
clickable.
This commit is contained in:
Raymond Hill 2019-12-25 13:10:26 -05:00
parent 035f3f53a2
commit 5c06fed370
No known key found for this signature in database
GPG key ID: 25E1490B761470C2
2 changed files with 3 additions and 1 deletions

View file

@ -384,6 +384,8 @@ body[dir="rtl"] #vwRenderer .logEntry > div > span:first-child {
font: 12px monospace;
text-align: center;
}
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(1),
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(3),
#vwRenderer .logEntry > div.canDetails:hover > span:nth-of-type(6) {
background: rgba(0, 0, 255, 0.1);
cursor: zoom-in;

View file

@ -1129,7 +1129,7 @@ const reloadTab = function(ev) {
uDom('#netInspector').on(
'click',
'.canDetails > span:nth-of-type(6)',
'.canDetails > span:nth-of-type(1),.canDetails > span:nth-of-type(3),.canDetails > span:nth-of-type(6)',
ev => { toggleOn(ev); }
);
})();