Skip to content

Commit

Permalink
Merge branch 'master' of github.com:keoghpe/spectre
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Feb 15, 2018
2 parents 4f96539 + a9fb17a commit cb5d09c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/assets/stylesheets/components/masthead.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
animation-iteration-count: infinite;
display: inline-block;
margin-left: 8px;
vertical-align: baseline;
width: 14px;
vertical-align: middle;
width: 32px;
}
4 changes: 2 additions & 2 deletions app/assets/stylesheets/utilities/variables.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
$container-width: 1300px;

$colours: (
'deep-blue': #223658,
'deep-blue': #131313,
'turquoise': #39d398,
'coral-pink': #fb3457,
'yellow': #ffae0c,
'yellow': #eda22b,
'sky': #3d5cee,
'warm-grey': #5f6062,
'dark-grey': #333333,
Expand Down
6 changes: 3 additions & 3 deletions app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<title><%= @page_title %>Spectre</title>
<link rel="icon" href="/favicon.gif">
<title><%= @page_title %>GoldenEye</title>
<link rel="icon" href="/favicon.png">
<%= stylesheet_link_tag 'application', media: 'all' %>
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,700" rel="stylesheet" type="text/css">
<%= javascript_include_tag 'application' %>
Expand All @@ -12,7 +12,7 @@

<div class="masthead">
<div class="container header">
<a class="masthead__name" href="<%= projects_url %>">Spectre<img src="/favicon.gif" alt="" class="masthead__logo"></a>
<a class="masthead__name" href="<%= projects_url %>">GoldenEye<img src="/goldeneye-logo.png" alt="" class="masthead__logo"></a>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/views/projects/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</thead>
<tbody>
<% @projects.includes(:suites).each do |project| %>
<% project.suites.each_with_index do |suite, i| %>
<% project.suites.order(updated_at: :desc).each_with_index do |suite, i| %>
<tr id="project_<%= project.id %>" class="project">
<th><%= project.name %></th>
<td><%= link_to suite.name, project_suite_path(suite.project, suite) %></td>
Expand Down
Binary file added public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/goldeneye-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit cb5d09c

Please sign in to comment.