Fixed some doc appearance issue.

Started cleaning up the CSS.
This commit is contained in:
Hauke Heibel 2010-06-30 15:52:00 +02:00
parent 56fe64c15d
commit b1741c1dc6
2 changed files with 227 additions and 158 deletions

View File

@ -144,7 +144,7 @@ matrix.rows(); matrix.cols();
matrix.innerSize(); matrix.outerSize(); matrix.innerSize(); matrix.outerSize();
matrix.innerStride(); matrix.outerStride(); matrix.innerStride(); matrix.outerStride();
matrix.data(); matrix.data();
\endcode</td><td class="note">\n Inner/Outer* are storage order dependent</td></tr> \endcode</td><td class="note">Inner/Outer* are storage order dependent</td></tr>
<tr><td>Compile-time info</td> <tr><td>Compile-time info</td>
<td colspan="2">\code <td colspan="2">\code
ObjectType::Scalar ObjectType::RowsAtCompileTime ObjectType::Scalar ObjectType::RowsAtCompileTime
@ -164,7 +164,7 @@ matrix.resize(Eigen::NoChange, nb_cols);
matrix.resize(nb_rows, Eigen::NoChange); matrix.resize(nb_rows, Eigen::NoChange);
matrix.resizeLike(other_matrix); matrix.resizeLike(other_matrix);
matrix.conservativeResize(nb_rows, nb_cols); matrix.conservativeResize(nb_rows, nb_cols);
\endcode</td><td class="note">no-op if the new sizes match,\n otherwise data are lost \n \n resizing with data preservation</td></tr> \endcode</td><td class="note">no-op if the new sizes match,<br/>otherwise data are lost<br/><br/>resizing with data preservation</td></tr>
<tr><td>Coeff access with \n range checking</td> <tr><td>Coeff access with \n range checking</td>
<td>\code <td>\code

View File

@ -1,37 +1,45 @@
BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV { body,h1,h2,h3,h4,h5,h6,p,center,td,th,ul,dl,div {
font-family: Verdana, Arial, Helvetica, sans-serif; font-family: verdana, arial, helvetica, sans-serif;
font-size: 10pt; font-size: 10pt;
} }
H1 {
text-align: center; h1 {
font-size: 150%; text-align: center;
font-size: 150%;
} }
H2 {
font-size: 120%; h2 {
font-size: 120%;
} }
H3 {
font-size: 100%; h3 {
font-size: 100%;
} }
TD H2
td h2
{ {
/* We need the margin in order to ensure that in tables /* we need the margin in order to ensure that in tables
* the headings are centered. */ * the headings are centered. */
margin-top: 12px; margin-top: 12px;
margin-bottom: 12px; margin-bottom: 12px;
} }
CAPTION {
caption {
font-weight: bold font-weight: bold
} }
DIV.center {
text-align: center; div.center {
margin-top: 0px; text-align: center;
margin-top: 0px;
margin-bottom: 0px; margin-bottom: 0px;
padding: 0px; padding: 0px;
} }
DIV.center img {
border: 0px; div.center img {
border: 0px;
} }
DIV.qindex {
div.qindex {
width: 100%; width: 100%;
background-color: #e8eef2; background-color: #e8eef2;
border: 1px solid #84b0c7; border: 1px solid #84b0c7;
@ -40,7 +48,8 @@ DIV.qindex {
padding: 2px; padding: 2px;
line-height: 140%; line-height: 140%;
} }
DIV.navpath {
div.navpath {
width: 100%; width: 100%;
background-color: #e8eef2; background-color: #e8eef2;
border: 1px solid #84b0c7; border: 1px solid #84b0c7;
@ -49,86 +58,104 @@ DIV.navpath {
padding: 2px; padding: 2px;
line-height: 140%; line-height: 140%;
} }
DIV.navtab {
background-color: #e8eef2; div.navtab {
border: 1px solid #84b0c7; background-color: #e8eef2;
text-align: center; border: 1px solid #84b0c7;
margin: 2px; text-align: center;
margin-right: 15px; margin: 2px;
padding: 2px; margin-right: 15px;
padding: 2px;
} }
TD.navtab {
td.navtab {
font-size: 100%; font-size: 100%;
} }
A.qindex {
a.qindex {
text-decoration: none; text-decoration: none;
font-weight: bold; font-weight: bold;
color: #1A419D; color: #1a419d;
} }
A.qindex:visited {
a.qindex:visited {
text-decoration: none; text-decoration: none;
font-weight: bold; font-weight: bold;
color: #1A419D color: #1a419d
} }
A.qindex:hover {
a.qindex:hover {
text-decoration: none; text-decoration: none;
background-color: #ddddff; background-color: #ddddff;
} }
A.qindexHL {
a.qindexhl {
text-decoration: none; text-decoration: none;
font-weight: bold; font-weight: bold;
background-color: #6666cc; background-color: #6666cc;
color: #ffffff; color: #ffffff;
border: 1px double #9295C2; border: 1px double #9295c2;
} }
A.qindexHL:hover {
a.qindexhl:hover {
text-decoration: none; text-decoration: none;
background-color: #6666cc; background-color: #6666cc;
color: #ffffff; color: #ffffff;
} }
A.qindexHL:visited {
a.qindexhl:visited {
text-decoration: none; text-decoration: none;
background-color: #6666cc; background-color: #6666cc;
color: #ffffff color: #ffffff
} }
A.el {
a.el {
text-decoration: none; text-decoration: none;
font-weight: bold font-weight: bold
} }
A.elRef {
a.elref {
font-weight: bold font-weight: bold
} }
A.code:link {
a.code:link {
text-decoration: none; text-decoration: none;
font-weight: normal; font-weight: normal;
color: #0000FF color: #0000ff
} }
A.code:visited {
a.code:visited {
text-decoration: none; text-decoration: none;
font-weight: normal; font-weight: normal;
color: #0000FF color: #0000ff
} }
A.codeRef:link {
a.coderef:link {
font-weight: normal; font-weight: normal;
color: #0000FF color: #0000ff
} }
A.codeRef:visited {
a.coderef:visited {
font-weight: normal; font-weight: normal;
color: #0000FF color: #0000ff
} }
A:hover {
a:hover {
text-decoration: none; text-decoration: none;
background-color: #f2f2ff background-color: #f2f2ff
} }
DL.el {
dl.el {
margin-left: -1cm margin-left: -1cm
} }
.fragment { .fragment {
font-family: monospace, fixed; font-family: monospace, fixed;
font-size: 95%; font-size: 95%;
} }
PRE.fragment {
border: 1px solid #CCCCCC; pre.fragment {
border: 1px solid #cccccc;
background-color: #f5f5f5; background-color: #f5f5f5;
margin-top: 4px; margin-top: 4px;
margin-bottom: 4px; margin-bottom: 4px;
@ -139,7 +166,8 @@ PRE.fragment {
padding-top: 4px; padding-top: 4px;
padding-bottom: 4px; padding-bottom: 4px;
} }
DIV.ah {
div.ah {
background-color: black; background-color: black;
font-weight: bold; font-weight: bold;
color: #ffffff; color: #ffffff;
@ -147,24 +175,27 @@ DIV.ah {
margin-top: 3px margin-top: 3px
} }
DIV.groupHeader { div.groupheader {
margin-left: 16px; margin-left: 16px;
margin-top: 12px; margin-top: 12px;
margin-bottom: 6px; margin-bottom: 6px;
font-weight: bold; font-weight: bold;
} }
DIV.groupText {
div.grouptext {
margin-left: 16px; margin-left: 16px;
font-style: italic; font-style: italic;
font-size: 95% font-size: 95%
} }
BODY {
body {
background: white; background: white;
color: black; color: black;
margin-right: 20px; margin-right: 20px;
margin-left: 20px; margin-left: 20px;
} }
TD.indexkey {
td.indexkey {
background-color: #e8eef2; background-color: #e8eef2;
font-weight: bold; font-weight: bold;
padding-right : 10px; padding-right : 10px;
@ -175,9 +206,10 @@ TD.indexkey {
margin-right : 0px; margin-right : 0px;
margin-top : 2px; margin-top : 2px;
margin-bottom : 2px; margin-bottom : 2px;
border: 1px solid #CCCCCC; border: 1px solid #cccccc;
} }
TD.indexvalue {
td.indexvalue {
background-color: #e8eef2; background-color: #e8eef2;
font-style: italic; font-style: italic;
padding-right : 10px; padding-right : 10px;
@ -188,57 +220,62 @@ TD.indexvalue {
margin-right : 0px; margin-right : 0px;
margin-top : 2px; margin-top : 2px;
margin-bottom : 2px; margin-bottom : 2px;
border: 1px solid #CCCCCC; border: 1px solid #cccccc;
} }
TR.memlist {
tr.memlist {
background-color: #f0f0f0; background-color: #f0f0f0;
} }
P.formulaDsp {
p.formuladsp {
text-align: center; text-align: center;
} }
IMG.formulaDsp {
img.formuladsp {
} }
IMG.formulaInl {
img.formulainl {
vertical-align: middle; vertical-align: middle;
} }
SPAN.keyword { color: #008000 }
SPAN.keywordtype { color: #604020 }
SPAN.keywordflow { color: #e08000 }
SPAN.comment { color: #800000 }
SPAN.preprocessor { color: #806020 }
SPAN.stringliteral { color: #002080 }
SPAN.charliteral { color: #008080 }
SPAN.vhdldigit { color: #ff00ff }
SPAN.vhdlchar { color: #000000 }
SPAN.vhdlkeyword { color: #700070 }
SPAN.vhdllogic { color: #ff0000 }
/* @group Member Descriptions */ span.keyword { color: #008000 }
span.keywordtype { color: #604020 }
span.keywordflow { color: #e08000 }
span.comment { color: #800000 }
span.preprocessor { color: #806020 }
span.stringliteral { color: #002080 }
span.charliteral { color: #008080 }
span.vhdldigit { color: #ff00ff }
span.vhdlchar { color: #000000 }
span.vhdlkeyword { color: #700070 }
span.vhdllogic { color: #ff0000 }
.mdescLeft, .mdescRight, /* @group member descriptions */
.memItemLeft, .memItemRight,
.memTemplItemLeft, .memTemplItemRight, .memTemplParams { .mdescleft, .mdescright,
background-color: #FAFAFA; .memitemleft, .memitemright,
border: none; .memtemplitemleft, .memtemplitemright, .memtemplparams {
margin: 4px; background-color: #fafafa;
padding: 1px 0 0 8px; border: none;
margin: 4px;
padding: 1px 0 0 8px;
} }
.mdescLeft, .mdescRight { .mdescleft, .mdescright {
padding: 0px 8px 4px 8px; padding: 0px 8px 4px 8px;
color: #555; color: #555;
} }
.memItemLeft, .memItemRight, .memTemplParams { .memitemleft, .memitemright, .memtemplparams {
border-top: 1px solid #ccc; border-top: 1px solid #ccc;
} }
.memItemLeft, .memTemplItemLeft { .memitemleft, .memtemplitemleft {
white-space: nowrap; white-space: nowrap;
} }
.memTemplParams { .memtemplparams {
color: #606060; color: #606060;
white-space: nowrap; white-space: nowrap;
} }
@ -246,147 +283,162 @@ SPAN.vhdllogic { color: #ff0000 }
color: #003399; color: #003399;
font-weight: bold; font-weight: bold;
} }
FORM.search {
form.search {
margin-bottom: 0px; margin-bottom: 0px;
margin-top: 0px; margin-top: 0px;
} }
INPUT.search {
input.search {
font-size: 90%; font-size: 90%;
color: #000080; color: #000080;
font-weight: normal; font-weight: normal;
background-color: #e8eef2; background-color: #e8eef2;
} }
TD.tiny {
td.tiny {
font-size: 85%; font-size: 85%;
} }
a { a {
color: #1A41A8; color: #1a41a8;
} }
a:visited { a:visited {
color: #2A3798; color: #2a3798;
} }
.dirtab { .dirtab {
padding: 4px; padding: 4px;
border-collapse: collapse; border-collapse: collapse;
border: 1px solid #84b0c7; border: 1px solid #84b0c7;
} }
TH.dirtab {
th.dirtab {
background: #e8eef2; background: #e8eef2;
font-weight: bold; font-weight: bold;
} }
hr { hr {
height: 0; height: 0;
border: none; border: none;
border-top: 1px solid #666; border-top: 1px solid #666;
} }
/* Styles for detailed member documentation */ /* styles for detailed member documentation */
.memtemplate { .memtemplate {
font-size: 80%; font-size: 80%;
color: #606060; color: #606060;
font-weight: normal; font-weight: normal;
margin-left: 3px; margin-left: 3px;
} }
.memnav { .memnav {
background-color: #e8eef2; background-color: #e8eef2;
border: 1px solid #84b0c7; border: 1px solid #84b0c7;
text-align: center; text-align: center;
margin: 2px; margin: 2px;
margin-right: 15px; margin-right: 15px;
padding: 2px; padding: 2px;
} }
.memitem { .memitem {
padding: 0; padding: 0;
margin-bottom: 10px; margin-bottom: 10px;
} }
.memname { .memname {
white-space: nowrap; white-space: nowrap;
font-weight: bold; font-weight: bold;
} }
.memproto, .memdoc { .memproto, .memdoc {
border: 1px solid #84b0c7; border: 1px solid #84b0c7;
} }
.memproto { .memproto {
padding: 2; padding: 2;
background-color: #d5e1e8; background-color: #d5e1e8;
font-weight: bold; font-weight: bold;
-webkit-border-top-left-radius: 8px; -webkit-border-top-left-radius: 8px;
-webkit-border-top-right-radius: 8px; -webkit-border-top-right-radius: 8px;
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
-moz-border-radius-topleft: 8px; -moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px; -moz-border-radius-topright: 8px;
-moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
} }
.memdoc { .memdoc {
padding: 2px 5px; padding: 2px 5px;
background-color: #eef3f5; background-color: #eef3f5;
border-top-width: 0; border-top-width: 0;
-webkit-border-bottom-left-radius: 8px; -webkit-border-bottom-left-radius: 8px;
-webkit-border-bottom-right-radius: 8px; -webkit-border-bottom-right-radius: 8px;
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
-moz-border-radius-bottomleft: 8px; -moz-border-radius-bottomleft: 8px;
-moz-border-radius-bottomright: 8px; -moz-border-radius-bottomright: 8px;
-moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;
} }
.paramkey { .paramkey {
text-align: right; text-align: right;
} }
.paramtype { .paramtype {
white-space: nowrap; white-space: nowrap;
} }
.paramname { .paramname {
color: #602020; color: #602020;
white-space: nowrap; white-space: nowrap;
} }
.paramname em { .paramname em {
font-style: normal; font-style: normal;
} }
/* End Styling for detailed member documentation */ /* end styling for detailed member documentation */
/* for the tree view */ /* for the tree view */
.ftvtree { .ftvtree {
font-family: sans-serif; font-family: sans-serif;
margin:0.5em; margin:0.5em;
} }
.directory { .directory {
font-size: 9pt; font-size: 9pt;
font-weight: bold; font-weight: bold;
} }
.directory h3 { .directory h3 {
margin: 0px; margin: 0px;
margin-top: 1em; margin-top: 1em;
font-size: 11pt; font-size: 11pt;
} }
.directory > h3 { .directory > h3 {
margin-top: 0; margin-top: 0;
} }
.directory p { .directory p {
margin: 0px; margin: 0px;
white-space: nowrap; white-space: nowrap;
} }
.directory div { .directory div {
display: none; display: none;
margin: 0px; margin: 0px;
} }
.directory img { .directory img {
vertical-align: -30%; vertical-align: -30%;
} }
H2 A {
h2 a {
font-size: 13pt;margin:10px 0 1em 1em;display:block; font-size: 13pt;margin:10px 0 1em 1em;display:block;
} }
A.top {
a.top {
font-size: 11pt; font-size: 11pt;
display:block; display:block;
color: #666666; color: #666666;
@ -395,14 +447,12 @@ A.top {
margin:12pt 0 0 0; margin:12pt 0 0 0;
text-decoration : none; text-decoration : none;
} }
A.top:hover, A.logo:hover {
a.top:hover, a.logo:hover {
background-color: transparent;font-weight : bolder; background-color: transparent;font-weight : bolder;
} }
.note {
font-size: 8.5pt;
}
DIV.navigation { div.navigation {
min-height : 64px; min-height : 64px;
padding-left : 80px; padding-left : 80px;
padding-top : 5px; padding-top : 5px;
@ -411,21 +461,22 @@ DIV.navigation {
img { img {
border: 0; border: 0;
} }
table { table {
border-collapse: collapse; border-collapse: collapse;
border-style: none; border-style: none;
font-size: 1em; font-size: 1em;
} }
th { th {
text-align: left; text-align: left;
padding-right: 1em; padding-right: 1em;
/* border: #cccccc dashed; */ /* border: #cccccc dashed; */
/* border-style: dashed; */ /* border-style: dashed; */
/* border-width: 0 0 3px 0; */ /* border-width: 0 0 3px 0; */
} }
table.noborder {
TABLE.noborder {
border-collapse: separate; border-collapse: separate;
border-bottom-style : none; border-bottom-style : none;
border-left-style : none; border-left-style : none;
@ -435,7 +486,8 @@ TABLE.noborder {
margin: 4pt 0 0 0; margin: 4pt 0 0 0;
padding: 0 0 0 0; padding: 0 0 0 0;
} }
TABLE.noborder TD {
table.noborder td {
border-bottom-style : none; border-bottom-style : none;
border-left-style : none; border-left-style : none;
border-right-style : none; border-right-style : none;
@ -454,11 +506,13 @@ table.tutorial_code {
margin: 4pt 0 0 0; margin: 4pt 0 0 0;
padding: 0 0 0 0; padding: 0 0 0 0;
} }
table.tutorial_code tr { table.tutorial_code tr {
border-style: dashed; border-style: dashed;
border-width: 1px; border-width: 1px;
border-color: #888888; border-color: #888888;
} }
table.tutorial_code td { table.tutorial_code td {
border-style: none dotted none dotted; border-style: none dotted none dotted;
border-width: 0 1px 0 1px; border-width: 0 1px 0 1px;
@ -468,13 +522,28 @@ table.tutorial_code td {
padding: 2pt 5pt 2pt 5pt; padding: 2pt 5pt 2pt 5pt;
vertical-align: top; vertical-align: top;
} }
DIV.eimainmenu {
table.tutorial_code td.note {
font-size: 8.5pt;
padding-top: 3pt;
}
/* Whenever doxygen meets a '\n' or a '<BR/>', it will put
* the text containing the characted into a <p class="starttd">.
* This little hack togehter with table.tutorial_code td.note
* aims at fixing this issue. */
table.tutorial_code td.note p.starttd {
font-size: 8.5pt;
border: none;
margin: 0pt;
padding: 0pt;
}
div.eimainmenu {
text-align: center; text-align: center;
/* border-top: solid; */
/* border-bottom: solid; */
} }
/* center version number on main page */ /* center version number on main page */
H3.version { h3.version {
text-align: center; text-align: center;
} }