Files
easystream-main/f_scripts/shared/videojs/videojs.thumbnails.css
SamiAhmed7777 0b7e2d0a5b feat: Add comprehensive documentation suite and reorganize project structure
- Created complete documentation in docs/ directory
- Added PROJECT_OVERVIEW.md with feature highlights and getting started guide
- Added ARCHITECTURE.md with system design and technical details
- Added SECURITY.md with comprehensive security implementation guide
- Added DEVELOPMENT.md with development workflows and best practices
- Added DEPLOYMENT.md with production deployment instructions
- Added API.md with complete REST API documentation
- Added CONTRIBUTING.md with contribution guidelines
- Added CHANGELOG.md with version history and migration notes
- Reorganized all documentation files into docs/ directory for better organization
- Updated README.md with proper documentation links and quick navigation
- Enhanced project structure with professional documentation standards
2025-10-21 00:39:45 -07:00

48 lines
1.2 KiB
CSS

/* a wrapper element that tracks the mouse vertically */
.vjs-thumbnail-holder {
position: absolute;
overflow: hidden;
left: -1000px;
bottom: 3.2em;
border: 1px solid #121212;
}
/* the thumbnail image itself */
.vjs-thumbnail {
position: absolute;
left: 0;
opacity: 0;
transition: opacity .2s ease;
-webkit-transition: opacity .2s ease;
-moz-transition: opacity .2s ease;
-mz-transition: opacity .2s ease;
width: auto !important;
}
.vjs-thumbnail-holder .vjs-thumb-duration {
position: absolute;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, .6);
color: #fff;
width: 100%;
text-align: center;
font-size: 12px;
line-height: 1.5em
}
/* fade in the thumbnail when hovering over the progress bar */
/* .fake-active is needed for Android only. It's removed on touchend/touchecancel */
.vjs-progress-control:hover .vjs-thumbnail,
.vjs-progress-control.fake-active .vjs-thumbnail,
.vjs-progress-control:active .vjs-thumbnail {
opacity: 1;
}
/* ... but hide the thumbnail when hovering directly over it */
.vjs-progress-control:hover .vjs-thumbnail:hover,
.vjs-progress-control:active .vjs-thumbnail:active {
opacity: 0;
}