mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Wrench is now a cog. Pretty.
This commit is contained in:
parent
08ef889e09
commit
b95e5d2977
5 changed files with 20 additions and 15 deletions
|
@ -514,7 +514,7 @@ background: transparent;
|
|||
}
|
||||
|
||||
#story_titles .NB-feedbar .NB-feedbar-manage-feed {
|
||||
background: transparent url("../img/icons/silk/wrench.png") no-repeat center center;
|
||||
background: transparent url("../img/icons/silk/cog.png") no-repeat center center;
|
||||
float: left;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
|
@ -1084,7 +1084,7 @@ background: transparent;
|
|||
background: transparent url('../img/icons/silk/add.png') no-repeat center 8px;
|
||||
}
|
||||
.NB-taskbar .task_button.NB-task-manage {
|
||||
background: transparent url('../img/icons/silk/wrench.png') no-repeat center 8px;
|
||||
background: transparent url('../img/icons/silk/cog.png') no-repeat center 8px;
|
||||
}
|
||||
.NB-taskbar .task_button.task_profile {
|
||||
background: transparent url('../img/icons/silk/user.png') no-repeat center 8px;
|
||||
|
|
|
@ -191,6 +191,7 @@ INSTALLED_APPS = (
|
|||
'devserver',
|
||||
'south',
|
||||
'test_utils',
|
||||
'utils',
|
||||
# 'debug_toolbar'
|
||||
)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{% load compressed %}
|
||||
{% load compressed utils_tags %}
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html>
|
||||
|
@ -40,20 +40,19 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
{{ session }}
|
||||
|
||||
{% block header %}{% endblock %}
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
<script type="text/javascript">
|
||||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
try {
|
||||
var pageTracker = _gat._getTracker("UA-8371683-2");
|
||||
pageTracker._trackPageview();
|
||||
} catch(err) {}</script>
|
||||
|
||||
{% if not debug %}
|
||||
<script type="text/javascript">
|
||||
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||||
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
try {
|
||||
var pageTracker = _gat._getTracker("UA-8371683-2");
|
||||
pageTracker._trackPageview();
|
||||
} catch(err) {}</script>
|
||||
{% endif %}
|
||||
</body>
|
||||
</html>
|
||||
|
|
0
utils/templatetags/__init__.py
Normal file
0
utils/templatetags/__init__.py
Normal file
5
utils/templatetags/utils_tags.py
Normal file
5
utils/templatetags/utils_tags.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.conf import settings
|
||||
from django import template
|
||||
|
||||
register = template.Library()
|
||||
|
Loading…
Add table
Reference in a new issue