linkform.scss 519 B

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