2025-05-27 18:55:46 +03:00
|
|
|
/**
|
2026-04-10 21:02:05 +03:00
|
|
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
2025-05-27 18:55:46 +03:00
|
|
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
2025-09-15 19:07:23 +03:00
|
|
|
*/
|
|
|
|
|
.ck-content code{
|
2026-04-10 21:02:05 +03:00
|
|
|
background-color:#c7c7c74d;
|
|
|
|
|
border-radius:2px;
|
|
|
|
|
padding:.15em;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content blockquote{
|
2026-04-10 21:02:05 +03:00
|
|
|
border-left:5px solid #ccc;
|
|
|
|
|
margin-left:0;
|
|
|
|
|
margin-right:0;
|
|
|
|
|
padding-left:1.5em;
|
|
|
|
|
padding-right:1.5em;
|
|
|
|
|
font-style:italic;
|
|
|
|
|
overflow:hidden;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content[dir="rtl"] blockquote{
|
2026-04-10 21:02:05 +03:00
|
|
|
border-left:0;
|
|
|
|
|
border-right:5px solid #ccc;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content pre{
|
2026-04-10 21:02:05 +03:00
|
|
|
color:#353535;
|
|
|
|
|
text-align:left;
|
|
|
|
|
tab-size:4;
|
|
|
|
|
white-space:pre-wrap;
|
|
|
|
|
direction:ltr;
|
|
|
|
|
background:#c7c7c74d;
|
|
|
|
|
border:1px solid #c4c4c4;
|
|
|
|
|
border-radius:2px;
|
|
|
|
|
min-width:200px;
|
|
|
|
|
margin:.9em 0;
|
|
|
|
|
padding:1em;
|
|
|
|
|
font-style:normal;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content pre code{
|
2026-04-10 21:02:05 +03:00
|
|
|
background:unset;
|
|
|
|
|
border-radius:0;
|
|
|
|
|
padding:0;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-font-family:Helvetica, Arial, Tahoma, Verdana, Sans-Serif;
|
|
|
|
|
--ck-content-font-size:medium;
|
|
|
|
|
--ck-content-font-color:#000;
|
|
|
|
|
--ck-content-line-height:1.5;
|
|
|
|
|
--ck-content-word-break:normal;
|
|
|
|
|
--ck-content-overflow-wrap:break-word;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-family:var(--ck-content-font-family);
|
|
|
|
|
font-size:var(--ck-content-font-size);
|
|
|
|
|
color:var(--ck-content-font-color);
|
|
|
|
|
line-height:var(--ck-content-line-height);
|
|
|
|
|
word-break:var(--ck-content-word-break);
|
|
|
|
|
overflow-wrap:var(--ck-content-overflow-wrap);
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-font-size-tiny:.7em;
|
|
|
|
|
--ck-content-font-size-small:.85em;
|
|
|
|
|
--ck-content-font-size-big:1.4em;
|
|
|
|
|
--ck-content-font-size-huge:1.8em;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
2026-04-10 21:02:05 +03:00
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .text-tiny{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-tiny);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .text-small{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-small);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .text-big{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-big);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .text-huge{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-huge);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-highlight-marker-yellow:#fdfd77;
|
|
|
|
|
--ck-content-highlight-marker-green:#62f962;
|
|
|
|
|
--ck-content-highlight-marker-pink:#fc7899;
|
|
|
|
|
--ck-content-highlight-marker-blue:#72ccfd;
|
|
|
|
|
--ck-content-highlight-pen-red:#e71313;
|
|
|
|
|
--ck-content-highlight-pen-green:#128a00;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .marker-yellow{
|
2026-04-10 21:02:05 +03:00
|
|
|
background-color:var(--ck-content-highlight-marker-yellow);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .marker-green{
|
2026-04-10 21:02:05 +03:00
|
|
|
background-color:var(--ck-content-highlight-marker-green);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .marker-pink{
|
2026-04-10 21:02:05 +03:00
|
|
|
background-color:var(--ck-content-highlight-marker-pink);
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .marker-blue{
|
2026-04-10 21:02:05 +03:00
|
|
|
background-color:var(--ck-content-highlight-marker-blue);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .pen-red{
|
2026-04-10 21:02:05 +03:00
|
|
|
color:var(--ck-content-highlight-pen-red);
|
|
|
|
|
background-color:#0000;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .pen-green{
|
2026-04-10 21:02:05 +03:00
|
|
|
color:var(--ck-content-highlight-pen-green);
|
|
|
|
|
background-color:#0000;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content hr{
|
2026-04-10 21:02:05 +03:00
|
|
|
background:#dedede;
|
|
|
|
|
border:0;
|
|
|
|
|
height:4px;
|
|
|
|
|
margin:15px 0;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-color-image-caption-background:#f7f7f7;
|
|
|
|
|
--ck-content-color-image-caption-text:#333;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
2026-04-10 21:02:05 +03:00
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .image > figcaption{
|
2026-04-10 21:02:05 +03:00
|
|
|
caption-side:bottom;
|
|
|
|
|
word-break:normal;
|
|
|
|
|
overflow-wrap:anywhere;
|
|
|
|
|
break-before:avoid;
|
|
|
|
|
color:var(--ck-content-color-image-caption-text);
|
|
|
|
|
background-color:var(--ck-content-color-image-caption-background);
|
|
|
|
|
outline-offset:-1px;
|
|
|
|
|
padding:.6em;
|
|
|
|
|
font-size:.75em;
|
|
|
|
|
display:table-caption;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
2026-04-10 21:02:05 +03:00
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
@media (forced-colors: active){
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content .image > figcaption{
|
|
|
|
|
background-color:unset;
|
|
|
|
|
color:unset;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
2026-04-10 21:02:05 +03:00
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content img.image_resized{
|
2026-04-10 21:02:05 +03:00
|
|
|
height:auto;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .image.image_resized{
|
2026-04-10 21:02:05 +03:00
|
|
|
box-sizing:border-box;
|
|
|
|
|
max-width:100%;
|
|
|
|
|
display:block;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .image.image_resized img{
|
2026-04-10 21:02:05 +03:00
|
|
|
width:100%;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image.image_resized > figcaption{
|
2026-04-10 21:02:05 +03:00
|
|
|
display:block;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-image-style-spacing:1.5em;
|
|
|
|
|
--ck-content-inline-image-style-spacing:calc(var(--ck-content-image-style-spacing) / 2);
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content .image.image-style-block-align-left, .ck-content .image.image-style-block-align-right{
|
|
|
|
|
max-width:calc(100% - var(--ck-content-image-style-spacing));
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content .image.image-style-align-left, .ck-content .image.image-style-align-right{
|
|
|
|
|
clear:none;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image.image-style-side{
|
2026-04-10 21:02:05 +03:00
|
|
|
float:right;
|
|
|
|
|
margin-left:var(--ck-content-image-style-spacing);
|
|
|
|
|
max-width:50%;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image.image-style-align-left{
|
2026-04-10 21:02:05 +03:00
|
|
|
float:left;
|
|
|
|
|
margin-right:var(--ck-content-image-style-spacing);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image.image-style-align-right{
|
2026-04-10 21:02:05 +03:00
|
|
|
float:right;
|
|
|
|
|
margin-left:var(--ck-content-image-style-spacing);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image.image-style-block-align-right{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-left:auto;
|
|
|
|
|
margin-right:0;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image.image-style-block-align-left{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-left:0;
|
|
|
|
|
margin-right:auto;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image-style-align-center{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-left:auto;
|
|
|
|
|
margin-right:auto;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image-style-align-left{
|
2026-04-10 21:02:05 +03:00
|
|
|
float:left;
|
|
|
|
|
margin-right:var(--ck-content-image-style-spacing);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image-style-align-right{
|
2026-04-10 21:02:05 +03:00
|
|
|
float:right;
|
|
|
|
|
margin-left:var(--ck-content-image-style-spacing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content p + .image.image-style-align-left, .ck-content p + .image.image-style-align-right, .ck-content p + .image.image-style-side{
|
|
|
|
|
margin-top:0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .image-inline.image-style-align-left, .ck-content .image-inline.image-style-align-right{
|
|
|
|
|
margin-top:var(--ck-content-inline-image-style-spacing);
|
|
|
|
|
margin-bottom:var(--ck-content-inline-image-style-spacing);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image-inline.image-style-align-left{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-right:var(--ck-content-inline-image-style-spacing);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image-inline.image-style-align-right{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-left:var(--ck-content-inline-image-style-spacing);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image{
|
2026-04-10 21:02:05 +03:00
|
|
|
clear:both;
|
|
|
|
|
text-align:center;
|
|
|
|
|
min-width:50px;
|
|
|
|
|
margin:.9em auto;
|
|
|
|
|
display:table;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image img{
|
2026-04-10 21:02:05 +03:00
|
|
|
min-width:100%;
|
|
|
|
|
max-width:100%;
|
|
|
|
|
height:auto;
|
|
|
|
|
margin:0 auto;
|
|
|
|
|
display:block;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image-inline{
|
2026-04-10 21:02:05 +03:00
|
|
|
align-items:flex-start;
|
|
|
|
|
max-width:100%;
|
|
|
|
|
display:inline-flex;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .image-inline picture{
|
2026-04-10 21:02:05 +03:00
|
|
|
display:flex;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content .image-inline picture, .ck-content .image-inline img{
|
|
|
|
|
flex-grow:1;
|
|
|
|
|
flex-shrink:1;
|
|
|
|
|
max-width:100%;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-list-marker-color:var(--ck-content-font-color);
|
|
|
|
|
--ck-content-list-marker-font-family:var(--ck-content-font-family);
|
|
|
|
|
--ck-content-list-marker-font-size:var(--ck-content-font-size);
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content li > p:first-of-type{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-top:0;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li > p:only-of-type{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-top:0;
|
|
|
|
|
margin-bottom:0;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-bold::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-weight:bold;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-italic::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-style:italic;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-color::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
color:var(--ck-content-list-marker-color);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-font-family::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-family:var(--ck-content-list-marker-font-family);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-font-size::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-list-marker-font-size);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-font-size-tiny::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-tiny);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-font-size-small::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-small);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-font-size-big::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-big);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content li.ck-list-marker-font-size-huge::marker{
|
2026-04-10 21:02:05 +03:00
|
|
|
font-size:var(--ck-content-font-size-huge);
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content ol{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:decimal;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content ol ol{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:lower-latin;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content ol ol ol{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:lower-roman;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content ol ol ol ol{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:upper-latin;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content ol ol ol ol ol{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:upper-roman;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content ul{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:disc;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content ul ul{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:circle;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content ul ul ul{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:square;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content ul ul ul ul{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style-type:square;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-todo-list-checkmark-size:16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input{
|
|
|
|
|
-webkit-appearance:none;
|
|
|
|
|
width:var(--ck-content-todo-list-checkmark-size);
|
|
|
|
|
height:var(--ck-content-todo-list-checkmark-size);
|
|
|
|
|
vertical-align:middle;
|
|
|
|
|
border:0;
|
|
|
|
|
margin-left:0;
|
|
|
|
|
margin-right:-15px;
|
|
|
|
|
display:inline-block;
|
|
|
|
|
position:relative;
|
|
|
|
|
left:-25px;
|
|
|
|
|
right:0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[dir="rtl"]:is(.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input){
|
|
|
|
|
margin-left:-15px;
|
|
|
|
|
margin-right:0;
|
|
|
|
|
left:0;
|
|
|
|
|
right:-25px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input):before{
|
|
|
|
|
box-sizing:border-box;
|
|
|
|
|
content:"";
|
|
|
|
|
border:1px solid #333;
|
|
|
|
|
border-radius:2px;
|
|
|
|
|
width:100%;
|
|
|
|
|
height:100%;
|
|
|
|
|
transition:box-shadow .25s ease-in-out;
|
|
|
|
|
display:block;
|
|
|
|
|
position:absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion: reduce){
|
|
|
|
|
:is(.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input):before{
|
|
|
|
|
transition:none;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
2026-04-10 21:02:05 +03:00
|
|
|
|
|
|
|
|
:is(.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input):after{
|
|
|
|
|
box-sizing:content-box;
|
|
|
|
|
pointer-events:none;
|
|
|
|
|
content:"";
|
|
|
|
|
left:calc(var(--ck-content-todo-list-checkmark-size) / 3);
|
|
|
|
|
top:calc(var(--ck-content-todo-list-checkmark-size) / 5.3);
|
|
|
|
|
width:calc(var(--ck-content-todo-list-checkmark-size) / 5.3);
|
|
|
|
|
height:calc(var(--ck-content-todo-list-checkmark-size) / 2.6);
|
|
|
|
|
border-style:solid;
|
|
|
|
|
border-color:#0000;
|
|
|
|
|
border-width:0 calc(var(--ck-content-todo-list-checkmark-size) / 8) calc(var(--ck-content-todo-list-checkmark-size) / 8) 0;
|
|
|
|
|
display:block;
|
|
|
|
|
position:absolute;
|
|
|
|
|
transform:rotate(45deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input)[checked]:before{
|
|
|
|
|
background:#26ab33;
|
|
|
|
|
border-color:#26ab33;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input)[checked]:after{
|
|
|
|
|
border-color:#fff;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .todo-list{
|
2026-04-10 21:02:05 +03:00
|
|
|
list-style:none;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
2026-04-10 21:02:05 +03:00
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .todo-list li{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-bottom:5px;
|
|
|
|
|
position:relative;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .todo-list li .todo-list{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-top:5px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
.ck-content .todo-list .todo-list__label .todo-list__label__description{
|
2026-04-10 21:02:05 +03:00
|
|
|
vertical-align:middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .todo-list .todo-list__label.todo-list__label_without-description input[type="checkbox"]{
|
|
|
|
|
position:absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-editor__editable.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input{
|
|
|
|
|
cursor:pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(.ck-editor__editable.ck-content .todo-list .todo-list__label > input, .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input):hover:before{
|
|
|
|
|
box-shadow:0 0 0 5px #0000001a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-editor__editable.ck-content .todo-list .todo-list__label.todo-list__label_without-description input[type="checkbox"]{
|
|
|
|
|
position:absolute;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .media{
|
2026-04-10 21:02:05 +03:00
|
|
|
clear:both;
|
|
|
|
|
min-width:15em;
|
|
|
|
|
margin:.9em 0;
|
|
|
|
|
display:block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root{
|
|
|
|
|
--ck-content-color-mention-background:#9900301a;
|
|
|
|
|
--ck-content-color-mention-text:#990030;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .mention{
|
|
|
|
|
background:var(--ck-content-color-mention-background);
|
|
|
|
|
color:var(--ck-content-color-mention-text);
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .page-break{
|
2026-04-10 21:02:05 +03:00
|
|
|
clear:both;
|
|
|
|
|
justify-content:center;
|
|
|
|
|
align-items:center;
|
|
|
|
|
padding:5px 0;
|
|
|
|
|
display:flex;
|
|
|
|
|
position:relative;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content .page-break:after{
|
|
|
|
|
content:"";
|
|
|
|
|
border-bottom:2px dashed #c4c4c4;
|
|
|
|
|
width:100%;
|
|
|
|
|
position:absolute;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .page-break__label{
|
2026-04-10 21:02:05 +03:00
|
|
|
z-index:1;
|
|
|
|
|
text-transform:uppercase;
|
|
|
|
|
color:#333;
|
|
|
|
|
-webkit-user-select:none;
|
|
|
|
|
user-select:none;
|
|
|
|
|
background:#fff;
|
|
|
|
|
border:1px solid #c4c4c4;
|
|
|
|
|
border-radius:2px;
|
|
|
|
|
padding:.3em .6em;
|
|
|
|
|
font-size:.75em;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
display:block;
|
|
|
|
|
position:relative;
|
|
|
|
|
box-shadow:2px 2px 1px #00000026;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
2026-04-10 21:02:05 +03:00
|
|
|
|
2025-09-15 19:07:23 +03:00
|
|
|
@media print{
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content .page-break{
|
|
|
|
|
padding:0;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content .page-break:after{
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content :has( + .page-break){
|
|
|
|
|
margin-bottom:0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .table th{
|
|
|
|
|
text-align:start;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content[dir="rtl"] .table th{
|
2026-04-10 21:02:05 +03:00
|
|
|
text-align:right;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content[dir="ltr"] .table th{
|
2026-04-10 21:02:05 +03:00
|
|
|
text-align:left;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content figure.table:not(.layout-table){
|
2026-04-10 21:02:05 +03:00
|
|
|
display:table;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content figure.table:not(.layout-table) > table{
|
2026-04-10 21:02:05 +03:00
|
|
|
width:100%;
|
|
|
|
|
height:100%;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
.ck-content .table:not(.layout-table){
|
2026-04-10 21:02:05 +03:00
|
|
|
margin:.9em auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table{
|
|
|
|
|
border-collapse:collapse;
|
|
|
|
|
border-spacing:0;
|
|
|
|
|
border:1px double #b3b3b3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th{
|
|
|
|
|
background:#0000000d;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th) > p:first-of-type{
|
|
|
|
|
margin-top:0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th) > p:last-of-type{
|
|
|
|
|
margin-bottom:0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > td, :is(:is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > thead, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tfoot, :is(.ck-content table.table:not(.layout-table), .ck-content figure.table:not(.layout-table) > table) > tbody) > tr > th{
|
|
|
|
|
border:1px solid #bfbfbf;
|
|
|
|
|
min-width:2em;
|
|
|
|
|
padding:.4em;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
|
|
|
|
@media print{
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content figure.table:not(.layout-table){
|
|
|
|
|
width:fit-content;
|
|
|
|
|
height:fit-content;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content figure.table:not(.layout-table) > table{
|
|
|
|
|
height:initial;
|
|
|
|
|
}
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content table.table.layout-table, .ck-content figure.table.layout-table{
|
|
|
|
|
margin-top:0;
|
|
|
|
|
margin-bottom:0;
|
2025-09-15 19:07:23 +03:00
|
|
|
}
|
|
|
|
|
|
2026-04-10 21:02:05 +03:00
|
|
|
.ck-content table.table.layout-table, .ck-content figure.table.layout-table > table{
|
|
|
|
|
border-spacing:0;
|
2025-12-23 13:34:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root{
|
2026-04-10 21:02:05 +03:00
|
|
|
--ck-content-table-style-spacing:1.5em;
|
2025-12-23 13:34:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .table.table-style-align-left{
|
2026-04-10 21:02:05 +03:00
|
|
|
float:left;
|
|
|
|
|
margin-right:var(--ck-content-table-style-spacing);
|
|
|
|
|
}
|
2025-12-23 13:34:26 +02:00
|
|
|
|
|
|
|
|
.ck-content .table.table-style-align-right{
|
2026-04-10 21:02:05 +03:00
|
|
|
float:right;
|
|
|
|
|
margin-left:var(--ck-content-table-style-spacing);
|
|
|
|
|
}
|
2025-12-23 13:34:26 +02:00
|
|
|
|
|
|
|
|
.ck-content .table.table-style-align-center{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-left:auto;
|
|
|
|
|
margin-right:auto;
|
|
|
|
|
}
|
2025-12-23 13:34:26 +02:00
|
|
|
|
|
|
|
|
.ck-content .table.table-style-block-align-left{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-left:0;
|
|
|
|
|
margin-right:auto;
|
|
|
|
|
}
|
2025-12-23 13:34:26 +02:00
|
|
|
|
|
|
|
|
.ck-content .table.table-style-block-align-right{
|
2026-04-10 21:02:05 +03:00
|
|
|
margin-left:auto;
|
|
|
|
|
margin-right:0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root{
|
|
|
|
|
--ck-content-color-table-caption-background:#f7f7f7;
|
|
|
|
|
--ck-content-color-table-caption-text:#333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .table > figcaption, .ck-content figure.table > table > caption{
|
|
|
|
|
caption-side:top;
|
|
|
|
|
word-break:normal;
|
|
|
|
|
overflow-wrap:anywhere;
|
|
|
|
|
text-align:center;
|
|
|
|
|
color:var(--ck-content-color-table-caption-text);
|
|
|
|
|
background-color:var(--ck-content-color-table-caption-background);
|
|
|
|
|
outline-offset:-1px;
|
|
|
|
|
padding:.6em;
|
|
|
|
|
font-size:.75em;
|
|
|
|
|
display:table-caption;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (forced-colors: active){
|
|
|
|
|
.ck-content .table > figcaption, .ck-content figure.table > table > caption{
|
|
|
|
|
background-color:unset;
|
|
|
|
|
color:unset;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .table .ck-table-resized{
|
|
|
|
|
table-layout:fixed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ck-content .table td, .ck-content .table th{
|
|
|
|
|
overflow-wrap:break-word;
|
|
|
|
|
}
|