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