From 793c242393608779a13b14d3ef6f36aa501d4c57 Mon Sep 17 00:00:00 2001 From: Bradley Ayers Date: Fri, 25 Mar 2011 13:31:15 +1000 Subject: [PATCH] * Fixed the paleblue theme CSS --- .../themes/paleblue/css/screen.css | 28 +++++++++---------- docs/conf.py | 4 +-- setup.py | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/django_tables/static/django_tables/themes/paleblue/css/screen.css b/django_tables/static/django_tables/themes/paleblue/css/screen.css index 771a49f..916a2b9 100644 --- a/django_tables/static/django_tables/themes/paleblue/css/screen.css +++ b/django_tables/static/django_tables/themes/paleblue/css/screen.css @@ -1,36 +1,36 @@ -table.babyblue { +table.paleblue { border-collapse: collapse; border-color: #CCC; border: 1px solid #DDD; font-family: 'Lucida Grande', Verdana, Arial, sans-serif; } -table.babyblue a:link, -table.babyblue a:visited { +table.paleblue a:link, +table.paleblue a:visited { color: #5B80B2; text-decoration: none; font-weight: bold; } -table.babyblue a:hover { +table.paleblue a:hover { color: #036; } -table.babyblue td, -table.babyblue th { +table.paleblue td, +table.paleblue th { padding: 5px; line-height: 13px; border-bottom: 1px solid #EEE; border-left: 1px solid #DDD; } -table.babyblue thead th:first-child, -table.babyblue thead td:first-child { +table.paleblue thead th:first-child, +table.paleblue thead td:first-child { border-left: none !important; } -table.babyblue thead th, -table.babyblue thead td { +table.paleblue thead th, +table.paleblue thead td { background: #FCFCFC url(../img/nav-bg.gif) top left repeat-x; border-bottom: 1px solid #DDD; padding: 2px 5px; @@ -40,16 +40,16 @@ table.babyblue thead td { color: #666; } -table.babyblue thead th > a:link, -table.babyblue thead th > a:visited { +table.paleblue thead th > a:link, +table.paleblue thead th > a:visited { color: #666; display: block; } -table.babyblue tr.odd { +table.paleblue tr.odd { background-color: #EDF3FE; } -table.babyblue tr.even { +table.paleblue tr.even { background-color: white; } diff --git a/docs/conf.py b/docs/conf.py index ada3098..ad216cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ project = u'django-tables' # built documents. # # The short X.Y version. -version = '0.4.0.alpha3' +version = '0.4.0.alpha4' # The full version, including alpha/beta/rc tags. -release = '0.4.0.alpha3' +release = '0.4.0.alpha4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 10b2497..a32ebe1 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name='django-tables', - version='0.4.0.alpha3', + version='0.4.0.alpha4', description='Table framework for Django', author='Bradley Ayers', -- 2.26.2