Skip to content

Commit

Permalink
fix: remove input focus outline (webkit)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyfung1031 authored and cvzi committed Sep 28, 2023
1 parent 85bd8c4 commit 25b95e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion YoutubeMusicGeniusLyrics.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function addCss () {
#lyricscontainer.geniusSearch {
background:#212121;
}
#lyricscontainer.geniusSearch a:link, #lyricscontainer.geniusSearch a:visited{
#lyricscontainer.geniusSearch a:link, #lyricscontainer.geniusSearch a:visited {
color:#909090;
transition:color 300ms;
text-decoration:none;
Expand All @@ -123,6 +123,9 @@ function addCss () {
padding:7px;
min-width: 60%;
}
input.geniussearchinput:focus {
outline:0;
}
`
document.head.appendChild(style)
}
Expand Down

0 comments on commit 25b95e4

Please sign in to comment.