link-btn gets ugly focus border in chrome on click
See original GitHub issueChrome version: Version 40.0.2214.115 m;
JSFiddle: http://jsfiddle.net/g4t960rw/2/
Corrected by the following css:
.btn-link:focus,
.btn-link:active:focus{
outline:none;
}
.btn-link:focus{
text-decoration:none;
}
.btn-link:hover{
text-decoration:underline;
}
Issue Analytics
- State:
- Created 9 years ago
- Reactions:1
- Comments:8 (2 by maintainers)
Top Results From Across the Web
css - How to reset / remove chrome's input highlighting / focus ...
<p>Click in the white space, then press the "Tab" key. ... You can then control the focus border color either individually by element, ......
Read more >How to disable the mega ugly focus border around input fields?
Till the most recent Chrome version this could be disable with a flag, but now even that is no more and this is...
Read more >[Tip] How to Remove Black Border Outline When You Click ...
SUMMARY: When you open a webpage in Google Chrome web browser and the ... the focused boxes with a black border outline which...
Read more >101 messages from Google Code
http://chrome.google.com/extensions doesn't get webstorePrivate api bindings ... Re: Issue 52588 in chromium: Style border:none is ignored in <select> tag.
Read more >NEWS · gtk-3-24 - GitLab - GNOME
788574 HighContrast: Ugly solid black corners at bottom of MessageDialog 788575 HighContrastInverse: Windows lack visible borders, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
a:focus {outline:0; text-decoration: none;}
It worked for me. 😃
Fair enough I get your point.