Remove Aloha-Editor Blue Focus Outline -


i'm new aloha (wysiwyg) editor , know how remove/disable blue outline editing field on focus.

i've managed disable yellow highlight outlines, couldn't find way disable blue on focus border outline.

any friendly advice?

thanks.

this blue outline made "highlighteditables" plugin's css src/plugins/common/highlighteditables/css/highlighteditables.css:

.aloha-editable-active, .aloha-editable-active[contenteditable=true]:focus {     outline: #80b5f2 solid 5px !important; } 

check when running inspector in web browser, selecting element , disabling style helps.

note ugly programming style !important :(

unfortunately, can can choose plugins load choose javascript, css of plugins enabled during build merged aloha.css , loaded.

one way fix build editor yourself. basic introduction described in section "4.3 customized builds" of develop aloha editor guide.

as building aloha requires effort, may interested in quick workaround using inline style:

outline: none !important; 

for element have problem with. note !important keyword - required.


Comments

Popular posts from this blog

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

php - joomla get content in onBeforeCompileHead function -