@ckeditor/ckeditor5-style
Version:
Style feature for CKEditor 5.
30 lines (25 loc) • 653 B
CSS
/*
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
:root {
--ck-style-panel-columns: 3;
}
.ck.ck-style-panel .ck-style-grid {
display: grid;
grid-template-columns: repeat(var(--ck-style-panel-columns),auto);
justify-content: start;
& .ck-style-grid__button {
display: flex;
justify-content: space-between;
flex-direction: column;
& .ck-style-grid__button__preview {
display: flex;
align-content: center;
justify-content: flex-start;
align-items: center;
flex-grow: 1;
flex-basis: 100%;
}
}
}