commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/76f9ddde5f5e/ Changeset: 76f9ddde5f5e User: jgoecks Date: 2013-06-18 17:41:46 Summary: Turns out min-height is needed to propagate tool background correctly. Affected #: 2 files diff -r e55155b6010e398102a738fb575fa40115c2d864 -r 76f9ddde5f5ee7c0069b487b101734fe883f165e static/style/base.less --- a/static/style/base.less +++ b/static/style/base.less @@ -1718,6 +1718,7 @@ { color: @base_text; background: @menu_bg_over; + min-height: 100%; padding: 0px 5px; } diff -r e55155b6010e398102a738fb575fa40115c2d864 -r 76f9ddde5f5ee7c0069b487b101734fe883f165e static/style/blue/base.css --- a/static/style/blue/base.css +++ b/static/style/blue/base.css @@ -1142,7 +1142,7 @@ div.historyItemBody div{padding-top:2px;} pre.peek{background:white;color:black;width:100%;font-size:10px;overflow:auto;}pre.peek th{color:white;background:#023858;} pre.peek table,pre.peek th,pre.peek tr,pre.peek td{font-family:Menlo,Monaco,"Courier New",monospace;font-size:10px;} -.toolMenuContainer{color:#303030;background:#dfe5f9;padding:0px 5px;} +.toolMenuContainer{color:#303030;background:#dfe5f9;min-height:100%;padding:0px 5px;} div.toolSectionPad{margin:0;padding:0;height:5px;font-size:0px;} div.toolSectionWrapper{margin-bottom:5px;} div.toolSectionDetailsInner{margin-left:5px;margin-right:5px;} https://bitbucket.org/galaxy/galaxy-central/commits/f3fed61f4575/ Changeset: f3fed61f4575 User: jgoecks Date: 2013-06-18 17:46:16 Summary: Fix import for edit_attributes page. Affected #: 1 file diff -r 76f9ddde5f5ee7c0069b487b101734fe883f165e -r f3fed61f4575620827fbf992781ef230bb9042ba templates/webapps/galaxy/dataset/edit_attributes.mako --- a/templates/webapps/galaxy/dataset/edit_attributes.mako +++ b/templates/webapps/galaxy/dataset/edit_attributes.mako @@ -1,6 +1,6 @@ <%inherit file="/base.mako"/><%namespace file="/message.mako" import="render_msg" /> -<%namespace file="/message.mako" name="message_ns" import="handle_refresh_frames" /> +<%namespace file="/refresh_frames.mako" import="handle_refresh_frames" /><%def name="title()">${_('Edit Dataset Attributes')}</%def> @@ -10,7 +10,7 @@ <%def name="javascripts()"> ${parent.javascripts()} - ${message_ns.handle_refresh_frames()} + ${handle_refresh_frames()} ${h.js( "libs/jquery/jquery.autocomplete", "galaxy.autocom_tagging" )} </%def> 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.
participants (1)
-
commits-noreply@bitbucket.org