Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The cursor changes to pointer when hovered over select element #923

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/image-sequencer-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ function DefaultHtmlStepUi(_sequencer, options) {
<form class="input-form">\
<div class="col-md-4 details">\
<h3>\
<span class = "toggle">' +step.name + ' <i class="fa fa-caret-up toggleIcon" aria-hidden="true"></i></span>' +
<span class = "toggle">' +step.name + ' <i class="fa fa-caret-up toggleIcon csrtoptr " aria-hidden="true"></i></span>' +
'<span class="load-spin" style="display:none;"><i class="fa fa-circle-o-notch fa-spin"></i></span>' +
'</h3><div class="cal collapse in"><p><i>"'+
(step.description || "") +
Expand Down
4 changes: 4 additions & 0 deletions examples/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ h1 {
padding: 0px 0px;
}

.csrtoptr{
cursor: pointer;
}

.dropzone {
padding: 30px;
margin: 0 20% 30px;
Expand Down
2 changes: 1 addition & 1 deletion examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ <h4 class="modal-title">Your gif is ready</h4>
<div style="text-align:center;">
<h2 style="margin-top:20px">Save</h2>
<p>Or click ARROW to save the entire sequence as a workflow for future use.</p>
<select class="form-control input-md" id="selectSaveOption" style="margin-top:20px">
<select class="form-control input-md csrtoptr" id="selectSaveOption" style="margin-top:20px">
<option>Save as PNG</option>
<option>Save as GIF (all steps)</option>
<option>Save sequence</option>
Expand Down
2 changes: 1 addition & 1 deletion examples/lib/defaultHtmlStepUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function DefaultHtmlStepUi(_sequencer, options) {
<form class="input-form">\
<div class="col-md-4 details">\
<h3>\
<span class = "toggle">' +step.name + ' <i class="fa fa-caret-up toggleIcon" aria-hidden="true"></i></span>' +
<span class = "toggle">' +step.name + ' <i class="fa fa-caret-up toggleIcon csrtoptr " aria-hidden="true"></i></span>' +
'<span class="load-spin" style="display:none;"><i class="fa fa-circle-o-notch fa-spin"></i></span>' +
'</h3><div class="cal collapse in"><p><i>"'+
(step.description || "") +
Expand Down
Loading