marcustyphoon

Results 379 comments of marcustyphoon

This should (finally) be fixed on Firefox now.

cheeky... whatever half of a oneliner is: ```diff diff --git a/src/content_scripts/main.js b/src/content_scripts/main.js index 52b761e9..0495bcbe 100644 --- a/src/content_scripts/main.js +++ b/src/content_scripts/main.js @@ -136,6 +136,6 @@ }); if (redpop) { - isReactLoaded() ?...

As I'm sure you've guessed: ```js [ 'auxclick', 'mousedown', 'mouseenter', 'mouseleave', // 'mousemove', 'mouseout', 'mouseover', 'mouseup', 'click', 'pointercancel', 'pointerdown', 'pointerenter', 'pointerleave', // 'pointermove', 'pointerout', 'pointerover', // 'pointerrawupdate', 'pointerup', 'touchcancel', 'touchend',...

Well... this is uh... one way to do it. Background color is themed post coloration; inset box shadow is hover effect: ```diff diff --git a/src/features/themed_posts/index.js b/src/features/themed_posts/index.js index 7a42fac1..030f2336 100644 ---...

Also works. Background color is themed post coloration; pseudo element is hover effect: ```diff diff --git a/src/features/themed_posts/index.js b/src/features/themed_posts/index.js index 7a42fac1..d427b027 100644 --- a/src/features/themed_posts/index.js +++ b/src/features/themed_posts/index.js @@ -115,6 +115,23 @@ export...

Appears to function, but potentially has side effects and edge cases where it wouldn't, so hard pass, but for completeness: Pseudo element is themed post coloration (order reversed using z-index);...

Note: test any implementation of this when hovering over the footer of a reblog with contributed content (post must be clickable, so it cannot be viewed alone) and moving the...

My final proposal is, as mentioned, the only one so far that still uses `background-color` as the hover effect and thus would work with #2024 without one feature detecting the...

Note: one can—_kind of_—use multiple backgrounds for this, i.e. ```css whatever:hover { background: linear-gradient(var(--content-tint), var(--content-tint)), var(--content-panel); } ``` or even ```css whatever:hover { background: linear-gradient(var(--content-tint), var(--content-tint)), linear-gradient(var(--content-panel), var(--content-panel)); } ```...