I am looking to achieve this: http://getbootstrap.com/javascript/#popovers-examples - scroll to the "live Demo" and hit the red popover button, in Chrome on OS X.... It's perfect beautiful
Now go here (the problem child): http://yoyo.io/javascript/#popovers - it outlines blue, aaaargh.
If you inspect you will see a litany of CSS efforts from me to remove this! It looks correct in Safari and Firefox but a no go in Chrome!
Anyone - what am I overlooking??
Many thanks in advance!
If someone is using bootstrap sass note the code is on the _reboot.scss file like this:
So if you want to keep the _reboot file I guess feel free to override with plain css instead of trying to look for a variable to change.
That CSS goes from this file "tab-focus.less" in mixins folder (it could be difficult to find, because mixins are not shown at chrome dev-tools). So you should edit this:
If the above answers still do not work, add this:
.btn.active
or.btn.focus
alone cannot override Bootstrap's styles. For default theme:I see
.btn:focus
has anoutline
on it:Try changing this to:
Basically, look for any instances of
outline
on:focus
ed elements — that's what's causing it.The simplest solution is: Create a CSS file and type this: