Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: RaphaelBergmann/atlas
base: master
head repository: RaphaelBergmann/atlas
compare: task-6355-new
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 4 files changed
  • 0 comments
  • 1 contributor
Showing with 15 additions and 1 deletion.
  1. +4 −0 css/style.css
  2. BIN img/properties/offline_16x16.png
  3. BIN img/properties/online_16x16.png
  4. +11 −1 templates/search/do.html
@@ -81,6 +81,10 @@ pre {
padding: 5px;
}

input {
width:150px;
}

@media screen and (max-width: 980px) {
.splash h1 {
font-size:40px;
Binary file not shown.
Binary file not shown.
@@ -54,6 +54,7 @@ <h1 id="search-title"></h1>
<table class="table table-bordered table-striped" id="torstatus_results">
<thead>
<tr>
<th style="width:16px;">&nbsp;</th>
<th>Nickname</th>
<th>Bandwidth</th>
<th>Uptime</th>
@@ -74,12 +75,19 @@ <h1 id="search-title"></h1>
<% } else { %>
<tr class="odd">
<% } %>
<td>
<% if (relay.get('running') === false) { %>
<img class="tip inline flags" src="img/properties/offline_16x16.png" alt="Currently offline" title="This relay is currently offline."/>
<% } else { %>
<img class="tip inline flags" src="img/properties/online_16x16.png" alt="Currently running" title="This relay is currently running."/>
<% } %>
</td>
<td>
<a href="#details/<%= relay.get('fingerprint') %>">
<%= _.escape(relay.get('nickname')) %>
</a>
</td>
<td><span data-filter="<%= relay.get('bandwidth') %>"><%= relay.get('bandwidth_hr') %></td>
<td><span data-filter="<%= relay.get('bandwidth') %>"><%= relay.get('bandwidth_hr') %></span></td>
<td>
<span data-hidden="<%= relay.get('last_restarted') %>" title="<%= relay.get('uptime_hrfull') %>" data-filter="<%= relay.get('uptime') %>" class="tip uptime">
<% if (relay.get('running') === false) { %><s><% } %><%= relay.get('uptime_hr') %><% if (relay.get('running') === false) { %></s><% } %>
@@ -111,6 +119,8 @@ <h1 id="search-title"></h1>
</tbody>
<tfoot>
<tr>
<th>
</th>
<th>
<input type="text" id="nickname" name="nickname" placeholder="Nickname" class="search_init">
</th>

No commit comments for this range