| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*
- * 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: 4em;
- }
- }
- }
- & .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-cell-properties-form__action-row {
- & .ck-button-save,
- & .ck-button-cancel {
- justify-content: center;
- }
- & .ck-button .ck-button__label {
- color: var(--ck-color-text);
- }
- }
- }
- }
|