<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * What you're currently looking at is the source code of a legally protected, proprietary software.
 * CKEditor 5 Collaboration is licensed under a commercial license and protected by copyright law. Where not otherwise indicated,
 * all CKEditor 5 Collaboration content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
 *
 * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */

:root {
	--ck-color-pagination-divider: hsl(0, 0%, 67%);
}

/*
 * Content styles.
 */

.ck.ck-pagination_enabled {
	&amp;.ck-content .page-break::after {
		display: none;
	}

	&amp;.ck-editor__editable.ck-pagination-view {
		&amp; .ck-widget__type-around {
			display: none;
		}

		/*
		 * From time to time placing page-break directly after a block element with margin causes appending a new blank page in pagination mode.
		 * Removing margin-bottom from the block element fixes that issue and the margin is not being moved to the next blank page.
		 *
		 * Identical CSS rule is also present in the page break CSS files so keep them in sync to make sure that the issue is fixed both in the
		 * editor preview and in the printed content (used by the export document plugins).
		 *
		 * See more: https://github.com/cksource/ckeditor5-commercial/issues/6289.
		 */
		&amp; *:has(+ .page-break) {
			margin-bottom: 0;
		}

		&amp; .page-break {
			padding: 0;
			margin: 0;
			break-after: column;
			display: block;
			height: 0;

			&amp; .page-break__label {
				display: none;
			}

			&amp;::after {
				display: none;
			}

		}

		&amp; .ck-table-column-resizer {
			display: none;
		}

		&amp; .table table {

			/*
			 * Tables that have overflow set to hidden are incorrectly split between pages on the chrome. Reset the overflow to initial fixes this issue.
			 *
			 * See: https://github.com/ckeditor/ckeditor5/issues/14426.
			 */
			overflow: initial;
		}
	}
}
</pre></body></html>