Skip to content

Commit

Permalink
Fix the styling of the buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
GuGuss committed Sep 8, 2014
1 parent 301b857 commit f233fed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arte-downloader.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if ('function' !== GM_xmlhttpRequest) {
// High quality link (SQ: 2200).
var downloadHQ = document.createElement('a');
with(downloadHQ) {
setAttribute('class', 'btn btn-block');
setAttribute('class', 'btn btn-block btn-default');
setAttribute('style', 'margin-left:auto; margin-right:auto; width:200px; color:black; margin-top:5px;');
}
downloadHQ.innerHTML= "Download <strong>High</strong> Quality <span class='icomoon-angle-right pull-right'></span>";
Expand All @@ -32,7 +32,7 @@ downloadHQ.onclick = function() { triggerOnClick('SQ') }; // For Chrome
// Standard quality link (EQ: 1500).
var downloadEQ = document.createElement('a');
with(downloadEQ) {
setAttribute('class', 'btn btn-block');
setAttribute('class', 'btn btn-block btn-default');
setAttribute('style', 'margin-left:auto; margin-right:auto; width:200px; color:black;');
}
downloadEQ.innerHTML= "Download <strong>Standard</strong> Quality <span class='icomoon-angle-right pull-right'></span>";
Expand All @@ -41,7 +41,7 @@ downloadEQ.onclick = function() { triggerOnClick('EQ') }; // For Chrome
// Low quality link (HQ: 800).
var downloadSQ = document.createElement('a');
with(downloadSQ) {
setAttribute('class', 'btn btn-block');
setAttribute('class', 'btn btn-block btn-default');
setAttribute('style', 'margin-left:auto; margin-right:auto; width:200px; color:black;');
}
downloadSQ.innerHTML= "Download <strong>Low</strong> Quality <span class='icomoon-angle-right pull-right'></span>";
Expand Down

0 comments on commit f233fed

Please sign in to comment.