[hg] galaxy 3477: Provide minimum width for columns in published...
details: http://www.bx.psu.edu/hg/galaxy/rev/d9afcaa386f6 changeset: 3477:d9afcaa386f6 user: jeremy goecks <jeremy.goecks@emory.edu> date: Wed Mar 03 17:05:56 2010 -0500 description: Provide minimum width for columns in published items grids so that tags/annotations do not squish other columns too much. diffstat: templates/history/list_published.mako | 9 +++++++++ templates/page/list_published.mako | 13 +++++++++++++ templates/workflow/list_published.mako | 9 +++++++++ 3 files changed, 31 insertions(+), 0 deletions(-) diffs (61 lines): diff -r adda1b9e31fa -r d9afcaa386f6 templates/history/list_published.mako --- a/templates/history/list_published.mako Wed Mar 03 17:00:50 2010 -0500 +++ b/templates/history/list_published.mako Wed Mar 03 17:05:56 2010 -0500 @@ -13,6 +13,15 @@ Galaxy :: Published Histories </%def> +<%def name="stylesheets()"> + ${parent.stylesheets()} + <style> + .grid td { + min-width: 100px; + } + </style> +</%def> + <%def name="center_panel()"> ## <iframe name="galaxy_main" id="galaxy_main" frameborder="0" style="position: absolute; width: 100%; height: 100%;" src="${h.url_for( controller="page", action="list" )}"> </iframe> diff -r adda1b9e31fa -r d9afcaa386f6 templates/page/list_published.mako --- a/templates/page/list_published.mako Wed Mar 03 17:00:50 2010 -0500 +++ b/templates/page/list_published.mako Wed Mar 03 17:05:56 2010 -0500 @@ -9,6 +9,19 @@ %> </%def> +<%def name="title()"> + Galaxy :: Published Pages +</%def> + +<%def name="stylesheets()"> + ${parent.stylesheets()} + <style> + .grid td { + min-width: 100px; + } + </style> +</%def> + <%def name="center_panel()"> ## <iframe name="galaxy_main" id="galaxy_main" frameborder="0" style="position: absolute; width: 100%; height: 100%;" src="${h.url_for( controller="page", action="list" )}"> </iframe> diff -r adda1b9e31fa -r d9afcaa386f6 templates/workflow/list_published.mako --- a/templates/workflow/list_published.mako Wed Mar 03 17:00:50 2010 -0500 +++ b/templates/workflow/list_published.mako Wed Mar 03 17:05:56 2010 -0500 @@ -13,6 +13,15 @@ Galaxy :: Published Workflows </%def> +<%def name="stylesheets()"> + ${parent.stylesheets()} + <style> + .grid td { + min-width: 100px; + } + </style> +</%def> + <%def name="center_panel()"> ## <iframe name="galaxy_main" id="galaxy_main" frameborder="0" style="position: absolute; width: 100%; height: 100%;" src="${h.url_for( controller="page", action="list" )}"> </iframe>
participants (1)
-
Greg Von Kuster