You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The HighlightEditables css was added to the aloha.css file a few months ago, in this commit. This resulted in this css being applied even if you don't have the plugin enabled:
You can reproduce the issue by disabling the HighlightEditables plugin in one of the demos. You'll see that the blue outline still appears when the editable content is focused.
This looks really weird in my app. I would prefer for that rule to not be applied if the HighlightEditables plugin is disabled, but if you just removed "important" from the rule then that would help a lot.
The text was updated successfully, but these errors were encountered:
The HighlightEditables css was added to the aloha.css file a few months ago, in this commit. This resulted in this css being applied even if you don't have the plugin enabled:
.aloha-editable-active, .aloha-editable-active[contenteditable=true]:focus {
outline: #80B5F2 solid 5px !important;
}
You can reproduce the issue by disabling the HighlightEditables plugin in one of the demos. You'll see that the blue outline still appears when the editable content is focused.
This looks really weird in my app. I would prefer for that rule to not be applied if the HighlightEditables plugin is disabled, but if you just removed "important" from the rule then that would help a lot.
The text was updated successfully, but these errors were encountered: