mirror of
https://github.com/codex-team/editor.js
synced 2026-03-16 23:55:49 +01:00
* Some new styles, used by Image Tool * update example * Update submodule * increase version * remove Simple * update some packages
68 lines
1.1 KiB
CSS
68 lines
1.1 KiB
CSS
.ce-settings {
|
|
@apply --overlay-pane;
|
|
right: 5px;
|
|
top: 35px;
|
|
min-width: 124px;
|
|
|
|
&::before{
|
|
left: auto;
|
|
right: 12px;
|
|
}
|
|
|
|
display: none;
|
|
|
|
&--opened {
|
|
display: block;
|
|
animation-duration: 0.5s;
|
|
animation-name: bounceIn;
|
|
}
|
|
|
|
&__plugin-zone {
|
|
&:not(:empty){
|
|
padding: 6px 6px 0;
|
|
}
|
|
}
|
|
|
|
&__default-zone {
|
|
&:not(:empty){
|
|
padding: 6px;
|
|
}
|
|
}
|
|
|
|
&__button {
|
|
@apply --toolbar-button;
|
|
line-height: 32px;
|
|
|
|
&--disabled {
|
|
cursor: not-allowed !important;
|
|
opacity: .3;
|
|
}
|
|
|
|
&--selected {
|
|
color: var(--color-active-icon);
|
|
}
|
|
|
|
&--delete {
|
|
transition: background-color 300ms ease;
|
|
will-change: background-color;
|
|
|
|
.icon {
|
|
transition: transform 200ms ease-out;
|
|
will-change: transform;
|
|
}
|
|
}
|
|
|
|
&--confirm {
|
|
background-color: var(--color-confirm);
|
|
color: #fff;
|
|
|
|
&:hover {
|
|
background-color: color-mod(var(--color-confirm) blackness(+5%)) !important;
|
|
}
|
|
|
|
.icon {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
}
|
|
}
|