UNPKG

580 BCSSView Raw
1/*
2 * Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5
6.ck-image-upload-complete-icon {
7 display: block;
8 position: absolute;
9
10 /*
11 * Smaller images should have the icon closer to the border.
12 * Match the icon position with the linked image indicator brought by the link image feature.
13 */
14 top: min(var(--ck-spacing-medium), 6%);
15 right: min(var(--ck-spacing-medium), 6%);
16 border-radius: 50%;
17 z-index: 1;
18
19 &::after {
20 content: "";
21 position: absolute;
22 }
23}