Juraj Variny
unread,Jul 18, 2012, 6:32:46 PM7/18/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to turbogea...@googlegroups.com
Hi,
when using admin system on tables with many columns, rightmost columns are cropped by browser due to rigid tundra layout. This fixes it, by enabling table scrolling:
--- a/devtools/templates/turbogears/+package+/public/css/admin.css
+++ b/devtools/templates/turbogears/+package+/public/css/admin.css
@@ -19,6 +19,9 @@ a.edit_link{
}
/* admin list view */
+.crud_table {
+ overflow : auto;
+}
.crud_table .grid {
border-collapse: collapse;
border: 1px solid #ccc;