imageuploadprogress.css 527 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. .ck.ck-editor__editable .image {
  6. /* Showing animation. */
  7. &.ck-appear {
  8. animation: fadeIn 700ms;
  9. }
  10. }
  11. /* Upload progress bar. */
  12. .ck.ck-editor__editable .image .ck-progress-bar {
  13. height: 2px;
  14. width: 0;
  15. background: var(--ck-color-upload-bar-background);
  16. transition: width 100ms;
  17. }
  18. @keyframes fadeIn {
  19. from { opacity: 0; }
  20. to { opacity: 1; }
  21. }