30 lines
468 B
CSS
30 lines
468 B
CSS
/* Styles to alter look of things in the Editor content window */
|
|
|
|
/* new feature, not implemented yet */
|
|
a[name] {
|
|
display: inline-block;
|
|
min-width: 10px;
|
|
width: 10px;
|
|
height: 10px;
|
|
background-image:
|
|
border: 1px solid blue;
|
|
}
|
|
*/
|
|
|
|
a[name]:before {
|
|
content: url(chrome://editor/skin/images/ED_Left.gif);
|
|
}
|
|
|
|
table {
|
|
empty-cells: show;
|
|
}
|
|
|
|
table[empty-cells=show] {
|
|
border: 1px dotted red;
|
|
}
|
|
|
|
td, tr {
|
|
min-height: 10px;
|
|
min-line-height: 10px;
|
|
}
|