diff --git a/ui/v2.5/src/components/ScenePlayer/ScenePlayerScrubber.tsx b/ui/v2.5/src/components/ScenePlayer/ScenePlayerScrubber.tsx index 9c7b92f97..565005cf8 100644 --- a/ui/v2.5/src/components/ScenePlayer/ScenePlayerScrubber.tsx +++ b/ui/v2.5/src/components/ScenePlayer/ScenePlayerScrubber.tsx @@ -350,6 +350,14 @@ export const ScenePlayerScrubber: React.FC = ({
+
diff --git a/ui/v2.5/src/components/ScenePlayer/styles.scss b/ui/v2.5/src/components/ScenePlayer/styles.scss index 76a8ba73e..8e717892f 100644 --- a/ui/v2.5/src/components/ScenePlayer/styles.scss +++ b/ui/v2.5/src/components/ScenePlayer/styles.scss @@ -382,7 +382,7 @@ $sceneTabWidth: 450px; } #scrubber-position-indicator { - background-color: #ccc; + background-color: rgba(255, 255, 255, 0.7); height: 20px; left: -100%; position: absolute; @@ -426,6 +426,14 @@ $sceneTabWidth: 450px; } } +.scrubber-heatmap { + background-size: 100% 100%; + height: 20px; + left: 0; + position: absolute; + right: 0; +} + .scrubber-tag { background-color: #000; cursor: pointer; diff --git a/ui/v2.5/src/docs/en/Changelog/v0200.md b/ui/v2.5/src/docs/en/Changelog/v0200.md index 874b842d1..329714a9c 100644 --- a/ui/v2.5/src/docs/en/Changelog/v0200.md +++ b/ui/v2.5/src/docs/en/Changelog/v0200.md @@ -1,4 +1,5 @@ ### ✨ New Features +* Show funscript heatmaps in scene player scrubber. ([#3374](https://github.com/stashapp/stash/pull/3374)) * Support customising the filename regex used for determining the gallery cover image. ([#3391](https://github.com/stashapp/stash/pull/3391)) * Added tenth-place rating precision option. ([#3343](https://github.com/stashapp/stash/pull/3343)) * Added toggleable favorite button to Performer cards. ([#3369](https://github.com/stashapp/stash/pull/3369))