| 12345678910111213141516171819202122232425262728293031323334353637 |
- // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- // For licensing, see LICENSE.md or http://ckeditor.com/license
- @import '~@ckeditor/ckeditor5-theme-lark/theme/helpers/_spacing';
- .ck-link {
- &-form {
- padding: ck-spacing( 'large' );
- overflow: hidden;
- &:focus {
- // https://github.com/ckeditor/ckeditor5-link/issues/90
- outline: none;
- }
- .ck-label {
- margin-bottom: ck-spacing( 'tiny' );
- }
- &__actions {
- clear: both;
- padding-top: ck-spacing( 'large' );
- .ck-button {
- float: right;
- & + .ck-button {
- margin-right: ck-spacing( 'medium' );
- & + .ck-button {
- float: left;
- }
- }
- }
- }
- }
- }
|