英文:
Change YouTube Thumb Up Color
问题
如何在Chrome扩展中使用Devtools更改YouTube上点赞SVG的颜色?
由于某种原因,它不适用于此变量:
:root
*
--yt-spec-text-primary: #1cae23
这里是YouTube点赞按钮的HTML图片:
我希望它像不喜欢按钮一样以绿色轮廓显示,并且在动画后也填充为绿色。
就像这样:
编辑:
现在它在绿色和白色之间切换,持续1秒?
编辑(2):
还尝试关闭环境模式,但不影响点赞按钮。
英文:
How can I change the color of the thumbs up SVG on YouTube in Devtools [For Chrome Ext]?
For some reason, it doesn't go with this variable:
sass
:root
*
--yt-spec-text-primary: #1cae23
Here a picture of the HTML of the YouTube Thumbs Up Button
I want it to be outlined in Green like the dislike button, and also to be filled in with green after the animation.
EDIT:
Now it goes from Green for 1 second then back to white?
EDIT (2):
Also tried turning off Ambient mode, doesn't affect Like Button.
答案1
得分: 0
我们现在可以和平生活。
我找到了解决我的问题的答案。
SASS:
.yt-spec-button-shape-next__icon
& > yt-icon
& > yt-animated-icon
filter: invert(43%) sepia(95%) saturate(702%) hue-rotate(81deg) brightness(97%) contrast(89%)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论