1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-08 04:49:59 +02:00

update @zen-browser/surfer dependency to version 1.10.4 and adjust media controls styling

This commit is contained in:
mr. M 2025-03-14 13:19:52 +01:00
parent cb42d46131
commit 7640e05619
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
3 changed files with 11 additions and 12 deletions

9
package-lock.json generated
View file

@ -9,7 +9,7 @@
"version": "1.0.0", "version": "1.0.0",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@zen-browser/surfer": "^1.10.2" "@zen-browser/surfer": "^1.10.4"
}, },
"devDependencies": { "devDependencies": {
"husky": "^9.1.7", "husky": "^9.1.7",
@ -288,10 +288,9 @@
"license": "MIT" "license": "MIT"
}, },
"node_modules/@zen-browser/surfer": { "node_modules/@zen-browser/surfer": {
"version": "1.10.3", "version": "1.10.4",
"resolved": "https://registry.npmjs.org/@zen-browser/surfer/-/surfer-1.10.3.tgz", "resolved": "https://registry.npmjs.org/@zen-browser/surfer/-/surfer-1.10.4.tgz",
"integrity": "sha512-hr3JerUktpZsINrUbu66ARgnh/DxNZK0k9Ukl+z8Pac0JUbcQwho31wlomAshcPQ0Z3Pg7j+KvUB+GQA8VL0BQ==", "integrity": "sha512-xDXJYgbJTfNpM+LsJDJ81VCotwIBY3CItrD7Y1hPqf84Ino/sTqy/QuHQCVqZU3StewAvVuV68MWnaiY9ytlMA==",
"license": "MPL-2.0",
"dependencies": { "dependencies": {
"@resvg/resvg-js": "^1.4.0", "@resvg/resvg-js": "^1.4.0",
"async-icns": "^1.0.2", "async-icns": "^1.0.2",

View file

@ -41,7 +41,7 @@
}, },
"homepage": "https://github.com/zen-browser/core#readme", "homepage": "https://github.com/zen-browser/core#readme",
"dependencies": { "dependencies": {
"@zen-browser/surfer": "^1.10.2" "@zen-browser/surfer": "^1.10.4"
}, },
"devDependencies": { "devDependencies": {
"husky": "^9.1.7", "husky": "^9.1.7",

View file

@ -73,16 +73,18 @@
} }
&:not(:hover) { &:not(:hover) {
#zen-media-focus-button::after { &.playing:not([muted]) #zen-media-focus-button::after {
content: ''; content: '';
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 100%; height: 100%;
background-repeat: no-repeat; background-repeat: no-repeat;
opacity: 1; opacity: 1;
background: url('note-indicator.svg') no-repeat; background: url('chrome://browser/content/zen-images/note-indicator.svg') no-repeat;
top: -20px; top: -50%;
left: 8px; left: 50%;
transform: translateX(-50%);
z-index: -1;
} }
} }
@ -219,7 +221,6 @@
#zen-media-main-vbox { #zen-media-main-vbox {
height: 100%; height: 100%;
justify-content: space-between; justify-content: space-between;
overflow: hidden;
transition: gap 0.1s ease-out; transition: gap 0.1s ease-out;
transition-delay: 0.1s; transition-delay: 0.1s;
gap: 0px; gap: 0px;
@ -235,7 +236,6 @@
align-items: flex-end; align-items: flex-end;
justify-content: space-between; justify-content: space-between;
max-width: 100%; max-width: 100%;
overflow: hidden;
--toolbarbutton-outer-padding: 0; --toolbarbutton-outer-padding: 0;
} }