summaryrefslogtreecommitdiff
path: root/lib/ckeditor5/sample/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ckeditor5/sample/styles.css')
-rw-r--r--lib/ckeditor5/sample/styles.css20
1 files changed, 15 insertions, 5 deletions
diff --git a/lib/ckeditor5/sample/styles.css b/lib/ckeditor5/sample/styles.css
index c7cbf76..1ec0e02 100644
--- a/lib/ckeditor5/sample/styles.css
+++ b/lib/ckeditor5/sample/styles.css
@@ -1,5 +1,5 @@
1/** 1/**
2 * @license Copyright (c) 2014-2022, CKSource Holding sp. z o.o. All rights reserved. 2 * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * This file is licensed under the terms of the MIT License (see LICENSE.md). 3 * This file is licensed under the terms of the MIT License (see LICENSE.md).
4 */ 4 */
5 5
@@ -32,10 +32,6 @@ main .ck-editor[role='application'] .ck.ck-content,
32 padding: 1.5em 2em; 32 padding: 1.5em 2em;
33} 33}
34 34
35main .ck-editor[role='application'] {
36 overflow: auto;
37}
38
39.ck.ck-editor__editable { 35.ck.ck-editor__editable {
40 background: #fff; 36 background: #fff;
41 border: 1px solid hsl(0, 0%, 70%); 37 border: 1px solid hsl(0, 0%, 70%);
@@ -347,6 +343,20 @@ body[data-revision-history='true'] .ck.ck-pagination-view-line::after {
347 right: unset !important; 343 right: unset !important;
348} 344}
349 345
346/* --------- DOCUMENT OUTLINE FEATURE ------------------------------------------------------------------------------ */
347
348.document-outline-container {
349 max-height: 80vh;
350 overflow-y: auto;
351 margin-bottom: 1em;
352}
353
354.document-outline-container .ck.ck-document-outline {
355 min-height: 100%;
356 border: 1px solid var(--ck-color-base-border);
357 background-color: hsl(0, 0%, 96%);
358}
359
350/* --------- SAMPLE GENERIC STYLES (not related to CKEditor) ------------------------------------------------------- */ 360/* --------- SAMPLE GENERIC STYLES (not related to CKEditor) ------------------------------------------------------- */
351body, html { 361body, html {
352 padding: 0; 362 padding: 0;