ckeditor5-image-upload-base64
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
114 lines (99 loc) • 3.17 kB
CSS
/*
* Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
.ck .ck-widget {
/*
* Styles of the type around buttons
*/
& .ck-widget__type-around__button {
display: block;
position: absolute;
overflow: hidden;
z-index: var(--ck-z-default);
& svg {
position: absolute;
top: 50%;
left: 50%;
z-index: calc(var(--ck-z-default) + 2);
}
&.ck-widget__type-around__button_before {
/* Place it in the middle of the outline */
top: calc(-0.5 * var(--ck-widget-outline-thickness));
left: min(10%, 30px);
transform: translateY(-50%);
}
&.ck-widget__type-around__button_after {
/* Place it in the middle of the outline */
bottom: calc(-0.5 * var(--ck-widget-outline-thickness));
right: min(10%, 30px);
transform: translateY(50%);
}
}
/*
* Styles for the buttons when:
* - the widget is selected,
* - or the button is being hovered (regardless of the widget state).
*/
&.ck-widget_selected > .ck-widget__type-around > .ck-widget__type-around__button,
& > .ck-widget__type-around > .ck-widget__type-around__button:hover {
&::after {
content: "";
display: block;
position: absolute;
top: 1px;
left: 1px;
z-index: calc(var(--ck-z-default) + 1);
}
}
/*
* Styles for the horizontal "fake caret" which is displayed when the user navigates using the keyboard.
*/
& > .ck-widget__type-around > .ck-widget__type-around__fake-caret {
display: none;
position: absolute;
left: 0;
right: 0;
}
/*
* When the widget is hovered the "fake caret" would normally be narrower than the
* extra outline displayed around the widget. Let's extend the "fake caret" to match
* the full width of the widget.
*/
&:hover > .ck-widget__type-around > .ck-widget__type-around__fake-caret {
left: calc( -1 * var(--ck-widget-outline-thickness) );
right: calc( -1 * var(--ck-widget-outline-thickness) );
}
/*
* Styles for the horizontal "fake caret" when it should be displayed before the widget (backward keyboard navigation).
*/
&.ck-widget_type-around_show-fake-caret_before > .ck-widget__type-around > .ck-widget__type-around__fake-caret {
top: calc( -1 * var(--ck-widget-outline-thickness) - 1px );
display: block;
}
/*
* Styles for the horizontal "fake caret" when it should be displayed after the widget (forward keyboard navigation).
*/
&.ck-widget_type-around_show-fake-caret_after > .ck-widget__type-around > .ck-widget__type-around__fake-caret {
bottom: calc( -1 * var(--ck-widget-outline-thickness) - 1px );
display: block;
}
}
/*
* Integration with the read-only mode of the editor.
*/
.ck.ck-editor__editable.ck-read-only .ck-widget__type-around {
display: none;
}
/*
* Integration with the restricted editing mode (feature) of the editor.
*/
.ck.ck-editor__editable.ck-restricted-editing_mode_restricted .ck-widget__type-around {
display: none;
}
/*
* Integration with the #isEnabled property of the WidgetTypeAround plugin.
*/
.ck.ck-editor__editable.ck-widget__type-around_disabled .ck-widget__type-around {
display: none;
}