File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,11 @@ table.structTable tr td {
136136 padding-left : 3em ;
137137}
138138
139+ .funcTable .type ,
140+ .structTable .type {
141+ text-align : right;
142+ }
143+
139144code .params {
140145 white-space : pre-wrap; /* css-3 */
141146 white-space : -moz-pre-wrap; /* Mozilla, since 1999 */
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ <h3><a href="#">Examples</a></h3>
111111 < table class = "funcTable" >
112112 < % _ . each ( args , function ( arg ) { % >
113113 < tr >
114- < td valign = "top" nowrap = "true" > < %= arg . link % > </ td >
114+ < td valign = "top" class = "type" nowrap = "true" > < %= arg . link % > </ td >
115115 < td valign = "top" class = "var" > < %= arg . name % > </ td >
116116 < td class = "comment" > < %= arg . comment % > </ td >
117117 </ tr >
@@ -258,7 +258,7 @@ <h1 class="structTitle"><%= type.tname %><small><%= type.type %></small></h1>
258258 < table class = "structTable" >
259259 < % _ . each ( type . data . fields , function ( field ) { % >
260260 < tr >
261- < td valign = "top" > < %= field . type % > </ td >
261+ < td class = "type" valign = "top" > < %= field . type % > </ td >
262262 < td class = "var" > < %= field . name % > </ td >
263263 < % if ( field . comments ) { % >
264264 </ tr >
You can’t perform that action at this time.
0 commit comments