editor.js/src/styles/inline-toolbar.css
Peter Savchenko b1b582b150
feat(icons): codex icons package is used instead of svg sprite (#2173)
* chore(icons): migrating to the coded icon pack

* conversion toolbar

* inline toolbar, part 1

* inline-link tool has the new icons

* added a test for creating a link by Enter keydown in link input

* rm last icons, svg sprite, loaders

* rollback .ce-settings styles

* Update CHANGELOG.md

* Update settings.json
2022-11-25 22:26:23 +04:00

132 lines
2.1 KiB
CSS

.ce-inline-toolbar {
@apply --overlay-pane;
transform: translateX(-50%) translateY(8px) scale(0.9);
opacity: 0;
visibility: hidden;
transition: transform 150ms ease, opacity 250ms ease;
will-change: transform, opacity;
top: 0;
left: 0;
z-index: 3;
&--showed {
opacity: 1;
visibility: visible;
transform: translateX(-50%)
}
&--left-oriented {
transform: translateX(-23px) translateY(8px) scale(0.9);
}
&--left-oriented&--showed {
transform: translateX(-23px);
}
&--right-oriented {
transform: translateX(-100%) translateY(8px) scale(0.9);
margin-left: 23px;
}
&--right-oriented&--showed {
transform: translateX(-100%);
}
[hidden] {
display: none !important;
}
&__toggler-and-button-wrapper {
display: flex;
width: 100%;
padding: 0 6px;
}
&__buttons {
display: flex;
}
&__actions {
}
&__dropdown {
display: flex;
padding: 6px;
margin: 0 6px 0 -6px;
align-items: center;
cursor: pointer;
border-right: 1px solid var(--color-gray-border);
box-sizing: border-box;
&:hover {
background: var(--bg-light);
}
&--hidden {
display: none;
}
&-content,
&-arrow {
display: flex;
svg {
width: var(--icon-size);
height: var(--icon-size);
}
}
}
&__shortcut {
opacity: 0.6;
word-spacing: -3px;
margin-top: 3px;
}
}
.ce-inline-tool {
@apply --toolbar-button;
border-radius: 0;
line-height: normal;
padding: 0 1px !important;
&--link {
.icon--unlink {
display: none;
}
}
&--unlink {
.icon--link {
display: none;
}
.icon--unlink {
display: inline-block;
margin-bottom: -1px;
}
}
&-input {
outline: none;
border: 0;
border-radius: 0 0 4px 4px;
margin: 0;
font-size: 13px;
padding: 10px;
width: 100%;
box-sizing: border-box;
display: none;
font-weight: 500;
border-top: 1px solid rgba(201,201,204,.48);
&::placeholder {
color: var(--grayText);
}
&--showed {
display: block;
}
}
}