Skip to content

Commit fd63775

Browse files
Replace "fork me on github" banner with link
The banner makes it impossible to click "status" on mobile. Also consolidates other github links to the header to make all pages consistent.
1 parent 0fd4b10 commit fd63775

File tree

5 files changed

+10
-27
lines changed

5 files changed

+10
-27
lines changed

site/static/bootstrap.html

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
<body>
5858
<div>&gt; <a href="index.html">graphs</a>, <a href="compare.html">compare</a>,
5959
<a href="dashboard.html">dashboard</a>, <a href="bootstrap.html">bootstrap</a>,
60-
<a href="status.html">status</a>, <a href="help.html">help</a>.
60+
<a href="status.html">status</a>, <a href="https://github.com/rust-lang/rustc-perf">github</a>,
61+
<a href="help.html">help</a>.
6162
</div>
6263
<div id="settings">
6364
start: <input placeholder="yyyy-mm-dd or commit" id="start-bound" />
@@ -75,13 +76,6 @@ <h3>This may take a while!</h3>
7576
<div id="byCrateChart"></div>
7677
<div id="totalChart"></div>
7778
<div id="as-of"></div>
78-
<a href="https://github.com/rust-lang-nursery/rustc-perf">
79-
<img style="position: absolute; top: 0; right: 0; border: 0; clip-path: polygon(8% 0%, 100% 92%, 100% 0%);"
80-
src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67"
81-
alt="Fork me on GitHub"
82-
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
83-
</a>
84-
8579
<script>
8680
function tooltipPlugin({ onclick, commits, shiftX = 10, shiftY = 10 }) {
8781
let tooltipLeftOffset = 0;

site/static/compare.html

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,8 @@
234234
<body>
235235
<div>&gt; <a href="index.html">graphs</a>, <a href="compare.html">compare</a>,
236236
<a href="dashboard.html">dashboard</a>, <a href="bootstrap.html">bootstrap</a>,
237-
<a href="status.html">status</a>, <a href="help.html">help</a>.
237+
<a href="status.html">status</a>, <a href="https://github.com/rust-lang/rustc-perf">github</a>,
238+
<a href="help.html">help</a>.
238239
</div>
239240
<br />
240241
<div id="app">
@@ -528,12 +529,6 @@ <h2>Comparing <span id="stat-header">{{stat}}</span> between <span id="before">{
528529
</div>
529530
<br>
530531
<div id="as-of"></div>
531-
<a href="https://github.com/rust-lang-nursery/rustc-perf">
532-
<img style="position: absolute; top: 0; right: 0; border: 0; clip-path: polygon(8% 0%, 100% 92%, 100% 0%);"
533-
src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67"
534-
alt="Fork me on GitHub"
535-
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
536-
</a>
537532
<script src="https://cdnjs.cloudflare.com/ajax/libs/msgpack-lite/0.1.26/msgpack.min.js"></script>
538533
<script src="shared.js"></script>
539534
<script>

site/static/dashboard.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@
1313
<body class="container">
1414
<div>&gt; <a href="index.html">graphs</a>, <a href="compare.html">compare</a>,
1515
<a href="dashboard.html">dashboard</a>, <a href="bootstrap.html">bootstrap</a>,
16-
<a href="status.html">status</a>, <a href="help.html">help</a>.
16+
<a href="status.html">status</a>, <a href="https://github.com/rust-lang/rustc-perf">github</a>,
17+
<a href="help.html">help</a>.
1718
</div>
1819
<div id="check-average-times"></div>
1920
<div id="debug-average-times"></div>
2021
<div id="opt-average-times"></div>
2122
<div id="as-of"></div>
22-
<div style="text-align: center;">
23-
<a href="https://github.com/rust-lang-nursery/rustc-perf">Contribute on GitHub</a>
24-
</div>
2523
<script src="shared.js"></script>
2624
<script>
2725

site/static/help.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@
2626
<body class="container">
2727
<div>&gt; <a href="index.html">graphs</a>, <a href="compare.html">compare</a>,
2828
<a href="dashboard.html">dashboard</a>, <a href="bootstrap.html">bootstrap</a>,
29-
<a href="status.html">status</a>, <a href="help.html">help</a>.
30-
</div>
31-
<div style="text-align: center;">
32-
<a href="https://github.com/rust-lang-nursery/rustc-perf">Contribute on GitHub</a>
29+
<a href="status.html">status</a>, <a href="https://github.com/rust-lang/rustc-perf">github</a>,
30+
<a href="help.html">help</a>.
3331
</div>
3432
<div class="help-content">
3533
<h3><b><code>@rust-timer</code> commands</b></h3>

site/static/status.html

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,15 @@
2323
<body class="container">
2424
<div>&gt; <a href="index.html">graphs</a>, <a href="compare.html">compare</a>,
2525
<a href="dashboard.html">dashboard</a>, <a href="bootstrap.html">bootstrap</a>,
26-
<a href="status.html">status</a>, <a href="help.html">help</a>.
26+
<a href="status.html">status</a>, <a href="https://github.com/rust-lang/rustc-perf">github</a>,
27+
<a href="help.html">help</a>.
2728
</div>
2829
<div id="data">
2930
<div id="data-insert-js"></div>
3031
Benchmarks for last commit:
3132
<div id="benchmark-state"></div>
3233
</div>
3334
<div id="as-of"></div>
34-
<div style="text-align: center;">
35-
<a href="https://github.com/rust-lang-nursery/rustc-perf">Contribute on GitHub</a>
36-
</div>
3735
<script src="shared.js"></script>
3836
<script>
3937

0 commit comments

Comments
 (0)