summaryrefslogtreecommitdiff
path: root/manual/css
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2007-02-14 11:23:38 +0000
committerTim Mayberry <mojofunk@gmail.com>2007-02-14 11:23:38 +0000
commit9d548f998b94dcc5e04496740aead50f2b9f5f07 (patch)
tree645ec973389c2935fbdb0da0dabcc165f99bb5f5 /manual/css
parentc95d382604402863f92df1a6ed9e59a11d56f9eb (diff)
Added the BSD licensed xmlformat utility for keeping the xml pretty
and consistant aswell as a configuration file. When I converted the manual to docbook I was using an old version that I'd modified to insert tabs rather than spaces so using it on the existing documentation will appear to reformat the whole file. I don't think that matters at this stage and I'm tempted to reformat everything now while it isn't an issue. Rewrote the Makefile that builds the docs so that: - building the html only depends on having xsltproc installed. - the xsl and xml files aren't copied to the build directory. - make test does not remove an existing build of the docs. Changed the glossary so that the acronym/abbreviations are the glossary terms, which I've discovered is how it is generally done. It makes total sense now that I actually think about it because you need to find the terms based on their use in the manual. Added a bit of xsl to add the status attribute as a class attribute in the html so that the css can use a draft watermark(or any other watermark). DocBook supports the draft status without the xsl but it has problems, which I've described in the xsl file. Minor tweak to the css to make the glossary terms and any other definition lists bold(that includes the index). git-svn-id: svn://localhost/ardour2/trunk@1457 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'manual/css')
-rw-r--r--manual/css/ardour_manual.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/manual/css/ardour_manual.css b/manual/css/ardour_manual.css
index cfe7a54b7f..70fbfa42e7 100644
--- a/manual/css/ardour_manual.css
+++ b/manual/css/ardour_manual.css
@@ -28,6 +28,18 @@ div.longdesc-link {
float:right;
}
+/* Lists */
+
+dt {
+ font-weight:bold;
+}
+
+dd {
+ margin:0em;
+ margin-left:2em;
+ padding-top:0em;
+}
+
/* Images */
img {
@@ -150,3 +162,10 @@ h5.formalpara {
font-size:1em;
margin-top:2em;
}
+
+/* Status */
+
+.ardour-draft {
+ background: white url(./images/watermark-draft.png) top left repeat;
+}
+