File: noneditable.css

package info (click to toggle)
turbotinymce 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,196 kB
  • ctags: 826
  • sloc: python: 159; sh: 22; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* 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;
}