My goal is to change the border color of the summernote div to a light blue when it is focused, and then set it back to neutral when it loses focus.
To remove the shadow around the div, I used the following CSS code:
div.note-editor.panel.panel-default {
box-shadow: none;
}
However, I am struggling to style the div when it is in a focused state. Neither using .focused nor :focus has helped me achieve this. Any suggestions would be appreciated!