linkform.scss 679 B

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