Remove dotted outline for links #1375

Closed
opened 2026-02-05 00:43:51 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @moucho on GitHub (Sep 21, 2019).

Describe the feature you'd like
Remove the dotted outline on links, buttons, etc when clicking/focusing on them.

Describe the benefits this feature would bring to BookStack users
Better UI (IMO)

Additional context
a {
outline: 0;
}

Originally created by @moucho on GitHub (Sep 21, 2019). **Describe the feature you'd like** Remove the dotted outline on links, buttons, etc when clicking/focusing on them. **Describe the benefits this feature would bring to BookStack users** Better UI (IMO) **Additional context** a { outline: 0; }
Author
Owner

@james-geiger commented on GitHub (Sep 21, 2019):

Hi @moucho

This was done in order to improve accessibility by default. If, for some reason, your users won’t require the additional level of accessibility consideration, the commit outlining what was changed is b27a5c7fb8

You can override this by adding

*:focus {
    outline-style: none;
}

in a style tag in the Custom HTML Head Content in BookStack settings.

@james-geiger commented on GitHub (Sep 21, 2019): Hi @moucho This was done in order to improve accessibility by default. If, for some reason, your users won’t require the additional level of accessibility consideration, the commit outlining what was changed is https://github.com/BookStackApp/BookStack/commit/b27a5c7fb876c74c676eb9114383c25d82eb87fb You can override this by adding ``` *:focus { outline-style: none; } ``` in a style tag in the Custom HTML Head Content in BookStack settings.
Author
Owner

@moucho commented on GitHub (Sep 21, 2019):

@james-geiger thanks for your suggestion, I thought it was a change in the new layout, not something related to accessibility.

@moucho commented on GitHub (Sep 21, 2019): @james-geiger thanks for your suggestion, I thought it was a change in the new layout, not something related to accessibility.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/BookStack#1375