| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- .ck-link-form {
- padding: var(--ck-spacing-large);
- &:focus {
- /*https://github.com/ckeditor/ckeditor5-link/issues/90*/
- outline: none;
- }
- & .ck-input-text {
- /*https://github.com/ckeditor/ckeditor5-link/issues/145*/
- width: 100%;
- }
- & .ck-label {
- margin-bottom: var(--ck-spacing-tiny);
- }
- }
- .ck-link-form__actions {
- padding-top: var(--ck-spacing-large);
- & .ck-button {
- /*"Save" and "Cancel" buttons.*/
- & + .ck-button {
- margin-right: var(--ck-spacing-medium);
- }
- /* The "Unlink" button.*/
- &:last-child {
- /*https://github.com/ckeditor/ckeditor5-link/issues/145*/
- margin-right: calc(4 * var(--ck-spacing-medium));
- }
- }
- }
|