mirror of
https://github.com/codex-team/editor.js
synced 2026-03-16 15:45:47 +01:00
* header initial * fix styles * eslint fix * add appendCallback * add comments * update styles * add svgs * highlight settings buttons * do not show text plugin in the toolbar * remove svg * Fixing caret behaviour. (#282) Plugins can change their state so that affect on Block's pluginsContent property which is in memory. * remove useless code * fix merge
24 lines
377 B
CSS
24 lines
377 B
CSS
/**
|
|
* Plugin styles
|
|
*/
|
|
.ce-header {
|
|
padding: .7em 0;
|
|
margin: 0;
|
|
line-height: 1.4em;
|
|
outline: none;
|
|
}
|
|
|
|
.ce-header p,
|
|
.ce-header div{
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
/**
|
|
* Styles for Plugin icon in Toolbar
|
|
*/
|
|
.cdx-header-icon {
|
|
background-image: url('icon.svg');
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|