Browse Source

Refactor .code/.output into global css

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@534335 13f79535-47bb-0310-9956-ffa450edef68
master
Jan Materne 18 years ago
parent
commit
d6cbd609c2
5 changed files with 18 additions and 30 deletions
  1. +0
    -5
      docs/manual/CoreTasks/macrodef.html
  2. +15
    -2
      docs/manual/stylesheets/style.css
  3. +1
    -8
      docs/manual/tutorial-HelloWorldWithAnt.html
  4. +1
    -8
      docs/manual/tutorial-tasks-filesets-properties.html
  5. +1
    -7
      docs/manual/tutorial-writing-tasks.html

+ 0
- 5
docs/manual/CoreTasks/macrodef.html View File

@@ -20,11 +20,6 @@
<meta http-equiv="Content-Language" content="en-us"></meta>
<link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
<title>MacroDef Task</title>
<style type="text/css">
<!--
.code { background: #EFEFEF; margin-top: }
-->
</style>
</head>

<body>


+ 15
- 2
docs/manual/stylesheets/style.css View File

@@ -36,13 +36,13 @@ td {
color: 000000;
}

/* first row */
/* first row */
table tr:first-child td {
background-color: cccccc;
color: 000000;
}

/* or th as first row */
/* or th as first row */
table th {
background-color: cccccc;
color: 000000;
@@ -51,3 +51,16 @@ table th {
pre {
background-color: efefef;
}

/* code snippets in examples and tutorials */
.code {
background: #EFEFEF;
margin-top:
}

/* highlight console output */
.output {
color: #FFFFFF;
background: #837A67;
}


+ 1
- 8
docs/manual/tutorial-HelloWorldWithAnt.html View File

@@ -17,13 +17,7 @@
<html>
<head>
<title>Tutorial: Hello World with Ant</title>
<meta name="author" content="Jan Matèrne">
<style type="text/css">
<!--
.code { background: #EFEFEF; margin-top: }
.output { color: #FFFFFF; background: #837A67; }
-->
</style>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
</head>
<body>
<h1>Tutorial: Hello World with Ant</h1>
@@ -494,7 +488,6 @@ There are two steps: 1. let &lt;junit&gt; log the information and 2. convert the
&lt;report todir="${report.dir}"/&gt;
&lt;/junitreport&gt;
&lt;/target&gt;</b>
</pre>

<p>Because we would produce a lot of files and these files would be written to the current directory by default,


+ 1
- 8
docs/manual/tutorial-tasks-filesets-properties.html View File

@@ -17,14 +17,7 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
<title>Tutorial: Tasks using Properties, Filesets &amp; Paths</title>
<meta name="author" content="Jan Mat&egrave;rne">
<style type="text/css">
<!--
.code { background: #EFEFEF; margin-top: }
.output { color: #FFFFFF; background: #837A67; }
-->
</style>
<title>Tutorial: Tasks using Properties, Filesets &amp; Paths</title>
</head>
<body>
<h1>Tutorial: Tasks using Properties, Filesets &amp; Paths</h1>


+ 1
- 7
docs/manual/tutorial-writing-tasks.html View File

@@ -17,13 +17,7 @@
<html>
<head>
<title>Tutorial: Writing Tasks</title>
<meta name="author" content="Jan Matèrne">
<style type="text/css">
<!--
.code { background: #EFEFEF; margin-top: }
.output { color: #FFFFFF; background: #837A67; }
-->
</style>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
</head>
<body>
<h1>Tutorial: Writing Tasks</h1>


Loading…
Cancel
Save