ckeditor/ckeditor5-theme-lark

View on GitHub
theme/ckeditor5-table/form.css

Summary

Maintainability
Test Coverage
/*
 * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
 */

.ck.ck-form {
    padding: 0 0 var(--ck-spacing-large);

    &:focus {
        /* https://github.com/ckeditor/ckeditor5-link/issues/90 */
        outline: none;
    }

    & .ck.ck-input-text {
        min-width: 100%;
        width: 0;
    }

    & .ck.ck-dropdown {
        min-width: 100%;

        & .ck-dropdown__button {
            &:not(:focus) {
                border: 1px solid var(--ck-color-base-border);
            }

            & .ck-button__label {
                width: 100%;
            }
        }
    }
}