Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Candle - the privacy friendly smart home authored Feb 16, 2022
1 parent c701958 commit 5d2e574
Show file tree
Hide file tree
Showing 3 changed files with 114 additions and 80 deletions.
14 changes: 14 additions & 0 deletions css/extension.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,14 @@
color:white;
}

#extension-privacy-manager-tab-button-internal-logs{
display:none;
}

.developer #extension-privacy-manager-tab-button-internal-logs{
display:initial;
}



/* VLAKKEN */
Expand Down Expand Up @@ -315,6 +323,12 @@
max-height: 100%;
}

.zoom1 #extension-privacy-manager-content-container,
.zoom2 #extension-privacy-manager-content-container,
.zoom3 #extension-privacy-manager-content-container{
margin-bottom:40rem;
}

#extension-privacy-manager-content label{
min-width: 100px;
display: inline-block;
Expand Down
7 changes: 4 additions & 3 deletions js/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,9 @@

if(typeof body.debug != 'undefined'){
if(body.debug){
document.getElementById('extension-privacy-manager-debug-warning').style.display = 'block';
if(document.getElementById('extension-privacy-manager-debug-warning') != null){
document.getElementById('extension-privacy-manager-debug-warning').style.display = 'block';
}
}
}

Expand All @@ -701,8 +703,7 @@

}).catch((e) => {
//pre.innerText = e.toString();
console.log("Privacy manager: error in show function");
console.log(e.toString());
console.log("Privacy manager: error in show function: ", e);
});


Expand Down
Loading

0 comments on commit 5d2e574

Please sign in to comment.