aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2012-11-26 15:12:10 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2012-11-26 15:12:10 +0100
commit6462feb5419bc848ae7960376b8ddde545eab1c7 (patch)
treee76ca8c38bbf15c008982a82322542c95ad67c83 /source
parentAdded CSS box for the main menu. (diff)
downloadnewspipe-6462feb5419bc848ae7960376b8ddde545eab1c7.tar.gz
newspipe-6462feb5419bc848ae7960376b8ddde545eab1c7.tar.bz2
newspipe-6462feb5419bc848ae7960376b8ddde545eab1c7.zip
Removed the horrible box.
Diffstat (limited to 'source')
-rwxr-xr-xsource/css/style.css14
-rwxr-xr-xsource/pyAggr3g470r.py3
2 files changed, 1 insertions, 16 deletions
diff --git a/source/css/style.css b/source/css/style.css
index 7d6c0179..273f9c3f 100755
--- a/source/css/style.css
+++ b/source/css/style.css
@@ -223,20 +223,6 @@ blockquote.right {
margin-right: -0.1em;
}
-
-/* Menu box */
-.menubox
-{
-
-padding:0px;
-border:2px solid gray;
-margin:0px;
-background:#C0C0C0;
-display: inline-block;
-}
-
-
-
/* CSS ToolTips */
.tooltip {
color: #FFF;
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 4be7df78..f7e3c21c 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -149,7 +149,7 @@ class pyAggr3g470r(object):
[""])[0])
html += htmlnav
html += self.create_right_menu()
- html += """<div class="left inner">\n<div class="menubox" width='*'>"""
+ html += """<div class="left inner">\n"""
if feeds:
html += '<a href="/management/"><img src="/img/management.png" title="Management" /></a>\n'
@@ -168,7 +168,6 @@ class pyAggr3g470r(object):
html += """<a href="/unread/"><img src="/img/unread.png" title="Unread article(s): %s" /></a>\n""" % \
(nb_unread_articles,)
html += '<a accesskey="F" href="/fetch/"><img src="/img/check-news.png" title="Check for news" /></a>\n'
- html += '</div>'
# The main page display all the feeds.
bgstack15