I think I found a bug. When I use Soren's JQueryUI mod
(http://tablesorter.openwerk.de/) of the JQuery TableSorter plugin
(http://tablesorter.com/) and inject tw.uitheme's Smoothness theme's
CSS, the tablesorter's th elements' contents are bold font-weight when
I don't mouseover them, but they change to normal font-weight when I
mouseover them, which changes the width of the th cell I moused over
and so changes the width of its whole column in an awkward way. Here's
the change I needed to make to fix this behavior:
=== modified
file
'lib/python2.6/site-packages/tw.uitheme-0.1a0-py2.6.egg/tw/uitheme/static/smoothness/jquery-ui-1.8.2.custom.css'
---
lib/python2.6/site-packages/tw.uitheme-0.1a0-py2.6.egg/tw/uitheme/static/smoothness/jquery-ui-1.8.2.custom.css
2010-12-09 03:54:30 +0000
+++
lib/python2.6/site-packages/tw.uitheme-0.1a0-py2.6.egg/tw/uitheme/static/smoothness/jquery-ui-1.8.2.custom.css
2010-12-09 03:54:36 +0000
@@ -59,7 +59,7 @@
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header
.ui-state-default
{ border: 1px solid #d3d3d3; background: #e6e6e6
url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
font-weight: normal; color: #555555; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default
a:visited { color: #555555; text-decoration: none; }
-.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header
.ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus
{ border: 1px solid #999999; background: #dadada
url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
font-weight: normal; color: #212121; }
+.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header
.ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus
{ border: 1px solid #999999; background: #dadada
url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
font-weight: bold; color: #212121; }
.ui-state-hover a, .ui-state-hover a:hover { color: #212121;
text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header
.ui-state-active
{ border: 1px solid #aaaaaa; background: #ffffff
url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
font-weight: normal; color: #212121; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited
{ color: #212121; text-decoration: none; }
--
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/turbogears?hl=en.