Barra de herramientas de formato

Gracias por tu mensaje.

El plugin estaba roto, pero es extraño que de alguna manera funcionara para ti. Lo arreglé con prisas. Avísame si todo funciona bien ahora, en todos los navegadores.


Para todos

Tuve algunos problemas con las opciones donde elegimos qué códigos BB aparecen en la barra de herramientas. Estoy bastante ocupado en este momento, así que tuve que eliminar estas opciones por ahora. El plugin está arreglado, pero todos los botones aparecerán en la barra de herramientas, incluso si decidiste ocultarlos antes.

Hasta que tenga tiempo de arreglar todo correctamente, cualquiera puede seleccionar algunas líneas para ocultar los botones. Usa la sección de CSS en la sección Personalizar del panel de administración para agregar los códigos CSS. Puedes agregar estas líneas en:

Común: para ocultar el botón en escritorio y móvil
Escritorio: ocultar el botón solo en escritorio
Móvil: ocultar el botón solo en móvil

/* 
SOLUCIÓN TEMPORAL PARA LA BARRA DE HERRAMIENTAS DE FORMATO
USA ALGUNAS DE ESTAS LÍNEAS PARA OCULTAR
EL BOTÓN RELACIONADO EN LA BARRA DE HERRAMIENTAS
*/

/* BOTÓN DE SUBRAYADO */
.d-editor-button-bar .underline_ui_button {
    display: none;
}

/* BOTÓN DE IMAGEN */
.d-editor-button-bar .addimg_ui_button {
    display: none;
}

/* BOTÓN DE ALINEAR A LA IZQUIERDA */
.d-editor-button-bar .floatl_ui_button {
    display: none;
}

/* BOTÓN DE ALINEAR A LA IZQUIERDA */
.d-editor-button-bar .left_ui_button {
    display: none;
}

/* BOTÓN DE ALINEAR AL CENTRO */
.d-editor-button-bar .center_ui_button {
    display: none;
}

/* BOTÓN DE ALINEAR A LA DERECHA */
.d-editor-button-bar .right_ui_button {
    display: none;
}

/* BOTÓN DE JUSTIFICAR */
.d-editor-button-bar .justify_ui_button {
    display: none;
}

/* BOTÓN DE COLOR */
.d-editor-button-bar .color_ui_button {
    display: none;
}

/* BOTÓN DE TAMAÑO */
.d-editor-button-bar .size_ui_button {
    display: none;
}

Perdón por las molestias a todos, intentaré encontrar una solución lo antes posible :raised_hands:

3 Me gusta