Skip to content

Commit

Permalink
Changed from a PNG print icon to an SVG
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachSaucier committed May 19, 2016
1 parent 0a912e3 commit c546cff
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Just Read",
"version": "0.0.14",
"version": "0.0.15",
"default_locale": "en",
"manifest_version": 2,
"description": "An article formatter for readability. Essentially an attractive and customizable read mode.",
Expand Down Expand Up @@ -42,7 +42,7 @@
],

"web_accessible_resources": [
"print.png",
"print.svg",
"required-styles.css",
"default-styles.css",
"page.css",
Expand Down
Binary file removed print.png
Binary file not shown.
13 changes: 13 additions & 0 deletions print.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions required-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@

border: 0;
background: none;
background-image: url("print.png");
background-image: url("print.svg");
background-size: 36px;
background-repeat: no-repeat;
background-position: center;
font-size: 0; /* Hide the print text */
-webkit-transition: 0.2s;
transition: 0.2s;
opacity: 0.15;
opacity: 0.25;
}
.simple-print:hover {
opacity: 0.75;
opacity: 1;
}

.simple-ext-info {
Expand Down

0 comments on commit c546cff

Please sign in to comment.