Skip to content

Commit 977a67b

Browse files
committed
Replace text with logo in navigation bar
1 parent 88cb575 commit 977a67b

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed

etc/typedoc/theme/assets/css/overrides.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,7 @@
2828
font-size: 1em;
2929
margin-top: 0.5em;
3030
}
31+
32+
.tsd-page-toolbar .title img {
33+
vertical-align: bottom;
34+
}
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<header>
2+
<div class="tsd-page-toolbar">
3+
<div class="container">
4+
<div class="table-wrap">
5+
<div class="table-cell" id="tsd-search" data-index="{{relativeURL "assets/js/search.js"}}" data-base="{{relativeURL "./"}}">
6+
<div class="field">
7+
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
8+
<input id="tsd-search-field" type="text" />
9+
</div>
10+
11+
<ul class="results">
12+
<li class="state loading">Preparing search index...</li>
13+
<li class="state failure">The search index is not available</li>
14+
</ul>
15+
16+
<a href="{{relativeURL "index.html"}}" class="title"><img src="{{relativeURL "logo_white.svg"}}" alt="stdlib"></a>
17+
</div>
18+
19+
<div class="table-cell" id="tsd-widgets">
20+
<div id="tsd-filter">
21+
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
22+
<div class="tsd-filter-group">
23+
<div class="tsd-select" id="tsd-filter-visibility">
24+
<span class="tsd-select-label">All</span>
25+
<ul class="tsd-select-list">
26+
<li data-value="public">Public</li>
27+
<li data-value="protected">Public/Protected</li>
28+
<li data-value="private" class="selected">All</li>
29+
</ul>
30+
</div>
31+
32+
<input type="checkbox" id="tsd-filter-inherited" checked />
33+
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
34+
35+
{{#unless settings.excludeExternals}}
36+
<input type="checkbox" id="tsd-filter-externals" checked />
37+
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
38+
{{/unless}}
39+
40+
{{#unless settings.excludeNotExported}}
41+
<input type="checkbox" id="tsd-filter-only-exported" />
42+
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
43+
{{/unless}}
44+
</div>
45+
</div>
46+
47+
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
48+
</div>
49+
</div>
50+
</div>
51+
</div>
52+
<div class="tsd-page-title">
53+
<div class="container">
54+
<ul class="tsd-breadcrumb">
55+
{{#with model}}{{> breadcrumb}}{{/with}}
56+
</ul>
57+
<h1>{{#compact}}
58+
{{model.kindString}}&nbsp;
59+
{{model.name}}
60+
{{#if model.typeParameters}}
61+
&lt;
62+
{{#each model.typeParameters}}
63+
{{#if @index}},&nbsp;{{/if}}
64+
{{name}}
65+
{{/each}}
66+
&gt;
67+
{{/if}}
68+
{{/compact}}</h1>
69+
</div>
70+
</div>
71+
</header>

0 commit comments

Comments
 (0)