summaryrefslogtreecommitdiff
path: root/manual/css
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2007-02-14 13:41:30 +0000
committerTim Mayberry <mojofunk@gmail.com>2007-02-14 13:41:30 +0000
commit0892e5830588b9b621eef76414c2848df3ccbb0e (patch)
tree0388db74b90ecbb7bb41e96d749668a8a41eeb27 /manual/css
parent9d548f998b94dcc5e04496740aead50f2b9f5f07 (diff)
Manual style updates:
Added definitions for the Important and Warning admonitions in the formatting section. Removed the caution admonition from the formatting conventions section Add Tango icons and use them for admonition graphics aswell as some xsl and css to make them look better. Removed the table border from the manual navigation git-svn-id: svn://localhost/ardour2/trunk@1458 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'manual/css')
-rw-r--r--manual/css/ardour_manual.css51
1 files changed, 44 insertions, 7 deletions
diff --git a/manual/css/ardour_manual.css b/manual/css/ardour_manual.css
index 70fbfa42e7..95da19334c 100644
--- a/manual/css/ardour_manual.css
+++ b/manual/css/ardour_manual.css
@@ -85,25 +85,51 @@ div.caution,
div.warning {
background: #27272b url(images/admon-bg.png) top left repeat;
color:white;
- padding:0.8em;
+ padding:1.0em;
margin-bottom:1.5em;
}
+div.note h2, div.note p,
+div.tip h2,div.tip p,
+div.caution h2,div.caution p,
+div.warning h2,div.warning p,
+div.important h2,div.important p {
+ padding:0em;
+ margin:0em;
+ padding-left:46px;
+}
+
div.note .title,
div.tip .title,
div.important .title,
div.caution .title,
div.warning .title {
+ background-color:transparent;
+ background-position:top left;
+ background-repeat:no-repeat;
+ height:42px;
font-size:1.3em;
color: white;
}
-div.note p,
-div.tip p,
-div.caution p,
-div.warning p,
-div.important p {
- padding-left:0.5em;
+div.note h2 {
+ background-image:url(images/tango-icons/note.png)
+}
+
+div.tip h2 {
+ background-image:url(images/tango-icons/tip.png)
+}
+
+div.caution h2 {
+ background-image:url(images/tango-icons/caution.png)
+}
+
+div.warning h2 {
+ background-image:url(images/tango-icons/warning.png)
+}
+
+div.important h2 {
+ background-image:url(images/tango-icons/important.png)
}
/* Tables */
@@ -169,3 +195,14 @@ h5.formalpara {
background: white url(./images/watermark-draft.png) top left repeat;
}
+/* remove table border from navigation...ugh */
+
+.navheader table, .navheader table td {
+ border:0px none;
+ border-collapse:collapse;
+}
+
+.navfooter table, .navfooter table td {
+ border:0px none;
+ border-collapse:collapse;
+}