mirror of
https://github.com/codex-team/editor.js
synced 2026-03-17 16:10:07 +01:00
1) improved blocks transmition. We can switch contenteditable elements by clicking arrow buttons. 2) Refactoring (Removing) blocks. When backspace key pressed and input is empty, we can remove from DOM this element
23 lines
494 B
CSS
23 lines
494 B
CSS
/**
|
|
* Plugin styles
|
|
*/
|
|
/** H e a d e r - settings */
|
|
.ce_plugin_header--settings{
|
|
white-space: nowrap;
|
|
/*padding-right: 10px; */
|
|
}
|
|
.ce_plugin_header--caption{
|
|
color: #b9c2c2;
|
|
}
|
|
.ce_plugin_header--select_button{
|
|
display: inline-block;
|
|
margin-left: 40px;
|
|
border-bottom: 1px solid #c3d5ed;
|
|
padding-bottom: 2px;
|
|
color: #5399d4;
|
|
cursor: pointer;
|
|
}
|
|
.ce_plugin_header--select_button:hover{
|
|
border-bottom-color: #f6d8da;
|
|
color: #cc7d74;
|
|
}
|