* Fixed the paleblue theme CSS
authorBradley Ayers <bradley.ayers@enigmainteractive.com>
Fri, 25 Mar 2011 03:31:15 +0000 (13:31 +1000)
committerBradley Ayers <bradley.ayers@enigmainteractive.com>
Fri, 25 Mar 2011 03:31:15 +0000 (13:31 +1000)
django_tables/static/django_tables/themes/paleblue/css/screen.css
docs/conf.py
setup.py

index 771a49f595a79786ae051e734b512c8cd4549718..916a2b9146480703c16ac5cfc5ecab9674baf917 100644 (file)
@@ -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;
 }
index ada3098fc1528022042d083dab0f1bb3e0022a5f..ad216cb863ed7aaef730be97518469e26cc7a01b 100644 (file)
@@ -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.
index 10b249701c66192345c56184e1f515649d420f5f..a32ebe10929966a55ea7a498e88ca19fed36078a 100755 (executable)
--- 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',