1 | /*
|
---|
2 | | This file is part of the DITA Open Toolkit project hosted on
|
---|
3 | | Sourceforge.net. See the accompanying license.txt file for
|
---|
4 | | applicable licenses.
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | | (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved.
|
---|
9 | */
|
---|
10 |
|
---|
11 | *[class~="map\/map"] {
|
---|
12 | display: block;
|
---|
13 | margin-top: 6pt;
|
---|
14 | margin-bottom: 9pt;
|
---|
15 | font-family: sans-serif;
|
---|
16 | padding-left: 5px;
|
---|
17 | padding-right: 5px;
|
---|
18 | }
|
---|
19 |
|
---|
20 | *[class~="map\/map"]:before {
|
---|
21 | content: attr(title);
|
---|
22 | font-weight : bold;
|
---|
23 | }
|
---|
24 |
|
---|
25 | *[class~="map\/topicref"] {
|
---|
26 | display: list-item;
|
---|
27 | list-style-type: disc;
|
---|
28 | list-style-position: inherit;
|
---|
29 | margin-left: 10pt;
|
---|
30 | }
|
---|
31 |
|
---|
32 | *[class~="mapgroup\/topichead"] {
|
---|
33 | display: list-item;
|
---|
34 | list-style-type: circle;
|
---|
35 | list-style-position: inherit;
|
---|
36 | margin-left: 10pt;
|
---|
37 | }
|
---|
38 |
|
---|
39 | *[class~="mapgroup\/topicgroup"] {
|
---|
40 | display: list-item;
|
---|
41 | list-style-type: square;
|
---|
42 | list-style-position: inherit;
|
---|
43 | margin-left: 10pt;
|
---|
44 | }
|
---|
45 |
|
---|
46 | *[class~="map\/topicref"]:before {
|
---|
47 | content: attr(navtitle) " [" attr(href) "]";
|
---|
48 | }
|
---|
49 |
|
---|
50 | *[class~="map\/navref"]:before {
|
---|
51 | content: "[" attr(mapref) "]";
|
---|
52 | }
|
---|
53 |
|
---|
54 | @media morphon {
|
---|
55 | }
|
---|
56 | /*== simple table markup ==*/
|
---|
57 | *[class~="map\/reltable"] {
|
---|
58 | display: table;
|
---|
59 | border: thin solid gray;
|
---|
60 | }
|
---|
61 |
|
---|
62 | *[class~="map\/relcolspec"] {
|
---|
63 | display: table-cell;
|
---|
64 | }
|
---|
65 |
|
---|
66 | *[class~="map\/relcolspec"]:before {
|
---|
67 | content: "[" attr(type) "]";
|
---|
68 | }
|
---|
69 |
|
---|
70 | *[class~="map\/relrow"], *[class~="map\/relheader"] {
|
---|
71 | display: table-row;
|
---|
72 | border: thin black solid;
|
---|
73 | }
|
---|
74 |
|
---|
75 | *[class\~="map\/relhead"] > *[class\~="map\/relcell"] {
|
---|
76 | display: table-cell;
|
---|
77 | font-weight: bold;
|
---|
78 | text-align: center;
|
---|
79 | border: thin solid black;
|
---|
80 | }
|
---|
81 |
|
---|
82 | *[class\~="map\/relrow"] > *[class\~="map\/relcell"] {
|
---|
83 | display: table-cell;
|
---|
84 | border: thin solid gray !important;
|
---|
85 | }
|
---|
86 |
|
---|