linkform.scss 576 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  2. // For licensing, see LICENSE.md or http://ckeditor.com/license
  3. @import '~ckeditor5-theme-lark/theme/helpers/_spacing';
  4. .ck-link {
  5. &-form {
  6. padding: ck-spacing( 'large' );
  7. overflow: hidden;
  8. .ck-label {
  9. margin-bottom: ck-spacing( 'small' );
  10. }
  11. &__actions {
  12. clear: both;
  13. padding-top: ck-spacing( 'large' );
  14. .ck-button {
  15. float: right;
  16. & + .ck-button {
  17. margin-right: ck-spacing( 'medium' );
  18. & + .ck-button {
  19. float: left;
  20. }
  21. }
  22. }
  23. }
  24. }
  25. }