晚上 #折腾 了 Vivaldi 的一些自定义样式,现在基本是完美复刻了 Firefox 的外观了。

用到的几行 custom CSS:

/* remove the glow around favicon */
.tab.active .favicon {
filter: none !important;
}

/* remove the black line under the address bar. */
.address-top .toolbar-mainbar:after {
content: unset;
}

/* add accent color to active tab tile */
#browser .tab-position .tab.active.active {box-shadow:inset 0px 2px 0px 0px var(--colorHighlightBg);}

#apps