windviki/vBookmarks

中键打开标签会打个两个窗口

Closed this issue · 5 comments

Jh623 commented

为什么不更新了呢? 那么多书签管理器就喜欢这个......

谢谢支持。主要暂时没有非常迫切的新功能需求和严重的使用障碍,几年一直平稳地用过来了:) 。如果有好的想法欢迎提出。

Jh623 commented

谢谢支持。主要暂时没有非常迫切的新功能需求和严重的使用障碍,几年一直平稳地用过来了:) 。如果有好的想法欢迎提出。

新版chrome中键打开标签会打个两个窗口, 这个可以修复么?

发现了这个问题,没有仔细调查。
目前暂时可以通过使用左键单击来代替。左键单击可以在扩展的设置页面选择是在后台还是前台打开。
如果有时间,应该可以在下个版本解决。

新版chrome中键打开标签会打个两个窗口, 这个可以修复么?

我写了个CSS可以解决这问题,在 Advanced Options 贴上就行了

li:not(.parent):hover {
text-decoration: underline;
}

a {
text-decoration: inherit;
cursor: default;
pointer-events: none;
}

li:active>a {
pointer-events: auto;
}

a:hover {
pointer-events: none !important;
}

a:focus {
pointer-events: auto !important;
}

li:hover>a:hover {
pointer-events: auto !important;
}

#search {
position: relative;
top: -3px;
margin: 0 -1px -5px -1px;
}

#search input {
padding: 6px 8px;
margin: 0;
}

::-webkit-scrollbar-track-piece {
background-color: #fff;
-webkit-border-radius: 0;
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-thumb {
height: 50px;
background-color: #999;
-webkit-border-radius: 4px;
outline: 2px solid #fff;
outline-offset: -2px;
border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
height: 50px;
background-color: #9f9f9f;
-webkit-border-radius: 4px;
}

#tree,
#results {
background: #fff;
}

a,
span {
font-family: Arial, sans-serif;
font-size: 12px;
padding-top: 3px !important;
padding-bottom: 3px !important;
text-shadow: none;
}

Fixed in a353198
去除以前的模拟中键处理即可。
多谢 @ykleungd 的CSS改进。
滚动条和搜索栏的相当不错,我将其写入默认CSS。
pointer-events: none在新版本里应该可以去掉了。