From f233fed15fedb2cca7851d1d5c6fc803e5792d61 Mon Sep 17 00:00:00 2001 From: GuGuss Date: Mon, 8 Sep 2014 13:30:51 +0200 Subject: [PATCH] Fix the styling of the buttons. --- arte-downloader.user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arte-downloader.user.js b/arte-downloader.user.js index dc756d3..c19e071 100644 --- a/arte-downloader.user.js +++ b/arte-downloader.user.js @@ -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 High Quality "; @@ -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 Standard Quality "; @@ -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 Low Quality ";