Skip to content

Commit

Permalink
Bug 745659 - The table in classes.html has no class attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Dec 28, 2015
1 parent e89eb77 commit 0b4b2d7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1901,7 +1901,7 @@ static void writeAlphabeticalClassList(OutputList &ol)
}
}

ol.writeString("<table style=\"margin: 10px; white-space: nowrap;\" align=\"center\" width=\"95%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n");
ol.writeString("<table class=\"classindex\">\n");
// generate table
for (i=0;i<=maxRows;i++) // foreach table row
{
Expand Down
14 changes: 13 additions & 1 deletion templates/html/doxygen.css
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ div.ah, span.ah {
-webkit-box-shadow: 2px 2px 3px #999;
-moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444));
background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000);
background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%);
}

div.classindex ul {
Expand Down Expand Up @@ -1006,6 +1006,18 @@ div.summary a
white-space: nowrap;
}

table.classindex
{
margin: 10px;
white-space: nowrap;
margin-left: 3%;
margin-right: 3%;
width: 94%;
border: 0;
border-spacing: 0;
padding: 0;
}

div.ingroups
{
font-size: 8pt;
Expand Down

0 comments on commit 0b4b2d7

Please sign in to comment.