43 lines
740 B
CSS
43 lines
740 B
CSS
.form-control{
|
|
width: 100% !important;
|
|
margin-bottom: 1em !important;
|
|
margin-top: 1em !important;
|
|
}
|
|
|
|
.note-editor {
|
|
width: 100% !important;
|
|
min-height: 65vh !important;
|
|
}
|
|
|
|
.note-editable {
|
|
min-height: 65vh !important;
|
|
}
|
|
|
|
div.note-toolbar{
|
|
background-color: #e9ecef;
|
|
padding: 1em !important;
|
|
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 999; /* para que esté por encima del contenido */
|
|
padding: 1em !important;
|
|
}
|
|
|
|
div.note-editing-area {
|
|
background-color: white !important;
|
|
}
|
|
|
|
/* aplica en la sección de edición del post */
|
|
#btn-cancel{
|
|
margin-left: 1em !important;
|
|
}
|
|
|
|
/* IMPORTANTE, UNA ANIMACIÓN DE AOS INTEFIERE CON SUMMERNOTE */
|
|
div.note-modal-backdrop {
|
|
z-index: 1 !important;
|
|
display: none !important;
|
|
}
|
|
|
|
|
|
|