diff --git a/ui/raw/index.js b/ui/raw/index.js index d547817..26cf36d 100644 --- a/ui/raw/index.js +++ b/ui/raw/index.js @@ -26,7 +26,7 @@ function dnswatch_search() { request.onload = function() { if (request.status >= 200 && request.status < 400) { var response = JSON.parse(this.response); - console.log(response); + //console.log(response); // TODO: CLEAN UP THIS MESS OF TABLE GENERATION CODE @@ -41,7 +41,7 @@ function dnswatch_search() { table += '\n'; // provider table += '\n'; - table += `\n`; + table += `\n`; table += '\n' // name and address table += `${ response["data"]["reference"]["name"] }${ response["data"]["reference"]["address"] }\n`; @@ -57,7 +57,7 @@ function dnswatch_search() { table += '\n'; // spacer //// search rows response['data']['search'].forEach(i => { - console.log(i); + //console.log(i); table += '\n'; // status table += `\n`; @@ -65,7 +65,7 @@ function dnswatch_search() { table += '\n'; // provider icon table += '\n'; - table += `\n`; + table += `\n`; table += '\n'; // name and address table += `${ i["name"] }${ i["address"] }\n`; diff --git a/ui/raw/index.sass b/ui/raw/index.sass index 7d2fb21..df10c4b 100644 --- a/ui/raw/index.sass +++ b/ui/raw/index.sass @@ -138,7 +138,7 @@ input, button color: $c-blue td.icon border-left: solid transparent 2rem - width: 5rem + width: 3rem td.name small color: darken($c-fg, 30%) margin-left: 1rem @@ -169,6 +169,9 @@ input, button vertical-align: -.2rem width: 1.2rem +.uncolored-svg + filter: invert(.8) + @keyframes spinner 0% transform: rotate(0deg)