YouTube - Show Buttons On Hover When Paused by pabli
Imported from https://raw.githubusercontent.com/pabli24/YTPlayerHideButtonsWhenPaused/main/YTPlayerHideButtonsWhenPaused.user.css

Details
Authorpabli
LicenseMIT
Created atSeptember 10, 2021 22:32
Updated atMay 27, 2022 18:00
Applies toyoutube
Statistics
Learn how we calculate statistics in the FAQ.
Total views302
Total installs1260
Weekly installs85
Description
Hide buttons when the video is paused and show them again when hovered in YouTube Player
Also available on GreasyFork.org
☕ Support me on ko-fi
Check my other YouTube styles:
- Square Avatars
- Two Rows in Subscriptions Feed
- YouTube Player Buttons Remover
Notes
Userstyle doesn't have notes.History
Daily snapshots of style statistics.
Source code
/* ==UserStyle==
@name YouTube - Show Buttons On Hover When Paused
@namespace https://github.com/pabli24
@version 1.0.2
@description Hide buttons when the video is paused and show them again when hovered
@author Pabli
@license MIT
@homepageURL https://github.com/pabli24/YTPlayerHideButtonsWhenPaused
@supportURL https://github.com/pabli24/YTPlayerHideButtonsWhenPaused/issues
==/UserStyle== */
@-moz-document domain("youtube.com") {
.paused-mode:not(.unstarted-mode) > div:not(.html5-video-container) {
opacity: 0
}
.paused-mode:hover > div:not(.html5-video-container) {
opacity: 1
}
}