1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/4cc057df762c/ Changeset: 4cc057df762c User: carlfeberhard Date: 2013-07-09 21:32:57 Summary: Fix unified-panel css in history/view.mako when used with/without 'use_panels' Affected #: 1 file diff -r 0fa860b8ee41897a63c7c66581a16c360f48b11a -r 4cc057df762c219406af27dd04ac725a07a5a6eb templates/webapps/galaxy/history/view.mako --- a/templates/webapps/galaxy/history/view.mako +++ b/templates/webapps/galaxy/history/view.mako @@ -24,12 +24,9 @@ <%def name="stylesheets()"> ${parent.stylesheets()} ${h.css( "history", "autocomplete_tagging" )} + <style type="text/css"> - .historyItemContainer { - padding-right: 3px; - border-right-style: solid; - border-right-color: #66AA66; - } + .page-body { padding: 10px; @@ -46,9 +43,18 @@ border: 2px solid #DDDDDD; border-top: 4px solid #DDDDDD; } - </style> - <style> + div.unified-panel-body { + position: relative; + top: 0px; + width: auto; + } + + .historyItemContainer { + padding-right: 3px; + border-right-style: solid; + border-right-color: #66AA66; + } .historyItemBody { display: none; } @@ -86,11 +92,13 @@ href_to_user_histories = h.url_for( controller='/history', action='list_published' )##should this instead be be None or empty string? %> + %if context.get( 'use_panels' ): <div class="unified-panel-header" unselectable="on"></div> + %endif <div class="unified-panel-body"> - <div style="overflow: auto; height: 100%;"> + <div class="wrapping" style="overflow: auto; height: 100%;"> ## Render view of history. <div id="top-links" class="historyLinks" style="padding: 0px 0px 5px 0px"> %if not history.purged: @@ -117,11 +125,9 @@ %endif %if not datasets: - <div class="infomessagesmall" id="emptyHistoryMessage"> %else: - ## Render requested datasets, ordered from newest to oldest %for data in datasets: %if data.visible: Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.