Skip to content

Commit

Permalink
Swapping order of jump controls. Addresses #780
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsielicki committed Nov 15, 2017
1 parent 63ddd13 commit 94f5809
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions web-server/plugins/slycat-parameter-image/css/ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -452,13 +452,13 @@ rights in this software.
padding: 0;
}
.frame-button.table-index {
padding: 1px 15px 0px 2px;
padding: 0px 0px 0px 2px;
}
.frame-button.table-button {
padding: 4px 2px 4px 0px;
padding: 4px 15px 4px 0px;
}
.frame-button.arrow-button {
padding: 3px 0px 4px 4px;
padding: 3px 0px 4px 2px;
font-size: 9px;
}
.frame-button.jump-button:hover * {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1154,13 +1154,6 @@ define("slycat-parameter-image-scatterplot", ["slycat-server-root", "d3", "URI",
.on("click", handlers["jump"]);
;

container.append("span")
.attr('class', 'table-index jump-button frame-button')
.attr('title', 'Index of current media. Click to jump to row ' + index + ' in table.')
.attr("aria-hidden", "true")
.text(index)
;

container.append("i")
.attr('class', 'table-button jump-button frame-button fa fa-table')
.attr('title', 'Jump to row ' + index + ' in table')
Expand All @@ -1172,6 +1165,13 @@ define("slycat-parameter-image-scatterplot", ["slycat-server-root", "d3", "URI",
.attr('title', 'Jump to row ' + index + ' in table')
.attr("aria-hidden", "true")
;

container.append("span")
.attr('class', 'table-index jump-button frame-button')
.attr('title', 'Index of current media. Click to jump to row ' + index + ' in table.')
.attr("aria-hidden", "true")
.text(index)
;
};

var build_frame_html = function(img) {
Expand Down

0 comments on commit 94f5809

Please sign in to comment.