Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/backend/assets/less/layout/layout.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ body.no-select {
cursor: default !important;
}

// Remove focus outline for mouse clicks, keep for keyboard navigation (Only needs to happen on Firefox)
@supports (-moz-appearance: none) {
a:focus:not(:focus-visible) {
outline: none;
}
}
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's move this to the bottom of the file under a section called Browser specific like the Screen specific section we have right now, and then recompile the assets with php artisan mix:install & php artisan winter:util compile less.

//
// Layout canvas
//
Expand Down
Loading