mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-17 03:20:05 +01:00
18 lines
395 B
CSS
18 lines
395 B
CSS
/* This is the CSS file for the noneditable elements plugin */
|
|
|
|
.mceEditable {
|
|
/*border: 1px dotted #0000cc;*/
|
|
-moz-user-focus: none;
|
|
-moz-user-input: auto;
|
|
-moz-user-modify: auto;
|
|
-moz-user-select: text;
|
|
}
|
|
|
|
.mceNonEditable {
|
|
/*border: 1px dotted #cc0000;*/
|
|
-moz-user-focus: ignore;
|
|
/*-moz-user-input: disabled;*/
|
|
-moz-user-modify: read-only;
|
|
-moz-user-select: all;
|
|
}
|