12 lines
136 B
CSS
12 lines
136 B
CSS
|
.mceNonEditable {
|
||
|
background: yellow;
|
||
|
}
|
||
|
|
||
|
.mceEditable {
|
||
|
background: white;
|
||
|
}
|
||
|
|
||
|
*[contentEditable]:focus {
|
||
|
outline: 1px dotted gray;
|
||
|
}
|