Skip to content

Commit 47c1447

Browse files
Add a more prominent link to the quickref.
1 parent 1052c2b commit 47c1447

File tree

1 file changed

+36
-13
lines changed

1 file changed

+36
-13
lines changed

index.html

Lines changed: 36 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,23 @@
5252
font-family: Verdana, sans-serif;
5353
}
5454
#toc-button {
55-
position:fixed;
56-
top:10px;
57-
right:10px;
58-
background:transparent;
59-
padding:15px;
60-
z-index:999;
61-
max-height:400px;
62-
overflow:auto;
63-
font-size:11px;
64-
font-family:Verdana, sans-serif;
55+
position: fixed;
56+
top: 10px;
57+
right: 10px;
58+
background: transparent;
59+
padding: 15px;
60+
z-index: 999;
61+
max-height: 400px;
62+
overflow: auto;
63+
font-size: 11px;
64+
font-family: Verdana, sans-serif;
6565
}
6666
#toc .button,
67-
#toc-button .button {
67+
#toc-button .button,
68+
#quickref-button .button {
6869
float: right;
70+
width: 59px;
71+
text-align: center;
6972
margin: 0 0 5px 5px;
7073
padding: 5px;
7174
border: 1px #008 solid;
@@ -94,6 +97,18 @@
9497
.show {
9598
display: block;
9699
}
100+
#quickref-button {
101+
position: fixed;
102+
top: 40px;
103+
right: 10px;
104+
background: transparent;
105+
padding: 15px;
106+
z-index: 999;
107+
max-height: 400px;
108+
overflow: auto;
109+
font-size: 11px;
110+
font-family: Verdana, sans-serif;
111+
}
97112
code { color: green; font-weight: bold; }
98113
pre { color: green; font-weight: bold; font-family: monospace}
99114
em { font-style: italic; color: rgb(0, 0, 153) }
@@ -535,12 +550,16 @@ <h2 id=acks>Acknowledgements</h2>
535550
<div id=toc-button style="">
536551
<a class=button href="
537552
javascript:document.getElementById('toc').className = 'show';
538-
document.getElementById('toc-button').className = 'hide';">Show TOC</a>
553+
document.getElementById('toc-button').className = 'hide';
554+
document.getElementById('quickref-button').className = 'hide';"
555+
>Show TOC</a>
539556
</div>
540557
<div id=toc class=hide>
541558
<a class=button href="
542559
javascript:document.getElementById('toc').className = 'hide';
543-
document.getElementById('toc-button').className = 'show';">Close</a>
560+
document.getElementById('toc-button').className = 'show';
561+
document.getElementById('quickref-button').className = 'show';"
562+
>Close</a>
544563
<ol>
545564
<li><a href="#what-tidy-does">What Tidy does</a>
546565
<li><a href="#help">How to run Tidy from the command line</a>
@@ -560,3 +579,7 @@ <h2 id=acks>Acknowledgements</h2>
560579
<li><a href="#acks">Acknowledgements</a>
561580
</ol>
562581
</div>
582+
583+
<div id=quickref-button style="">
584+
<a class=button href="quickref.html">QuickRef</a>
585+
</div>

0 commit comments

Comments
 (0)