doc: sync changes made in efl

* show footer with usefull info
* nested lists are more compact
* avoid packed effect on bullet lists
* @since colored and on a single line
This commit is contained in:
Davide Andreoli 2014-08-08 18:10:52 +02:00
parent 232ca7b67b
commit 38de4618ff
3 changed files with 38 additions and 4 deletions

View File

@ -1,5 +1,5 @@
PROJECT_NAME = Elementary PROJECT_NAME = Elementary
PROJECT_NUMBER = PROJECT_NUMBER = @PACKAGE_VERSION@
OUTPUT_DIRECTORY = . OUTPUT_DIRECTORY = .
INPUT = @srcdir@/examples.dox @top_srcdir@/src/lib @srcdir@/index.doxy @top_srcdir@/src/bin/elm_prefs_cc_handlers.c INPUT = @srcdir@/examples.dox @top_srcdir@/src/lib @srcdir@/index.doxy @top_srcdir@/src/bin/elm_prefs_cc_handlers.c
IMAGE_PATH = @srcdir@/img IMAGE_PATH = @srcdir@/img

View File

@ -25,6 +25,10 @@ dt {
font-weight: bold; font-weight: bold;
} }
ul {
padding-left: 30px;
}
div.multicol { div.multicol {
-moz-column-gap: 1em; -moz-column-gap: 1em;
-webkit-column-gap: 1em; -webkit-column-gap: 1em;
@ -154,6 +158,11 @@ dl.el {
line-height: 0%; line-height: 0%;
} }
/* To avoid packed effect on bullet lists */
li .line:first-child {
margin-top: 10px;
}
pre.fragment { pre.fragment {
border: 1px solid #cccccc; border: 1px solid #cccccc;
background-color: #eeeeee; background-color: #eeeeee;
@ -707,12 +716,26 @@ div.ingroups a {
color: #ffffff; color: #ffffff;
} }
div.header { div.header, div.footer {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
width: 980px; width: 980px;
} }
div.footer {
font-size: 10px;
text-align: center;
}
div.footer span.copyright {
padding-right: 50px;
padding-left: 50px;
}
div.footer a {
color: black;
}
div.headertitle { div.headertitle {
background-color: #606060; background-color: #606060;
padding: 5px 0px 5px 0px; padding: 5px 0px 5px 0px;
@ -774,7 +797,7 @@ dl {
padding: 0 0 0 10px; padding: 0 0 0 10px;
} }
dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug { dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug, dl.since {
border-left: 4px solid; border-left: 4px solid;
padding: 0 0 0 6px; padding: 0 0 0 6px;
} }
@ -791,10 +814,14 @@ dl.pre, dl.post, dl.invariant {
border-color: #00D000; border-color: #00D000;
} }
dl.deprecated { dl.deprecated, dl.since {
border-color: #505050; border-color: #505050;
} }
dl.since dt {
height: 0;
}
dl.todo { dl.todo {
border-color: #00C0E0; border-color: #00C0E0;
} }

View File

@ -1,2 +1,9 @@
<div class="footer">
<p>
<span class="version">$projectname $projectnumber</span>
<span class="copyright">Copyright &copy;2000-$year <a href="http://www.enlightenment.org">enlightenment.org</a></span>
<span class="generated">Generated @ $datetime</span>
</p>
</div>
</body> </body>
</html> </html>