Skip to content

Commit

Permalink
Merge branch 'upgrade'
Browse files Browse the repository at this point in the history
  • Loading branch information
Juicetan committed Jan 25, 2025
2 parents 9db5f06 + 5f91d26 commit 21e6ff3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
17 changes: 12 additions & 5 deletions app/base/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,21 @@
.xrayQuickViewList{
&.show{
position: fixed;
top: 51px;
bottom: 68%;
top: 0;
height: 60px;
overflow-y: auto;
opacity: 0.2;
transition: opacity 0.1s linear, bottom 0.5s ease;
&:hover{
opacity: 0;
transition: opacity 0.1s linear, top 0.2s ease, bottom 0.2s ease;
}
}
&:hover{
.xrayQuickViewList{
&.show{
top: 35px;
height: auto;
bottom: 108px;
opacity: 1;
z-index: 1;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/content.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Video Controls",
"version": "1.2.0",
"version": "1.3.0",
"description": "Re-styling of Prime Video playback controls to be less intrusive.",
"icons": {
"128": "images/logoIcon.png"
Expand All @@ -13,7 +13,9 @@
"https://amazon.com/*",
"https://www.amazon.com/*",
"https://www.amazon.jp/*",
"https://www.amazon.co.jp/*"
"https://www.amazon.co.jp/*",
"https://www.amazon.co.uk/*",
"https://www.amazon.de/*"
],
"js": [
"dist/content.js"
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"name": "videouicontrols",
"version": "1.2.0",
"version": "1.3.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "gulp serve",
"build": "gulp build"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 21e6ff3

Please sign in to comment.