4
4
<!-- Sidebar index for classes and interfaces -->
5
5
<xsl : template match =" /project/file/class|/project/file/interface" mode =" sidebar" >
6
6
<!-- Visibility toggles -->
7
- <span class =" btn-group visibility" data-toggle =" buttons-checkbox" >
8
- <button class =" btn public active" title =" Show public elements" >Public</button >
9
- <button class =" btn protected" title =" Show protected elements" >Protected</button >
10
- <button class =" btn private" title =" Show private elements" >Private</button >
11
- <button class =" btn inherited active" title =" Show inherited elements" >Inherited</button >
12
- </span >
13
-
14
- <div class =" btn-group view pull-right" data-toggle =" buttons-radio" >
15
- <button class =" btn details" title =" Show descriptions and method names" ><i class =" icon-list" ></i ></button >
16
- <button class =" btn simple" title =" Show only method names" ><i class =" icon-align-justify" ></i ></button >
7
+ <div class =" btn-toolbar" >
8
+ <div class =" btn-group visibility" data-toggle =" buttons-checkbox" >
9
+ <button class =" btn public active" title =" Show public elements" >Public</button >
10
+ <button class =" btn protected" title =" Show protected elements" >Protected</button >
11
+ <button class =" btn private" title =" Show private elements" >Private</button >
12
+ <button class =" btn inherited active" title =" Show inherited elements" >Inherited</button >
13
+ </div >
14
+
15
+ <div class =" btn-group view pull-right" data-toggle =" buttons-radio" >
16
+ <button class =" btn details" title =" Show descriptions and method names" ><i class =" icon-list" ></i ></button >
17
+ <button class =" btn simple" title =" Show only method names" ><i class =" icon-align-justify" ></i ></button >
18
+ </div >
17
19
</div >
18
20
19
21
<ul class =" side-nav nav nav-list" >
20
22
<xsl : if test =" method" >
21
23
<li class =" nav-header" >
22
- <i class =" icon-custom icon-method" ></i >  Methods
24
+ <i title = " Methods " class =" icon-custom icon-method" ></i >  Methods
23
25
<ul >
24
26
<xsl : apply-templates select =" method[@visibility != 'protected' and @visibility != 'private']" mode =" sidebar" >
25
27
<xsl : sort select =" name" />
50
52
51
53
<xsl : if test =" property" >
52
54
<li class =" nav-header" >
53
- <i class =" icon-custom icon-property" ></i >  Properties
55
+ <i title = " Properties " class =" icon-custom icon-property" ></i >  Properties
54
56
<ul >
55
57
<xsl : apply-templates select =" property[@visibility != 'protected' and @visibility != 'private']" mode =" sidebar" >
56
58
<xsl : sort select =" name" />
81
83
82
84
<xsl : if test =" constant" >
83
85
<li class =" nav-header" >
84
- <i class =" icon-custom icon-constant" ></i >  Constants
86
+ <i title = " Constants " class =" icon-custom icon-constant" ></i >  Constants
85
87
<ul >
86
88
<xsl : apply-templates select =" constant" mode =" sidebar" >
87
89
<xsl : sort select =" name" />
159
161
160
162
<ul class =" breadcrumb" >
161
163
<li >
162
- <a href =" {$root}index.html" ><i class =" icon-custom icon-class" ></i ></a >
164
+ <a href =" {$root}index.html" ><i title = " Classes " class =" icon-custom icon-class" ></i ></a >
163
165
<span class =" divider" >\</span >
164
166
</li >
165
167
<xsl : apply-templates select =" //namespace[@full_name=$namespace]" mode =" breadcrumb" >
188
190
</xsl : if >
189
191
190
192
<xsl : if test =" method" >
191
- <h3 ><i class =" icon-custom icon-method" ></i >  Methods</h3 >
193
+ <h3 ><i title = " Methods " class =" icon-custom icon-method" ></i >  Methods</h3 >
192
194
<xsl : apply-templates select =" method" mode =" contents" >
193
195
<xsl : sort select =" @visibility" order =" descending" />
194
196
<xsl : sort select =" name" />
195
197
</xsl : apply-templates >
196
198
</xsl : if >
197
199
198
200
<xsl : if test =" property" >
199
- <h3 ><i class =" icon-custom icon-property" ></i >  Properties</h3 >
201
+ <h3 ><i title = " Properties " class =" icon-custom icon-property" ></i >  Properties</h3 >
200
202
<xsl : apply-templates select =" property" mode =" contents" >
201
203
<xsl : sort select =" @visibility" order =" descending" />
202
204
<xsl : sort select =" name" />
203
205
</xsl : apply-templates >
204
206
</xsl : if >
205
207
206
208
<xsl : if test =" constant" >
207
- <h3 ><i class =" icon-custom icon-constant" ></i >  Constants</h3 >
209
+ <h3 ><i title = " Constants " class =" icon-custom icon-constant" ></i >  Constants</h3 >
208
210
<xsl : apply-templates select =" constant" mode =" contents" >
209
211
<xsl : sort select =" name" />
210
212
</xsl : apply-templates >
213
215
</div >
214
216
</xsl : template >
215
217
216
- </xsl : stylesheet >
218
+ </xsl : stylesheet >
0 commit comments