1075 |
ddelon |
1 |
/*
|
|
|
2 |
* FCKeditor - The text editor for internet
|
|
|
3 |
* Copyright (C) 2003-2006 Frederico Caldeira Knabben
|
|
|
4 |
*
|
|
|
5 |
* Licensed under the terms of the GNU Lesser General Public License:
|
|
|
6 |
* http://www.opensource.org/licenses/lgpl-license.php
|
|
|
7 |
*
|
|
|
8 |
* For further information visit:
|
|
|
9 |
* http://www.fckeditor.net/
|
|
|
10 |
*
|
|
|
11 |
* "Support Open Source software. What about a donation today?"
|
|
|
12 |
*
|
|
|
13 |
* File Name: fck_showtableborders_gecko.css
|
|
|
14 |
* This CSS Style Sheet defines the rules to show table borders on Gecko.
|
|
|
15 |
*
|
|
|
16 |
* File Authors:
|
|
|
17 |
* Frederico Caldeira Knabben (fredck@fckeditor.net)
|
|
|
18 |
*/
|
|
|
19 |
|
|
|
20 |
/* For tables with the "border" attribute set to "0" */
|
|
|
21 |
table[border="0"],
|
|
|
22 |
table[border="0"] > tr > td, table[border="0"] > tr > th,
|
|
|
23 |
table[border="0"] > tbody > tr > td, table[border="0"] > tbody > tr > th,
|
|
|
24 |
table[border="0"] > thead > tr > td, table[border="0"] > thead > tr > th,
|
|
|
25 |
table[border="0"] > tfoot > tr > td, table[border="0"] > tfoot > tr > th
|
|
|
26 |
{
|
|
|
27 |
border: #d3d3d3 1px dotted ;
|
|
|
28 |
}
|
|
|
29 |
|
|
|
30 |
/* For tables with no "border" attribute set */
|
|
|
31 |
table:not([border]),
|
|
|
32 |
table:not([border]) > tr > td, table:not([border]) > tr > th,
|
|
|
33 |
table:not([border]) > tbody > tr > td, table:not([border]) > tbody > tr > th,
|
|
|
34 |
table:not([border]) > thead > tr > td, table:not([border]) > thead > tr > th,
|
|
|
35 |
table:not([border]) > tfoot > tr > td, table:not([border]) > tfoot > tr > th
|
|
|
36 |
{
|
|
|
37 |
border: #d3d3d3 1px dotted ;
|
|
|
38 |
}
|