Skip to content

Commit

Permalink
Merge pull request #1027 from guerler/fix_grids_000
Browse files Browse the repository at this point in the history
Fix style of menu button labels in grids
  • Loading branch information
dannon committed Nov 4, 2015
2 parents 53ee0f0 + 5c56ec8 commit 4d05a5a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/grid/grid-template.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ return {
} else {
label_class = 'use-outbound';
}
tmpl += '<a class="label ' + label_class + '" href="' + link + '" onclick="return false;">' + value + '</a>';
tmpl += '<a class="menubutton-label ' + label_class + '" href="' + link + '" onclick="return false;">' + value + '</a>';
if (options.operations.length != 0) {
tmpl += '</div>';
}
Expand Down
4 changes: 2 additions & 2 deletions client/galaxy/style/less/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ a.action-button {
text-decoration: none;
}

.label, > label {
.menubutton-label, > label {
position: relative;
display: inline-block;
border-right: none;
Expand All @@ -1243,7 +1243,7 @@ a.action-button {
text-overflow: ellipsis;
}

&.popup .label {
&.popup .menubutton-label {
border-right: solid @btn-default-border 1px;
padding-right: 6px;
}
Expand Down
2 changes: 1 addition & 1 deletion static/maps/mvc/grid/grid-template.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4d05a5a

Please sign in to comment.