| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*
- * 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-form__header {
- font-weight: bold;
- padding: 0 var(--ck-spacing-large);
- height: 38px;
- line-height: 38px;
- border-bottom: 1px solid var(--ck-color-base-border);
- }
- & .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%;
- }
- }
- }
- & .ck-form__row {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- justify-content: space-between;
- padding: var(--ck-spacing-standard) var(--ck-spacing-large) 0;
- /* Ignore labels that work as fieldset legends */
- & > *:not(.ck-label) {
- flex-grow: 1;
- & + * {
- padding-left: var(--ck-spacing-large);
- }
- }
- &.ck-table-form__action-row {
- margin-top: var(--ck-spacing-large);
- & .ck-button-save,
- & .ck-button-cancel {
- justify-content: center;
- }
- & .ck-button .ck-button__label {
- color: var(--ck-color-text);
- }
- }
- }
- }
|