Skip to content

Commit

Permalink
Changed debug styling again
Browse files Browse the repository at this point in the history
  • Loading branch information
pRizz committed Feb 9, 2014
1 parent 5b203e6 commit e1134ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Binary file modified src.zip
Binary file not shown.
5 changes: 3 additions & 2 deletions src/js/svgNavigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -718,17 +718,18 @@ function printDebugInfo(){
var textLines = 9; // number of lines to display in debug info
for(var count = 0; count < textLines; count++){
debugChildren[count] = htmlDoc.createElement("div");
debugChildren[count].style.padding = "1px 3px";
debugTextElement.appendChild(debugChildren[count]);
}
debugTextElement.style.position = "fixed";
debugTextElement.style.top = "5px";
debugTextElement.style.left = "5px";
debugTextElement.style["pointer-events"] = "none";
debugTextElement.style.padding = "5px";
debugTextElement.style.background = "rgba(255, 255, 255, 0.8)";
debugTextElement.style.background = "rgba(0, 0, 0, 0.8)";
debugTextElement.style.border = "1px solid #BBB";
debugTextElement.style["border-radius"] = "3px";
debugTextElement.style.color = "#555";
debugTextElement.style.color = "white";
debugTextElement.style["font-family"] = "'Lucida Grande', sans-serif";

document.body.appendChild(debugTextElement); // add to DOM
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SVG Navigator",
"description": "This extension extends the built in SVG viewer in Chrome by adding zooming and panning capabilities.",
"version": "2.2.2",
"version": "2.2.3",
"icons": {
"16": "icon_sans_16.png",
"48": "icon_sans_48.png",
Expand Down

0 comments on commit e1134ad

Please sign in to comment.