Remove blue outline on popup view with CSS

pop ups are a level above the root view, so you will need to create a custom style in the stylesheet

for all popups:

.ia_popup:focus {
  outline: none !important;
}

or if you still wish for it to only work with a certain style added to the view

.ia_popup:has( .psc-YOURSTYLE):focus {
  outline: none !important;
}
5 Likes