@ckeditor/ckeditor5-theme-lark
Version:
A bright theme for CKEditor 5.
37 lines (29 loc) • 977 B
CSS
/*
* Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
@import "@ckeditor/ckeditor5-theme-lark/theme/mixins/_rounded.css";
@import "@ckeditor/ckeditor5-theme-lark/theme/mixins/_shadow.css";
.ck.ck-autocomplete {
& > .ck-search__results {
@mixin ck-rounded-corners;
@mixin ck-drop-shadow;
max-height: 200px;
overflow-y: auto;
background: var(--ck-color-base-background);
border: 1px solid var(--ck-color-dropdown-panel-border);
min-width: auto;
&.ck-search__results_n {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
/* Prevent duplicated borders between the input and the results pane. */
margin-bottom: -1px;
}
&.ck-search__results_s {
border-top-left-radius: 0;
border-top-right-radius: 0;
/* Prevent duplicated borders between the input and the results pane. */
margin-top: -1px;
}
}
}