style: 样式微调

This commit is contained in:
fofolee 2022-01-05 10:49:03 +08:00
parent 17f795e238
commit 34814db352
2 changed files with 6 additions and 1 deletions

View File

@ -155,7 +155,7 @@ let showCommandByType = (features, isActivated) => {
rules.split(',').forEach(r => {
he = window.htmlEncode(r, true)
// 关键词可以点击跳转
kws = `<a style="color: #cddc39;background: #0000;" href="javascript:utools.redirect('${he}')">${he}</a>`
kws = `<a href="javascript:utools.redirect('${he}')">${he}</a>`
qcType += `<span class="keyword">${kws}</span>`;
});
qcType += `</div>`

View File

@ -207,6 +207,11 @@ body {
margin-right: 5px;
}
#options .keyword a {
color: #ff6c9e;
background: #0000;
}
#options .keyword.re {
color: rgb(105, 40, 97);
}