imageuploadprogress.css 593 B

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