linkballoonpanel.scss 451 B

123456789101112131415161718192021222324
  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-balloon-panel {
  4. padding: ck-spacing();
  5. // Box to accommodate buttons.
  6. .ck-link-form-actions {
  7. clear: both;
  8. padding-top: ck-spacing();
  9. .ck-button {
  10. float: right;
  11. & + .ck-button {
  12. margin-right: ck-spacing( 'medium' );
  13. & + .ck-button {
  14. float: left;
  15. }
  16. }
  17. }
  18. }
  19. }