min icon indicating copy to clipboard operation
min copied to clipboard

Odysee.com navbar doesn't work

Open matheusAMDS opened this issue 4 years ago • 4 comments

  • Min Version: v1.22.1
  • Operating system: Fedora 35 + i3wm

Expected Behavior

When i click a button on the Navbar, it should perform some action

Actual Behavior

When I click a button on the Navbar, it does nothing. Even right-click the background does not work

To Reproduce

Just open odysee.com

matheusAMDS avatar Dec 09 '21 16:12 matheusAMDS

I don't remember when or how, but I have a temporary fix for it:

  1. Create a userscript (you can call it whatever, I call mine app-region-fix.js)
  2. Paste the following inside the file (this also fixes issue with other websites that have the same problem)
// ==UserScript==
// @name App Region Fix
// @match *
// @run-at document-start
// ==/UserScript==

var style = document.createElement('style')

style.textContent = `
* {
  -webkit-app-region: no-drag !important;
}
`

document.head.appendChild(style)
  1. Restart Min (make sure you have turned on the userscripts setting)

Syndamia avatar Dec 09 '21 19:12 Syndamia

It worked, thanks!

matheusAMDS avatar Dec 10 '21 20:12 matheusAMDS

I'm going to leave this open until the actual bug gets fixed (we shouldn't be letting pages create draggable regions).

PalmerAL avatar Dec 11 '21 21:12 PalmerAL

This issue persists on version 1.24.0 Pop! OS 20.04

sol8712 avatar Apr 09 '22 19:04 sol8712