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