|
|
@@ -0,0 +1,27 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
|
|
|
+ * For licensing, see LICENSE.md.
|
|
|
+ */
|
|
|
+
|
|
|
+.ck .ck-fake-panels {
|
|
|
+ position: absolute;
|
|
|
+
|
|
|
+ /* Fake panels should be placed under main balloon content. */
|
|
|
+ z-index: calc(var(--ck-z-modal) - 1);
|
|
|
+}
|
|
|
+
|
|
|
+.ck .ck-fake-panels div {
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+
|
|
|
+.ck .ck-fake-panels div:nth-child( 1 ) {
|
|
|
+ z-index: 3;
|
|
|
+}
|
|
|
+
|
|
|
+.ck .ck-fake-panels div:nth-child( 2 ) {
|
|
|
+ z-index: 2;
|
|
|
+}
|
|
|
+
|
|
|
+.ck .ck-fake-panels div:nth-child( 3 ) {
|
|
|
+ z-index: 1;
|
|
|
+}
|