8
0

imageuploadprogress.css 535 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /* Infinite progress bar default width. */
  6. :root {
  7. --ck-image-upload-progress-line-width: 30px;
  8. }
  9. .ck-content .image {
  10. position: relative;
  11. overflow: hidden;
  12. /* Infinite progress bar on top while image is read. */
  13. &.ck-infinite-progress::before {
  14. content: "";
  15. position: absolute;
  16. top: 0;
  17. right: 0;
  18. }
  19. /* Upload progress bar. */
  20. & .ck-progress-bar {
  21. position: absolute;
  22. top: 0;
  23. left: 0;
  24. }
  25. }