mirror of
https://github.com/codex-team/editor.js
synced 2026-03-17 08:05: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
35 lines
905 B
CSS
35 lines
905 B
CSS
.ce-toolbox {
|
|
position: absolute;
|
|
visibility: hidden;
|
|
transition: opacity 100ms ease;
|
|
will-change: opacity;
|
|
|
|
&--opened {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
&__button {
|
|
display: inline-block;
|
|
list-style: none;
|
|
margin: 0;
|
|
background-color: var(--bg-light);
|
|
width: var(--toolbar-buttons-size);
|
|
height: var(--toolbar-buttons-size);
|
|
border-radius: 30px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
line-height: var(--toolbar-buttons-size);
|
|
|
|
/*&::before {*/
|
|
/*content: attr(title);*/
|
|
/*font-size: 22px;*/
|
|
/*font-weight: 500;*/
|
|
/*letter-spacing: 1em;*/
|
|
/*font-variant-caps: all-small-caps;*/
|
|
/*padding-left: 11.5px;*/
|
|
/*margin-top: -1px;*/
|
|
/*display: inline-block;*/
|
|
/*}*/
|
|
}
|
|
}
|