hoothin / SearchJumper

Yet another awesome browser extension for switching search engines, search everything (selection text / image / link / find in page) on any engine with a simple right click or a variety of menus and shortcuts. Build with React & Material-UI. (WIP).
https://hoothin.github.io/SearchJumper
GNU General Public License v3.0
775 stars 41 forks source link

建议搜索引擎图标去掉圆形蒙版 #137

Closed gituser056391 closed 3 months ago

gituser056391 commented 3 months ago

这两天刚更新了搜索酱crx,发现自定义的十多个搜索引擎图标(大多是不规则形状)都被削成了圆形,看起来不是很和谐,猜测是图标被套上了一层圆形蒙版,感觉这个改动是画蛇添足了。希望可以去掉这层蒙版,或者在哪里可以关掉蒙版?我没有找到选项。

hoothin commented 3 months ago

导出设置-自定义样式,把下面的样式粘贴进去,点击保存。可以自己修改来获得个性化外观

.search-jumper-searchBar {
    border-radius: 3px !important;
}
.search-jumper-type, .search-jumper-logo {
    border-radius: 3px !important;
}
.search-jumper-word {
    border-radius: 3px !important;
}
.searchJumperExpand>svg {
    background: black;
    border-radius: 3px;
}
.search-jumper-logoBtnSvg {
    background: white;
    border-radius: 3px;
}
#search-jumper.funcKeyCall .search-jumper-word {
    border-radius: 3px !important;
}
.search-jumper-type img {
    border-radius: 0px;
}