Hi guys,
I'm searching for a way to disable the outline of the links in splunk classic dashboard. There was a similar question on the community, but i'm not understanding the answers.
In my css i'm trying with:
a:focus{ outline: none !important}
but it doesn't work.
Thank you!
Hi @AleCanzo ,
Can you try this below
a:focus {
outline: none !important;
box-shadow: none !important;
}
Hi @AleCanzo ,
Can you try this below
a:focus {
outline: none !important;
box-shadow: none !important;
}
Thank you @thahir, it's working. But when i try to navigate the page with TAB, the outlines are hidden... I'm taking your answer as correct, hoping no developer is going to hate me 😉
Thank you,
AleCanzo.
If its affecting things outside the dashboard then you could set it to only apply to links within your dashboard area with:
div.dashboard a:focus {
outline: none !important;
box-shadow: none !important;
}
🌟 Did this answer help you? If so, please consider:
Your feedback encourages the volunteers in this community to continue contributing