Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
teresa-ou committed Apr 2, 2020
1 parent 56deb41 commit ae6c712
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 1 deletion.
Binary file modified dist/icons/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inboxy: Inbox Bundles for Gmail",
"version": "1.2.1",
"version": "1.2.2",
"description": "Adds Google Inbox bundles to Gmail",
"homepage_url": "https://teresa-ou.github.io/inboxy",
"content_scripts": [{
Expand Down
64 changes: 64 additions & 0 deletions dist/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,16 @@
opacity: 0.7;
}

@-moz-document url-prefix() {
.inboxy .bundle-row td.apU {
background-image: url('moz-extension://__MSG_@@extension_id__/bundle.png');
}

.inboxy.messages-dark-theme .bundle-row td.apU {
background-image: url('moz-extension://__MSG_@@extension_id__/light-bundle.png');
}
}

@media (min-resolution: 2dppx) {
.inboxy .bundle-row td.apU {
background-image: url('chrome-extension://__MSG_@@extension_id__/[email protected]');
Expand All @@ -118,6 +128,16 @@
.inboxy.messages-dark-theme .bundle-row td.apU {
background-image: url('chrome-extension://__MSG_@@extension_id__/[email protected]');
}

@-moz-document url-prefix() {
.inboxy .bundle-row td.apU {
background-image: url('moz-extension://__MSG_@@extension_id__/[email protected]');
}

.inboxy.messages-dark-theme .bundle-row td.apU {
background-image: url('moz-extension://__MSG_@@extension_id__/[email protected]');
}
}
}

/**
Expand Down Expand Up @@ -155,6 +175,16 @@
opacity: 0.7;
}

@-moz-document url-prefix() {
.inboxy .bundle-row .archive-bundle {
background-image: url('moz-extension://__MSG_@@extension_id__/check-all.png');
}

.inboxy.dark-theme .bundle-row .archive-bundle {
background-image: url('moz-extension://__MSG_@@extension_id__/light-check-all.png');
}
}

@media (min-resolution: 2dppx) {
.inboxy .bundle-row .archive-bundle {
background-image: url('chrome-extension://__MSG_@@extension_id__/[email protected]');
Expand All @@ -163,6 +193,16 @@
.inboxy.dark-theme .bundle-row .archive-bundle {
background-image: url('chrome-extension://__MSG_@@extension_id__/[email protected]');
}

@-moz-document url-prefix() {
.inboxy .bundle-row .archive-bundle {
background-image: url('moz-extension://__MSG_@@extension_id__/[email protected]');
}

.inboxy.dark-theme .bundle-row .archive-bundle {
background-image: url('moz-extension://__MSG_@@extension_id__/[email protected]');
}
}
}

.inboxy .bundle-row.visible .archive-bundle {
Expand Down Expand Up @@ -247,6 +287,18 @@
background-image: url('chrome-extension://__MSG_@@extension_id__/light-check.png');
}

@-moz-document url-prefix() {
.inboxy .brq,
.inboxy .ar8 {
background-image: url('moz-extension://__MSG_@@extension_id__/check.png');
}

.inboxy.messages-dark-theme .brq,
.inboxy.dark-theme .ar8 {
background-image: url('moz-extension://__MSG_@@extension_id__/light-check.png');
}
}

@media (min-resolution: 2dppx) {
.inboxy .brq,
.inboxy .ar8 {
Expand All @@ -257,6 +309,18 @@
.inboxy.dark-theme .ar8 {
background-image: url('chrome-extension://__MSG_@@extension_id__/[email protected]');
}

@-moz-document url-prefix() {
.inboxy .brq,
.inboxy .ar8 {
background-image: url('moz-extension://__MSG_@@extension_id__/[email protected]');
}

.inboxy.messages-dark-theme .brq,
.inboxy.dark-theme .ar8 {
background-image: url('moz-extension://__MSG_@@extension_id__/[email protected]');
}
}
}

/**
Expand Down

0 comments on commit ae6c712

Please sign in to comment.