| 1234567891011121314151617181920212223242526272829303132 |
- /*
- * 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%;
- }
- }
- }
- }
|