diff --git a/CHANGELOG.md b/CHANGELOG.md index 631c4ece..0888876e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,5 +14,5 @@ - Update socket-io 2.x to 4.x ##### 0.1.3 - - Script optimizations, improve page load speed + - Script optimizations, improve script execution speed especially on longer threads - Extra (u) download link for no reason diff --git a/gulp/res/css/style.css b/gulp/res/css/style.css index 924fe3c8..b3ee6781 100644 --- a/gulp/res/css/style.css +++ b/gulp/res/css/style.css @@ -1366,10 +1366,10 @@ row.wrap.sb .col { width: 100%; min-width: unset; } - [title], [mobiletitle] { + [title] { position:relative } - [title]:hover:after, [mobiletitle]:hover:after { + [title]:hover:after { color: white; font-size: small; border-radius: 2px; @@ -1385,10 +1385,10 @@ row.wrap.sb .col { [title]:hover:after { content:attr(title); } - [mobiletitle]:hover:after { - content:attr(mobiletitle); + .user-id[title]:hover:after { + content:"Double tap to highlight" attr(data-count); } - [title]:hover:before, [mobiletitle]:hover:before { + [title]:hover:before { content: ''; position: absolute; top: -6px; diff --git a/gulp/res/js/threadstat.js b/gulp/res/js/threadstat.js index eed46c6f..05f62cc4 100644 --- a/gulp/res/js/threadstat.js +++ b/gulp/res/js/threadstat.js @@ -15,7 +15,6 @@ window.addEventListener('DOMContentLoaded', (event) => { if (updateId && updateId !== idString) { continue; } const count = idMap.get(idString); idElems[i].setAttribute('data-count', ` (${count})`); - idElems[i].setAttribute('mobiletitle', `Double tap highlight (${count})`); idElems[i].setAttribute('title', `Double click to highlight (${count})`); } }