Skip to content

Commit

Permalink
Adds favorite icons (#156)
Browse files Browse the repository at this point in the history
To eliminate developer console errors the favicon has been added.
  • Loading branch information
phuong authored and avelis committed Dec 28, 2016
1 parent 44b5dcc commit d65cca8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
Binary file added silk/static/silk/favicon-16x16.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 silk/static/silk/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions silk/templates/silk/base/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<link rel="stylesheet" href="{% static "silk/css/fonts.css" %}"/>
<link rel="stylesheet" href="{% static "silk/css/colors.css" %}"/>
<link rel="stylesheet" href="{% static "silk/lib/jquery-ui-1.10.4.min.css" %}"/>
<link rel="icon" type="image/png" href="{% static 'silk/favicon-32x32.png' %}" sizes="32x32">
<link rel="icon" type="image/png" href="{% static 'silk/favicon-16x16.png' %}" sizes="16x16">
<style>
body {
font-family: FiraSans, "Helvetica Neue", Arial, sans-serif;
Expand Down
2 changes: 2 additions & 0 deletions silk/templates/silk/base/detail_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
{% block style %}
<link rel="stylesheet" href="{% static 'silk/lib/highlight/foundation.css' %}"/>
<link rel="stylesheet" href="{% static 'silk/css/heading.css' %}"/>
<link rel="icon" type="image/png" href="{% static 'silk/favicon-32x32.png' %}" sizes="32x32">
<link rel="icon" type="image/png" href="{% static 'silk/favicon-16x16.png' %}" sizes="16x16">
<style>
#traceback {
overflow: visible;
Expand Down
3 changes: 2 additions & 1 deletion silk/templates/silk/base/root_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
<link rel="stylesheet" href="{% static 'silk/css/cell.css' %}"/>
<link rel="stylesheet" href="{% static 'silk/css/numeric.css' %}"/>
<link rel="stylesheet" href="{% static "silk/lib/jquery.datetimepicker.css" %}"/>

<link rel="icon" type="image/png" href="{% static 'silk/favicon-32x32.png' %}" sizes="32x32">
<link rel="icon" type="image/png" href="{% static 'silk/favicon-16x16.png' %}" sizes="16x16">
<!-- Begin Custom Styles -->
<style>
.cell:hover {
Expand Down

0 comments on commit d65cca8

Please sign in to comment.