1/*
2 * mozilla.css
3 *
4 * Copyright (c) 2004 David Holroyd, and contributors
5 * See the file 'COPYING' for terms of use
6 *
7 * Part of the Docbook-CSS stylesheet
8 *   http://www.badgers-in-foil.co.uk/projects/docbook-css/
9 *
10 * This file contains CSS specific to mozilla.org's Gecko rendering engine.
11 * 
12 * Some of the rules here will take effect even if you aren't using a Mozilla-
13 * based browser.
14 */
15
16
17/* make <ulink>s clickable */
18ulink {
19	-moz-binding:url('db-bindings.xml#ulink');
20	cursor: pointer;
21	-moz-user-focus: normal;
22}
23
24ulink:active {
25	color: red;
26}
27
28ulink:focus {
29	-moz-outline: 1px dotted invert;
30}
31
32imagedata {
33	-moz-binding:url('db-bindings.xml#image');
34}
35
36
37guimenu, guimenuitem, guisubmenu {
38	font: menu;
39}
40
41orderedlist, itemizedlist, procedure {
42	/* this seems to be required to make auto-numbering work */
43	-moz-counter-reset: -html-counter 0;
44}
45