Subversion Repositories Applications.papyrus

Rev

Rev 1925 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1925 Rev 2048
1
/*
1
/*
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
3
 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
4
 *
4
 *
5
 * == BEGIN LICENSE ==
5
 * == BEGIN LICENSE ==
6
 *
6
 *
7
 * Licensed under the terms of any of the following licenses at your
7
 * Licensed under the terms of any of the following licenses at your
8
 * choice:
8
 * choice:
9
 *
9
 *
10
 *  - GNU General Public License Version 2 or later (the "GPL")
10
 *  - GNU General Public License Version 2 or later (the "GPL")
11
 *    http://www.gnu.org/licenses/gpl.html
11
 *    http://www.gnu.org/licenses/gpl.html
12
 *
12
 *
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
13
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14
 *    http://www.gnu.org/licenses/lgpl.html
14
 *    http://www.gnu.org/licenses/lgpl.html
15
 *
15
 *
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
16
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
17
 *    http://www.mozilla.org/MPL/MPL-1.1.html
18
 *
18
 *
19
 * == END LICENSE ==
19
 * == END LICENSE ==
20
 *
20
 *
21
 * This CSS Style Sheet defines the rules to show table borders on Gecko.
21
 * This CSS Style Sheet defines the rules to show table borders on Gecko.
22
 */
22
 */
23
 
23
 
24
/* #########
24
/* #########
25
 *  WARNING
25
 *  WARNING
26
 * #########
26
 * #########
27
 * When changing this file, the minified version of it must be updated in the
27
 * When changing this file, the minified version of it must be updated in the
28
 * fckeditor.html file (see FCK_ShowTableBordersCSS).
28
 * fckeditor.html file (see FCK_ShowTableBordersCSS).
29
 */
29
 */
30
 
30
 
31
/* For tables with the "border" attribute set to "0" */
31
/* For tables with the "border" attribute set to "0" */
32
table[border="0"],
32
table[border="0"],
33
table[border="0"] > tr > td, table[border="0"] > tr > th,
33
table[border="0"] > tr > td, table[border="0"] > tr > th,
34
table[border="0"] > tbody > tr > td, table[border="0"] > tbody > tr > th,
34
table[border="0"] > tbody > tr > td, table[border="0"] > tbody > tr > th,
35
table[border="0"] > thead > tr > td, table[border="0"] > thead > tr > th,
35
table[border="0"] > thead > tr > td, table[border="0"] > thead > tr > th,
36
table[border="0"] > tfoot > tr > td, table[border="0"] > tfoot > tr > th
36
table[border="0"] > tfoot > tr > td, table[border="0"] > tfoot > tr > th
37
{
37
{
38
	border: #d3d3d3 1px dotted ;
38
	border: #d3d3d3 1px dotted ;
39
}
39
}
40
 
40
 
41
/* For tables with no "border" attribute set */
41
/* For tables with no "border" attribute set */
42
table:not([border]),
42
table:not([border]),
43
table:not([border]) > tr > td, table:not([border]) > tr > th,
43
table:not([border]) > tr > td, table:not([border]) > tr > th,
44
table:not([border]) > tbody > tr > td, table:not([border]) > tbody > tr > th,
44
table:not([border]) > tbody > tr > td, table:not([border]) > tbody > tr > th,
45
table:not([border]) > thead > tr > td, table:not([border]) > thead > tr > th,
45
table:not([border]) > thead > tr > td, table:not([border]) > thead > tr > th,
46
table:not([border]) > tfoot > tr > td, table:not([border]) > tfoot > tr > th
46
table:not([border]) > tfoot > tr > td, table:not([border]) > tfoot > tr > th
47
{
47
{
48
	border: #d3d3d3 1px dotted ;
48
	border: #d3d3d3 1px dotted ;
49
}
49
}