16825 |
efrain |
1 |
/*
|
|
|
2 |
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
|
|
|
3 |
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
|
4 |
*/
|
|
|
5 |
|
|
|
6 |
html.cke_copyformatting_active {
|
|
|
7 |
min-height: 100%;
|
|
|
8 |
}
|
|
|
9 |
|
|
|
10 |
/* There is no cursor in CUR format for IE/Edge as that browser
|
|
|
11 |
does not support custom cursor in [contenteditable] area.
|
|
|
12 |
Ticket for this issue:
|
|
|
13 |
https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-using-css */
|
|
|
14 |
.cke_copyformatting_disabled,
|
|
|
15 |
.cke_copyformatting_disabled a,
|
|
|
16 |
.cke_copyformatting_disabled .cke_editable {
|
|
|
17 |
cursor: url(../cursors/cursor-disabled.svg) 12 1, auto;
|
|
|
18 |
}
|
|
|
19 |
|
|
|
20 |
.cke_copyformatting_disabled .cke_top a,
|
|
|
21 |
.cke_copyformatting_disabled .cke_bottom a {
|
|
|
22 |
cursor: default;
|
|
|
23 |
}
|
|
|
24 |
|
|
|
25 |
/* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin.
|
|
|
26 |
The `!important` rule is used because the Table Resize plugin creates a `<div>` which changes the cursor using inlined styles. */
|
|
|
27 |
.cke_copyformatting_active,
|
|
|
28 |
.cke_copyformatting_active.cke_editable,
|
|
|
29 |
.cke_copyformatting_active .cke_editable,
|
|
|
30 |
.cke_copyformatting_active a,
|
|
|
31 |
.cke_copyformatting_active table,
|
|
|
32 |
.cke_copyformatting_active div[data-cke-temp],
|
|
|
33 |
.cke_copyformatting_tableresize_cursor div[data-cke-temp] {
|
|
|
34 |
cursor: url(../cursors/cursor.svg) 12 1, auto !important;
|
|
|
35 |
}
|
|
|
36 |
|
|
|
37 |
.cke_screen_reader_only {
|
|
|
38 |
position: absolute;
|
|
|
39 |
clip: rect(1px, 1px, 1px, 1px);
|
|
|
40 |
padding: 0;
|
|
|
41 |
border: 0;
|
|
|
42 |
height: 1px;
|
|
|
43 |
width: 1px;
|
|
|
44 |
overflow: hidden;
|
|
|
45 |
}
|