blob: e17e3c292ba542de528e53c7677b7769d2d8a7f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
.cke_table-faked-selection-editor *::selection, table[data-cke-table-faked-selection-table] *::selection {
background: transparent;
}
.cke_table-faked-selection {
background: darkgray !important;
color: black;
}
.cke_table-faked-selection a {
color: black;
}
.cke_editable:focus .cke_table-faked-selection {
/* We have to use !important here, as td might specify it's own background, thus table selection
would not be visible. */
background: #0076cb !important;
color: white;
}
.cke_editable:focus .cke_table-faked-selection a {
color: white;
}
.cke_table-faked-selection::-moz-selection, .cke_table-faked-selection ::-moz-selection {
background: transparent;
}
.cke_table-faked-selection::selection, .cke_table-faked-selection ::selection {
background: transparent;
}
|