editor.js/src/styles/toolbox.css
Taly 3d03461dc0
Header plugin (#281)
* 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
2018-07-16 18:51:41 +03:00

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;*/
/*}*/
}
}