Skip to content

Commit

Permalink
Fix Add New Version button (bug 633864)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkoberger committed Jul 12, 2011
1 parent e100c4a commit f8994be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions media/css/zamboni/zamboni.css
Expand Up @@ -283,7 +283,7 @@ input[type=button]:focus {
box-shadow: inset 0 0 2px rgba(255,255,255,1);
}

a.button:active {
a.button:active, button.button:active {
border-color: #03c;
background-image: url("../../img/zamboni/button-blue-on.png");
background: -moz-linear-gradient(top, #39f 40%, #6fb7ff 60%);
Expand Down Expand Up @@ -350,7 +350,7 @@ button.link {

.cta a.button.disabled,
a.button[disabled],
button:disabled,
button.button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled {
background: #a6a6a6;
Expand Down
4 changes: 4 additions & 0 deletions media/js/zamboni/devhub.js
Expand Up @@ -579,6 +579,10 @@ function initVersions() {
return true;
}});

$('#upload-file-finish').click(function() {
$(this).attr('disabled', true);
});

}

function initSubmit() {
Expand Down

0 comments on commit f8994be

Please sign in to comment.