| 1234567891011121314151617181920212223242526272829 |
- /*
- * Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* Infinite progress bar default width. */
- :root {
- --ck-image-upload-progress-line-width: 30px;
- }
- figure.image {
- position: relative;
- overflow: hidden;
- /* Infinite progress bar on top while image is read. */
- &.ck-infinite-progress::before {
- content: "";
- position: absolute;
- top: 0;
- right: 0;
- }
- /* Upload progress bar. */
- & .ck-progress-bar {
- position: absolute;
- top: 0;
- left: 0;
- }
- }
|