| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- :root {
- --ck-html-embed-content-width: calc(100% - 1.5 * var(--ck-icon-size));
- --ck-html-embed-source-height: 10em;
- --ck-html-embed-content-min-height: calc(var(--ck-icon-size) + var(--ck-spacing-standard));
- }
- /* The feature container. */
- .ck-widget.raw-html-embed {
- font-size: var(--ck-font-size-base);
- & .raw-html-embed__content-wrapper {
- padding: var(--ck-spacing-standard);
- }
- /* The switch mode button wrapper. */
- & .raw-html-embed__buttons-wrapper {
- top: var(--ck-spacing-standard);
- right: var(--ck-spacing-standard);
- & .ck-button.raw-html-embed__save-button {
- color: var(--ck-color-button-save);
- }
- & .ck-button.raw-html-embed__cancel-button {
- color: var(--ck-color-button-cancel);
- }
- & .ck-button:not(:first-child) {
- margin-top: var(--ck-spacing-small);
- }
- }
- /* The edit source element. */
- & .raw-html-embed__source {
- box-sizing: border-box;
- height: var(--ck-html-embed-source-height);
- width: var(--ck-html-embed-content-width);
- resize: none;
- min-width: 0;
- padding: var(--ck-spacing-standard);
- font-family: monospace;
- tab-size: 4;
- white-space: pre-wrap;
- font-size: var(--ck-font-size-base); /* Safari needs this. */
- &[disabled] {
- background: hsl(0deg 0% 97%);
- color: hsl(0deg 0% 56%);
- }
- }
- /* Using the feature with previews enabled. */
- &.raw-html-embed_preview_enabled {
- /* The preview data container. */
- & .raw-html-embed__preview {
- overflow: hidden;
- box-sizing: border-box;
- width: var(--ck-html-embed-content-width);
- min-height: var(--ck-html-embed-content-min-height);
- text-align: center;
- & > table {
- margin-left: auto;
- margin-right: auto;
- }
- /* Disable all mouse interaction as long as the editor is not read–only. */
- @nest .ck-editor__editable:not(.ck-read-only) & {
- pointer-events: none;
- }
- }
- /* Mode: preview the HTML. */
- &.raw-html-embed_preview_visible {
- background-color: var(--ck-color-base-foreground);
- }
- }
- }
|