How to remove blue glow / border around spinner?

  • ashleywilson26
    Asked on May 29, 2015 at 7:07 AM

    Howdy guys,

    I'm having a bit of a fight with the 'spinner'...

    I've tried every CSS option and class I can think of to remove the blue glow from around the spinner when clicking the arrow, but no matter what I've tried, it just won't go.

    Can anyone offer up any suggestions please?

    How to remove blue glow / border around spinner? Image 1 Screenshot 20

  • Sammy
    Replied on May 29, 2015 at 10:02 AM

    Hallos,

    You can remove the outline by overriding the browser based input focus using the following CSS snippet

    *:focus {
      outline: none !important;
    }

     
    Kindly let me know if you need further assistance